/* Fonts */
:root {
  --default-font: "Inter", serif, "Open Sans",  system-ui, -apple-system, "Segoe UI" ;
  /*--heading-font: "Montserrat", serif;*/
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", serif;
}

/* Global Colors */
:root { 
  --primary-color: #ffffff;
  --secondary-color: #171717; 
  --gray-color: #fafafa; 
  --green-color: #4d7c0f; 
  --hot-color: #ef4444; 
  --accent-color:#f5c28b;
  --star-color: #f59e0b;
}
/* Products Colors */
:root{
  --gold-tone:#dfcaa7;
  --black-tone:#3a3a3a;
  --chestnut-tone:#66514f;
  --navy-tone:#26333f;
  --timber-tone:#ac6e48;
  --gray-tone:#d0d0d2;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*---------------------------------------------
# General Styling
---------------------------------------------*/
body {
  color: var(--secondary-color);
  background-color: var(--primary-color);
  font-family: var(--default-font);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary-color);
  margin: 0;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
img{
  width: 100%;
  display: block;
}

.found img{
  width: 25%;
  display: inline;
  margin: -20px;
}
.thanks img{
  width: 18%;
  display: inline;
  margin: -20px;
}
/*------ theme button --------*/
 .button-outline{  
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center; 
  color: var(--secondary-color);
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.button-outline::after {
  content: "";
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  left: 0;
  right: 0;
  top: -100%;
  bottom: 100%;
  transition: all 0.35s;
}
.button-outline:hover {
  color: var(--primary-color);
}
.button-outline:hover::after {
  /* left: 0;
  right: 0;
  top: 0;
  bottom: 0; */
  transition: all 0.35s;
}

.button-fill.button-fill-dark{
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}
.button-fill.button-fill-dark::after{
    background: var(--primary-color);
}
.button-fill.button-fill-dark:hover{
  color: var(--secondary-color);
}
.button-fill{
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 15px 25px;
  border-radius: 50px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.button-fill::after, .button-outline::after {
  content: "";
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  /* left: 0;
  right: 0;
  top: -100%;
  bottom: 100%; */
  transition: all 0.35s;
  transform: translateY(var(--motion-translateY));
  --motion-translateY: -76%;
  transform-origin: bottom;
  display: block;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  inset-block-start: -50%;
  inset-inline-start: -25%;
  position: absolute;
  transform: translate3d(0, -76%, 0);
}
.button-fill:hover,  .button-outline:hover {
  color: var(--primary-color);
}
.button-fill:hover::after, .button-outline:hover::after {
  /* left: 0;
  right: 0;
  top: 0;
  bottom: 0; */
  transition: all 0.35s;
  transform: translateY(0%);
  transform-origin: bottom;
}
.button-fill i, .button-outline i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.button-fill:hover i, .button-outline:hover i {
  transform: translate(5px, 0);
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1170px;
  }
}
/*--------- image effect ----------*/
.image-effect{
  width: 100%;
  overflow: hidden;
}
.image-effect img {
  transition: 0.3s;
  border-radius: 15px;
  display: block;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}

.explore {
  width: 100%;
  height: 250px;
  padding: 10px;
  /*background: #fff;*/
}

.explore img{
  width: auto !important;
  height: auto;
  margin: 0 auto;
}

.image-effect img:hover {
  transform: scale(1.05);
}

/*------ floating social ---------*/
.social-widget-floating{
  background: #ffffffeb;
  width: 50px;
  border-radius: 25px;
  text-align: center;
  position: fixed;
  left: 20px;
  top: 30%;
  z-index: 99;
  border: 1px solid #dfdfdf;
}
.social-share-icons{
  padding: 30px 0;
}
.social-share-icons li{
  display: block;
  margin-bottom: 8px;
}
.social-share-icons li:last-child{
  margin-bottom: 0;
}
.social-share-icons li a{
  padding: 5px;
  font-size: 20px;
}
.social-share-icons li a:hover i{
  -webkit-animation:spin .4s linear;
  -moz-animation:spin .4s linear;
  animation:spin .4s linear;
}
@-moz-keyframes spin { 
    100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
.floating-offer{
  background: #f5f5f5;
  padding: 10px 5px;
  font-size: 12px;
  margin: 5px;
  border-radius: 20px;
}
.floating-offer a{
  transform: rotate(-180deg);
  writing-mode: tb-rl;
  text-transform: uppercase;
}

/*--------- product color tone -------*/
.golden{
  background-color: var(--gold-tone);
}
.black{
 background-color: var(--black-tone);
}
.chestnut{
 background-color: var(--chestnut-tone);
}
.navy{
 background-color: var(--navy-tone);
}
.timber{
  background-color: var(--timber-tone);
}
.gray{
  background-color: var(--gray-tone);
}


/*----------------------------------------------
# Global Header
----------------------------------------------*/
.header-top{
  background: var(--secondary-color);
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-widget ul{
  list-style: none;
  margin-bottom: 0;  
  padding-left: 0;
}
.social-widget ul li{
  display: inline-block;
  margin-right:25px;
}
.social-widget ul li a{
   font-size: 18px;
   color: var(--primary-color);
}
.announcement-ticker{
  /*width: 65%;*/
  width: 100%;
}
.announcement-ticker p{
  margin-bottom: 0;
  color: var(--primary-color);
  text-align: center;
}
.brand-phone-number i{
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
}
.brand-phone-number a{
  color: var(--primary-color);
}
.custom-menu{
  padding: 0;
  margin: 0;
}
.custom-dropdown{
  display: flex;
  align-items: center;
}
.custom-dropdown span{
 display: block;
 color: var(--primary-color);
 font-size: 15px;
 cursor: pointer;
 margin: 0 10px;
}
.custom-dropdown i{
 display: inline-block;
 color: var(--primary-color);
 font-size: 16px;
}
.custom-submenu{
  display: none;
  transition: 0.5s;
  margin-bottom: 0;
  background: var(--secondary-color);
  padding: 25px 20px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.custom-submenu li{
  list-style: none;
}
.custom-submenu li a{
  color: var(--primary-color);
  text-decoration: none;
  margin: 8px 0;
  display: block;
  font-size: 15px;
}
.custom-menu.show  .custom-submenu{
  display: block;
  position: absolute;
  top: 37px;
  min-width: 130px;
  z-index: 1;
}

.header {
  color: var(--default-color);
  background: var(--primary-color);
  position: relative;
}
.header.fixed-top{
  position: fixed !important;
}
.header .container-fluid, .header-top .container-fluid{
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
  margin-right: 0%;
}

.header .logo img {
  max-height: 62px;
}

.header .logo h1 {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.btn-hd-search{
 font-size: 26px;
 font-weight: bold;
}

body.scrolled .header {
  --background-color: rgb(255 255 255);
}

.searchbar{
}
.searchbar-input{
  outline: 0;
  background: #f5f5f5;
  width: 100%;
  border: none;
  height: 60px;
  margin: 0;
  padding: 0px 20px;
  font-size: 18px;
  color: var(--secondary-color);
  border-radius: 10px;
}
.searchbar-open .searchbar-input::placeholder {
 color: var(--secondary-color);
 opacity: 1;
}
.searchbar-open .searchbar-input{
  /* position: absolute;
  width: 400px; */
  background-color: var(--primary-color);
}
/* .searchbar-input::-webkit-input-placeholder {
  color: #fff;
}
.searchbar-input:-moz-placeholder {
  color: #fff;
}
.searchbar-input::-moz-placeholder {
  color: #fff;
}
.searchbar-input:-ms-input-placeholder {
  color: #fff;
} */
.searchbar-icon,
.searchbar-submit{
  display:block;
}
.searchbar-open{
  /* width: 400px;
  right: 11.5%;
  margin-top: 5px; */
}

/*-------------------------------------------
# Navigation Menu
-------------------------------------------*/
.header-nav-icons{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
  padding-right: 20px;
}
.header-nav-icons li{
  margin-left: 30px;
}
.header-nav-icons li a{
  font-size: 18px;
}






/* Desktop Navigation */
@media (min-width: 1200px) {
.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 7px 21px;
  font-size: 17px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--primary-color);
  /* background-color: var(--secondary-color); */
  text-decoration: none;
}
.dropdown__corner.top.left {
    --tw-scale-x: -1;
    --tw-rotate: 0;
    left: calc(clamp(1rem, 1.040vw, 1.25rem)* -1);
}
.corner.top.right {
    --tw-rotate: -90deg;
}
.dropdown__corner.top.right {
    --tw-scale-y: 1;
    --tw-rotate: 0;
    right: calc(clamp(1rem, 1.040vw, 1.25rem)* -1);
}
.corner.top.right {
    --tw-scale-y: -1;
    --tw-rotate: -90deg;
}
.corner.top {
    inset-block-end: 100%;
}
.dropdown__corner {
    inset-block-start: 0;
}
.corner {
    position: absolute;
    top: -6px;
    width: clamp(1rem, 1.052vw, 1.25rem);
    height: clamp(1rem, 1.052vw, 1.25rem);
    color: #fff;
    transform: rotate(var(--tw-rotate)) scaleX(var(--tw-scale-x)) scaleY(1);
}
.navmenu .dropdown ul {
  margin: 0;
  padding: 20px 0;
  background: var(--primary-color);
  display: block;
  position: absolute;
  visibility: hidden;
  left: 46%;
  right: 40%;
  top: 100%;
  opacity: 0;
  transition: 0.3s;
  border-radius: 0 0 15px 15px;
  z-index: 99;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.1);
  border: none;
  transform: translateY(-12%);
    pointer-events: none;
}

.navmenu .dropdown ul a {
  padding: 8px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--secondary-color);
}
.navmenu .dropdown ul a, .searchdatalist li a {
    --reversed-link-gap: min(100%, 1.8em);
    background: linear-gradient(to left, #000, #000) 0 var(--reversed-link-gap) / 0 1px no-repeat;
    background-position-x: right;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1);
}
.navmenu .dropdown ul a:hover, .searchdatalist li a:hover{
    background-position-x: left;
    background-size: 100% 1px;
}
.navmenu .dropdown ul a i {
  font-size: 12px;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--secondary-color);
}

.navmenu .dropdown:hover ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  transform: translateY(0px);
  pointer-events: auto;
}

/*---- mega menu css ----*/
.navmenu .dropdown:hover>ul.mega-down-menu {
  opacity: 1;
  visibility: visible;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  /* transition: 0.6s; */
  /*box-shadow: 0px 11px 13px rgba(0, 0, 0, 0.1) !important;
  border-top: 1px solid #ccc;*/
  padding: 2em 0;
  max-height: auto;
  overflow: auto;
  transform: translateY(0px);
  pointer-events: auto;
  border-radius: 30px;
}
.navmenu .dropdown >ul.mega-down-menu{
  visibility: hidden;
  left:0%;
  right:0%;
  /* top: 130%;
  opacity: 0; 
  transition: 0.3s; */
  transform: translateY(-4%);
  pointer-events: none;
  /*box-shadow: 0px 11px 13px rgba(0, 0, 0, 0.1) !important;
  border-top: 1px solid #ccc;*/
}
.mega-menu-title{
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  /*border-bottom: 3px solid #ccc;*/
  font-weight: 700;
  display: inline-block;
}
.megamenu-nav-heading{
  margin-bottom: 5px;
  margin-top: 10px;
}
.mega-menu-nav .row {
  display: flex;
}
.mega-menu-nav .column {
  flex: 1;
  margin: 0px;
  width: 250px;
}

.navmenu>ul li.top-links ul.mega-down-menu .column, .navmenu>ul li.dropdown.top-links ul.mega-down-menu .mega-menu-wrap .mega-menu-nav.megamenu-image {
    --tw-translate-x: 20%;
    opacity: 0;
    transform: translateX(calc(var(--tw-translate-x)* 1));
    transition: transform 1s cubic-bezier(.075, .82, .165, 1), opacity 1s cubic-bezier(.19, 1, .22, 1);
    transition-delay: 0.2s;
}
.navmenu>ul li.top-links:hover ul.mega-down-menu .column, .navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .mega-menu-nav.megamenu-image {
  --tw-translate-x: 0;
  opacity: 1;
  transition-delay: 1.2s;
}
.navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .column:is(:nth-child(1), :nth-child(2)) {
  transition-delay: .5s;
}

.navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .column:is(:nth-child(3), :nth-child(4)) {
  transition-delay: .65s;
}

.navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .column:is(:nth-child(5), :nth-child(6)) {
  transition-delay: .75s;
}

.navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .column:is(:nth-child(7), :nth-child(8)) {
  transition-delay: .85s;
}
.navmenu>ul li.dropdown.top-links:hover ul.mega-down-menu .mega-menu-wrap .mega-menu-nav.megamenu-image {
  transition-delay: .75s;
}


.megamenu-nav-heading a, .megamenu-nav-heading a:active, .megamenu-nav-heading a:hover, .megamenu-nav-heading a:focus{
  font-weight: 700;
  font-style: bold;
  letter-spacing: 0px;
  font-size: 16px !important;
  display: inline-block;
}
.mega-menu-wrap{
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.mega-menu-nav.megamenu-image{
  width: 30%;
}
.megamenu-img{
  overflow: hidden;
  border-radius: 15px;
}
.megamenu-img figure{
  height: 450px;
  width: 100%;
  margin-bottom: 0;
}
.megamenu-img figure img{
  height: 100%;
}
.mega-menu-nav{
  padding: 1.2em 0;
}
.mega-menu-nav li{
  margin-bottom: 3px;
}
.mega-menu-nav a{
  padding: 3px 0 !important;
}
.mega-menu-nav a img{
 width: 45%;
 float: left;
 margin-right: 10px;
 border-radius: 10px;
}
.mega-menu-nav h3{
 color: var(--secondary-color);
 font-size: 20px;
 margin-bottom: 5px;
}
.mega-menu-nav h3:hover, .mega-menu-nav a:hover h3{
color: var(--accent-color);
}
.mega-menu-nav p{
 text-wrap: wrap;
 font-size: 14px;
 line-height: 20px;
 color: var(--default-text-color);
}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  display: none;
  list-style: none;
  position: absolute;
  inset: 60px 20px 20px 20px;
  padding: 10px 0;
  margin: 0;
  border-radius: 6px;
  background-color: var(--nav-mobile-background-color);
  overflow-y: auto;
  transition: 0.3s;
  z-index: 9998;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.navmenu a,
.navmenu a:focus {
  color: var(--secondary-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  position: absolute;
  font-size: 32px;
  top: 15px;
  right: 15px;
  margin-right: 0;
  z-index: 9999;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(33, 37, 41, 0.8);
  transition: 0.3s;
}

.mobile-nav-active .navmenu>ul {
  display: block;
}
}



.navmenu>ul li.top-links{
    position: unset;
    margin: 0 3px;
    padding: 25px 0;
}
.navmenu>ul>li.top-links>a {
   position: relative;
   margin: 0 3px;
   padding: 1.25rem 0;
   overflow: hidden;
    height: 2.625rem;
    padding-inline: 1.25rem;
}
.navmenu>ul li.top-links ul.dropdown-menu li a{ padding-inline: 0; display: inline-flex; margin: 0; font-weight: 400; padding: 8px 0; }
.navmenu>ul li.top-links ul.mega-down-menu a{ padding-inline: 0; padding: 5px 0; display: inline-flex; }
.btn-text {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.btn-duplicate {
  --tw-scale: .6;
  --tw-translate-y: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-inline: 1.25rem;
  border-radius: 9999px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  transition: transform .5s cubic-bezier(.3, 1, .3, 1);
  transform: translateY(var(--tw-translate-y)) scale(var(--tw-scale));
}
.navmenu>ul li.top-links:hover a .btn-text[data-text] {
  opacity: 0;
  transform: translateY(-10%) scale(.6);
}
.navmenu>ul li.top-links:hover a .btn-text.btn-duplicate {
  --tw-scale: 1;
  --tw-translate-y: 0%;
}

/*-------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}
.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.breadcrumbs{
  background: #f5f6f8;
  margin-top: 6em;
  padding: 10px 0;
}
.breadcrumbs-wrap ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.breadcrumbs-wrap li{
  display: inline-block;
}
.breadcrumbs-wrap li:after{
  content: '\F285';
  font-family: bootstrap-icons !important;
  padding: 0 9px;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.breadcrumbs-wrap li:last-child::after{
 display: none;
}
.breadcrumbs-wrap li a{
 color: var(--default-text-color);
}
.breadcrumbs-wrap li a:hover{
 color: var(--accent-color);
}

/*---------------------------------------
# Global Sections, Titles & Content
---------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-title {
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 3.3em;
  font-weight: 700;
  margin-bottom:1em;
  line-height: 52px;
  color: var(--secondary-color);
  letter-spacing: -0.03em;
}

.section-title h2 span{
  font-weight: 700;
  position: relative;
  color: var(--secondary-color);
}

.section-title h2 span svg{
  width: 100%;
  height: 30%;
  inset-block-start: auto;
  inset-block-end: -11%;
  z-index: -1;
  position: absolute;
  inset-inline-start: 0;
  stroke: var(--accent-color);
  transform: scaleX(1);

}

.content p{
  color: var(--secondary-color);
  margin-bottom: 25px;
  line-height: 29px;
}

.section-title.center-title h2{
  text-align: center;
}
.section-title.center-title p{
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--default-text-color);
}

/*-----------------------------------------
# Hero Section
-----------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 0;
}

.hero .carousel-inner{
  border-radius: 17px;
}
.hero .carousel-item{
  max-height: 630px;
  width: 100%;
}
.hero-content{
  position: absolute;
    bottom: 18%;
    left: 0;
    right: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    max-width: 86%;
    margin: 0 auto;
    border-bottom: 0.5px solid #ccc;
    padding-bottom: 25px;
    font-weight: 700;
}
.hero-content h2 {
  font-size: 3em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  width: 50%;
}
@media (max-width: 640px) {
  .hero h2 {
    font-size: 40px;
    line-height: 36px;
  }
}
.custom-indicators{
  position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
}
.custom-indicators .carousel-indicators{  
    margin-bottom: 0 !important;
}
.custom-indicators .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 100px;
    border-top: none;
    border-bottom: none;
    opacity: 1;
}
.carousel-indicators .active {
    width: 8px !important;
    height: 8px !important;
    background-color: var(--secondary-color);
}
.carousel-control-next, .carousel-control-prev{
  opacity: 1;
}

/*--------------------------------------
# About
--------------------------------------*/
.about .content{
  padding-left: 4em;
}

/*--------------------------------------
# Highlighted products
--------------------------------------*/
#highlighted-products{
  padding: 0 0 6em 0;
}
.highlighted-products .item {
    width: 100%;
}
.collection-card{
  background-color: var(--gray-color);
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}
.collection-card .image-effect{
  padding: 15px;
}
/* figure img {
  height: 250px !important;
} */

.brand-list  {
  width: 100%;
  height: 250px !important;
}

.brand-list img {
  width: 50%;
  height: auto !important;
}

.imageeffect{
  width: 100%;
  overflow: hidden;
}
.imageeffect img {
    transition: 0.3s;
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
}

.imageeffect img:hover {
  transform: scale(1.05);
}

.collection-details{
  display: flex;
  align-items: center;
  justify-content: space-between;  
  padding: 5px 30px 30px 30px;
}
.collection-details-title h2{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
  height: 40px;
}
.collection-details-title h2 span{
  font-size: 15px;
  font-weight: 400;
}
.collection-details-title h2::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.5px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}
#highlighted-products-carousel .owl-item:hover h2::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.collection-details-title p{
  font-size: 14px;
}
.collection-card:hover .collection-details i{
  transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}
.collection-details i{
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.highlighted-products .owl-nav button {
  position: absolute;
  top: 50%;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: none;
}
.highlighted-products:hover .owl-nav button {
  display: block;
  background: var(--secondary-color);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  opacity: 0.8;
  text-align: center;
}
.highlighted-products:hover .owl-nav button.disabled{
  display: none;
}
.highlighted-products:hover .owl-nav button svg{
  width: 10px;
}
.highlighted-products:hover .owl-nav button svg path{
  fill: var(--primary-color);
}
.highlighted-products .owl-nav button.owl-prev {
  left: 0;
}
.highlighted-products .owl-nav button.owl-next {
  right: 0;
}
.highlighted-products .owl-dots {
  display: none;
}

/*----------------------------------
# Call To Action Section
----------------------------------*/
.call-to-action {
  padding:0;
  position: relative ;  
  max-height: 520px;
  width: 100%;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.call-to-action:before {
    content: "";
    background: color-mix(in srgb, rgb(15 15 15 / 15%), transparent 15%);
    position: absolute;
    inset: 0;
    z-index: 1;
}
.call-to-action video{
  position: relative;
  height: 100%;
  width: 100%;
}
.call-to-content{
  position: absolute;
  top: 36%;
  right: 0;
  left: 0;
  object-fit: contain;
  z-index: 2;
  text-align: center;
}
.call-to-content h2 {
  color: var(--contrast-color);
  font-size: 43px;
  font-weight: 600;
}

.call-to-content h2 span {
  color: var(--accent-color);
  font-weight: 300;
}
.call-to-content p{
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 3rem;
}
/*----------------------------------
# Product details home
----------------------------------*/
#product-details-home{
  padding-top: 6em;
  position:relative;
}
.product-gallery{
  padding-right: 7%;
}
.swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 480px) {
  .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}
.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .swiper-container {
    min-height: 270px;
  }
}

.moving-text-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 75vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  top: 21px;
  left: 43%;
}
.moving-text-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.moving-text-logo i{
  font-size: 24px;
  color: #393c3e;
  transform: rotate(-20deg);
}
.moving-text {
  position: absolute;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  color: #2e2929;
  font-size: 14px;
  animation: textRotation 13s linear infinite;
}
@keyframes textRotation {
  to {
    transform: rotate(-360deg);
  }
}
.moving-text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  transform-origin: 0 75px;
}
.swiper-button-next, .swiper-button-prev {
  color: #000;
}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.gallery-top {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.cart-top {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.cartpage .cart-top{ background: var(--gray-color); padding: 10px; width: 160px; }
.cartpage .cart-top img{ width: 100%; border-radius: 10px;}
/* .cart-top img{
  width: 50%;
  height: 50%;
} */
@media (min-width: 480px) {
  .gallery-top {
    width: 85%;
    /* height: 90vh; */
    height: 30rem;
    margin-left: 2%;
  }
  .cart-top {
    /* width: 40vh; */
  }
}

.cart-order-wrap input[type=text]{ margin-bottom: 0; }
.gallery-thumbs {
  width: 100%;
  height: 100%;  
}
@media (min-width: 480px) {
  .gallery-thumbs {
    width: 13%;
    /* height: 90vh; */
    height: 32rem;
    padding: 0;
  }
}
.gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.gallery-thumbs .swiper-slide {
  width: 100% !important;
  flex-flow: row nowrap;
  height: 90px !important;
  opacity: 0.75;
  cursor: pointer;
  border-radius: 15px;
  margin-bottom: 15px !important;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border:2px solid var(--secondary-color);
  border-radius: 15px
}

.product-details-wrap{
  width: 100%;
}
.PD-category{
  font-size: 14px;
  margin-bottom: 15px;
}
.PD-title-wrap{
  display: flex;
  align-items:end;
  justify-content: space-between;
  margin-bottom: 25px;
}
.PD-title{
  font-size: 2.5em;
  font-weight: 700;
  line-height: 38px;
}
.PD-price{
  font-size: 21px;
  margin-bottom: 0;
}
.PD-rting-wrap{
  display: flex;
  align-items: center;
}
.PD-rating{
  margin-right: 5px;
}
.PD-rating ul{
  list-style: none;
  display: inline-flex;
  padding-left: 0;
  margin-bottom: 0;
}
.PD-rating li i{
  color: var(--star-color);
  font-size: 13px;
  margin-right: 2px;
}
.PD-rating span{
  font-size: 14px;
  margin-left: 5px;
  margin-right: 5px;
}
.PD-review{
  font-size: 14px;
  padding-left: 8px;
  border-inline-start:1px solid #ccc;
}
.PD-description{
  margin: 30px 0;
}
.PD-description p{
  margin-bottom: 0;
  font-size: 16px;
}
.PD-color-box{
  margin-bottom: 20px;
}
.PD-color-text{
  display: flex;
  margin-bottom: 5px;
  display: none;
}
.PD-color-text span{
  margin-left: 10px;
  font-weight: 500;
}
.PD-color-swatches ul{
  list-style: none;
  display: flex;
  align-items: center;
  display: none;
}
.PD-color-swatches li{
  margin-right: 15px;
}
.PD-color-swatches li a.PD-color-tone{
  width: 35px;
  height: 35px;
  display:block;
  border-radius: 100%;
}
.PD-color-swatches li.active{
  border: 2px solid var(--secondary-color);
    padding: 3px;
    border-radius: 100%;
}
.PD-stock-notificatio{
  font-size: 13px;
}
.PD-cart-btn{
  margin: 25px 0;
}
.PD-cart-btn a{
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 100%;
  display: block;
  border-radius: 50px;
  padding: 12px;
  text-align: center;
  border: 2px solid var(--secondary-color);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.PD-cart-btn button, .PD-cart-btn .orderbtn{
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 100%;
  display: block;
  border-radius: 50px;
  padding: 12px;
  text-align: center;
  border: 2px solid var(--secondary-color);
  z-index: 1;
  overflow: hidden;
  position: relative;
}
/*.PD-cart-btn a:hover{
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}*/

.PD-cart-btn a::after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  left: 0;
  right: 0;
  top: -100%;
  bottom: 100%;
  --motion-translateY: -76%;
  transform-origin: bottom;
  display: block;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  inset-block-start: -50%;
  inset-inline-start: -25%;
  transform: translate3d(0, -76%, 0);
  transition: all 0.35s;
    transform: translateY(var(--motion-translateY));
}
.PD-cart-btn a:hover {
  color: var(--secondary-color);
}
.PD-cart-btn button::after, .PD-cart-btn .orderbtn::after {
  content: "";
  background: var(--primary-color);
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  left: 0;
  right: 0;
  top: -100%;
  bottom: 100%;
  --motion-translateY: -76%;
  transform-origin: bottom;
  display: block;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  inset-block-start: -50%;
  inset-inline-start: -25%;
  transform: translate3d(0, -76%, 0);
  transition: all 0.35s;
    transform: translateY(var(--motion-translateY));
}
.PD-cart-btn button:hover, .PD-cart-btn .orderbtn:hover {
  color: var(--secondary-color);
}
.PD-cart-btn a:hover::after {
  /* left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s; */
  transition: all 0.35s;
  transform: translateY(0%);
  transform-origin: bottom;
}
.PD-cart-btn button:hover::after, .PD-cart-btn .orderbtn:hover::after {
  /* left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s; */
  transition: all 0.35s;
  transform: translateY(0%);
  transform-origin: bottom;
}


.PD-pickup-availability{
  display: flex;
  align-items: top;
  justify-content: space-between;
  border-radius: 10px;
  padding: 15px;
  background-color: var(--gray-color);
}
.PD-pickup-availability i.fa-check-circle{
  color: green;
  font-size: 16px;
  margin-right: 10px;
}
.PD-pickup-details{

}
.PD-pickup-details h4{
   font-size: 15px;
   margin-bottom:5px;
}
.PD-pickup-details p{
   font-size: 13px;
   margin-bottom: 0;
}
.PD-pickup-availability a{
  text-decoration: underline;
  text-align: right;
  font-size: 13px;
}
.PD-pickup-availability a:hover{
  text-decoration: none;
}
.PD-socialandhelp{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5em 0 2em 0;
}
.PD-socialandhelp .social-widget{
  display: flex;
}
.PD-socialandhelp .social-widget ul{
  padding-left: 13px;
}
.PD-socialandhelp .social-widget ul li {
  margin-right: 13px;
}
.PD-socialandhelp .social-widget ul li a {
  font-size: 18px;
  color: var(--secondary-color);
}
.PD-help-link i{
  font-size: 19px;
  vertical-align: bottom;
  margin-right: 5px;
}
.PD-help-link a{
  text-decoration: underline;
  font-size: 14px;
}
.PD-help-link a:hover{
  text-decoration:none;
}
.PD-viewdetail-wrap{
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}
/*--------------------------------------
# Strok text marquee
--------------------------------------*/
#stroke-text-marquee{
  padding-top: 0;
}
.stroke-marquee-wrapper { 
    position: relative;
    height:200px;    
}
.stroke-marquee-wrapper .marquee-inner {
    display: flex;
    width: 200%;
    position: absolute;
    animation: marquee 13s linear infinite;
    bottom: 5px;
    justify-content: space-evenly;
    align-items: center;
}
.stroke-marquee-wrapper .marquee-inner span {
    font-size: 10em;
    -webkit-text-stroke: 2px var(--secondary-color);
    -webkit-text-fill-color: var(--primary-color);
    font-weight: 700;
    font-family:  sans-serif;
    letter-spacing: -2px;
}
.stroke-marquee-wrapper .marquee-inner span:before {
    content: "";
    border-radius: 100%;
    height: 30px;
    width: 30px;
    border: 1px solid #505050;
    display: inline-block;
    margin: 36px;
}
@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}


/*--------------------------------------
# Build your bundle
--------------------------------------*/
#build-bundle-wrap{
  margin-top: -5rem;
}
.build-bundle-wrap .section-title h2 {
    margin-bottom: 27px;
}
.build-bundle-wrap .section-title p {
    font-size: 16px;
    line-height: 28px;
}
.product-card{
  border-radius: 15px;
  background: var(--gray-color);
  overflow: hidden;
  margin-bottom: 20px;
}
.product-image-wrapper{
  position: relative;
}
.product-image-wrapper figure{
    margin-bottom: 0;
    margin: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.product-meta{
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 50px;
  padding: 7px 15px;
  font-size: 13px;
} 
.green-meta{
  background-color: var(--green-color);
  color: var(--primary-color);
}
.red-meta{
  background-color: var(--hot-color);
  color: var(--primary-color);
}
.product-badge-rating{
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50px;
  padding: 7px 15px;
  background-color: var(--primary-color);
  color:var(--secondary-color);
  font-size: 13px;
}
.product-badge-rating i{
  color: var(--star-color);
  font-size: 13px;
}
.product-details-card{
  padding:0 20px 20px 20px;
}
.product-category a{
  font-size: 13px;
  color: #818181;
}
.product-title-price{
  display: flex;
  flex-direction: column;
  align-items: top;
  justify-content: space-between;
  margin: 10px 0 15px 0;
}
.product-title-price a{
  font-size: 20px;
  display: block;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 5px;
  height: 40px;
}
.product-title-price a:hover, .product-category a:hover{
  text-decoration: underline;
}
.product-title-price p{
    margin-bottom: 0;
    font-size: 16px;
}
.product-color-wrap{
  border-radius: 10px;
  padding: 15px;
  border:1px solid #ccc;
  display: none;
}
.product-color-wrap .PD-color-box{
  margin-bottom: 0;
}
.bundle-cart-card{
  border-radius: 15px;
  overflow: hidden;
  border:2px solid var(--secondary-color);
  padding: 20px 15px;
  position: sticky;
  z-index: 99;
  top: 14%;
  margin-bottom: 20px;
}
.bundle-cart-title {
  margin-top: 10px;
}
.bundle-cart-title h2{
  font-size: 2.3em;
  margin-bottom: 15px;
  line-height: 26px;
  color: var(--secondary-color);
  font-weight: 700;
}
.bundle-cart-title p{
  font-size: 15px;
  line-height: 23px;
}
.bundle-cart-products{
  height: 130px;
  overflow-y: auto;
  overflow-x: hidden;
  margin: 30px 0;
}
.bundle-product-details{
  display: flex;
  flex-direction:row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bundle-product-details .image-effect{
  width: 32%;
}
.bundle-product-details .image-effect img {
  border-radius: 5px;
}
.bundle-item-details{
  margin: 0 10px;
}
.bundle-item-details a{
  line-height: 19px;
  display: block;
  margin-bottom: 5px;
}
.bundle-item-details p{
  font-size: 14px;
  margin-bottom: 0;
}
.product-quantity-wrap{
  width: 22%;
}
.product-quantity-wrap input{
  border: none;
  border-radius: 5px;
  font-size: 13px;
  width: 45px;
  padding: 5px;
  text-align: center;
  background-color: var(--gray-color);
}
.product-quantity-wrap a{
  font-size: 14px;
  text-decoration: underline;
}
.product-quantity-wrap a:hover{
  text-decoration: none;
}
.bundle-total-price{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.bundle-total-price h3{
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 600;
}
.bundle-total-price p{
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
/*--------------------------------------
# Discover CTA
--------------------------------------*/
.discover-CTA .bg-parallax{
  background-size: cover;
}
.premium-speakers-list .carousel-indicators {
    bottom: -10px;
    margin-bottom: 0;
}
.premium-speakers-list .carousel-indicators button{
    width: 8px !important;
    height: 8px !important;
    border-radius: 50px;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}
.premium-speakers-list .carousel-indicators button.active {
    background-color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}
.discover-CTA .call-to-content{
   max-width: 50%;
   margin: 0 auto;
   top: 25%;
}
.discover-CTA .call-to-content h2{
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 1em;
  line-height: 1.3;
  font-weight: 800;
}
/*--------------------------------------
# Premium Spekers
--------------------------------------*/
.premium-speakers-wrap{
  padding: 6.5em 0;
}
.premium-speakers-slider .section-title{
  padding-bottom: 0;
  margin-top: 10px;
}
.premium-speakers-slider .section-title h2{
  font-size: 2.5em;
  line-height: 43px;
}
.premium-speakers-img{
  padding-right: 2em;
}
.premium-speakers-img img{
  border-radius: 15px;
}
.premium-speakers-slider{
  margin: 0 4em;
}
.small-swatches li{
  margin-right: 10px;
}
.small-swatches li a.PD-color-tone {
  width: 15px;
  height: 15px;
}
/*--------------------------------------
# Testimonials
--------------------------------------*/
.testimonials-wrap{
  background-image: url(../img/home-testimonials.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.testimonials-slider{
  text-align: center;
  margin: 0em 0;
}
.testimonials-slider .carousel-inner{
  margin-bottom: 40px;
}
.testimonials-content{
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
}
.testimonials-content i{
  color: var(--primary-color);
  font-size: 3em;
  margin-bottom: 25px;
}
.testimonials-content p{
  font-size: 2.2em;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 45px;
}
.testimonial-brand-logo{
   margin: 2em 0 1em 0;
   text-align: center;
}
.testimonial-brand-logo h2{
  width: 15%;
  opacity: 0.5;
  display: inline;
  font-size: 4em;
  color: var(--gray-color);
}
.testimonials-client-details{
   color: var(--gray-color);
   font-style: italic;
   opacity: 0.6;
   font-size: 18px;
}
.testimonials-slider .carousel-indicators {
    bottom: -15%;
    margin-bottom: 0;
}
.testimonials-slider .carousel-indicators button{
    width: 4px !important;
    height: 4px !important;
    border-radius: 50px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    opacity: 1;
    margin: 0 8px;
}
.testimonials-slider .carousel-indicators button.active {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    width: 8px !important;
    height: 8px !important;
    margin-top: -2px;
}
/*--------------------------------------
# Best Sellers
--------------------------------------*/
#best-sellers-wrap{
  padding-top: 5em;
  padding-bottom: 2em;
}
.best-sellers-wrap .section-title h2 {
    margin-bottom: 10px;
}
.products-tab-slider{
  position: relative;
}
.products-tab-slider .product-card{
  position: relative;
}
.product-card-hover-btn{
   display: none;
   --tw-translate-y: 0.5rem;
   transition: .5s cubic-bezier(.3, 1, .3, 1);
   transition-property: opacity, transform;
    transform: translateY(var(--motion-translateY));
    --motion-translateY: -.4rem;
}
.product-card:hover .product-card-hover-btn{
   display: block;
   position: absolute;
   top: 52%;
   margin: 0 5em;
  left: 0;
  right: 0;
  transition: .5s cubic-bezier(.3, 1, .3, 1);
  --tw-translate-y: 0;
  transform: translateY(var(--motion-translateY));
  --motion-translateY: -1rem;
}

.product-card-hover-btn a{
  padding: 8px 10px;
}
.products-tab-view ul.nav-tabs{
  border:0;
  margin-bottom: 50px;
}
.products-tab-view ul li{
  margin-right: 15px;
}
.products-tab-view ul li .nav-link{
  background: var(--gray-color);
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  color: var(--secondary-color);
}
.products-tab-view ul li .nav-link.active{
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.products-tab-slider .owl-carousel{
  position: unset;
}
.products-tab-slider .owl-nav{
  position: absolute;
  top: -75px;
  right: 0;
  display: flex;
}
.products-tab-slider .owl-nav button.disabled {
    display: none;
}
.products-tab-slider .owl-nav button {
    display: block;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    text-align: center;
    margin-left: 10px;
}
.products-tab-slider .owl-nav button.owl-prev:hover, .products-tab-slider .owl-nav button.owl-next:hover{
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.products-tab-slider .owl-nav button.owl-prev, .products-tab-slider .owl-nav button.owl-next{
  border: 1px solid var(--secondary-color );
}
.products-tab-slider .owl-nav button svg {
    width: 10px;
}
.products-tab-slider .owl-nav button svg path {
    fill: var(--secondary-color);
}
.products-tab-slider .owl-nav button:hover svg path {
    fill: var(--primary-color);
}

/*--------------------------------------
# Our Clients
--------------------------------------*/
.our-clients-top .slick-slider{
  /* background: #eeeba4; */
  background: #fde68a;
  transform: rotate(-2.5deg) skewX(-3deg);
  padding: 30px 0;
  z-index: 1;
}
.our-clients-btm .slick-slider{
  background: #f4f4f4;
  transform: rotate(2.5deg);
  padding: 30px 0;
}
.our-clients-top .slick-slide, .our-clients-btm .slick-slide{
  margin: 0 5em;
}
.our-clients-top .inner img{
  height: 100%;
  transform: skewX(4deg);
}
.our-clients-btm .inner img{
  opacity: 0.4;
  height: 100%;
  transform: skewX(1deg);
  -webkit-filter: grayscale(100%); 
  -moz-filter: grayscale(100%);
  filter: gray; 
  filter: grayscale(100%);
}
/*--------------------------------------
# Solutions For You
--------------------------------------*/
#solutions-for-you{
  padding-bottom: 2em;
}
.solutions-for-you .section-title h2{
  margin-bottom: 30px;
}
.solution-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solutions-box{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin:0 5px;
  width: 20%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.solutions-box figure{
  margin-bottom: 0;
  height: 400px;
}
.solutions-box figure img{
  height: 100%;
}
.verticle-text{
  transform: rotate(-180deg);
  writing-mode: tb-rl;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  left: 10px;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--primary-color);
}
.solutions-box a{
  position: absolute;
  bottom: 4.5%;
  right: 5%;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  display: inline-block;
  padding: 5px;
  text-align: center;
  width: 40px;
  height: 40px;
}
.solutions-box a i{
  font-size: 18px;
  vertical-align: bottom;
  color: var(--primary-color);
}
/*--------------------------------------
# Latest Stories
--------------------------------------*/
#latest-stories-wrap{
  /*padding-bottom: 6em;*/
}
.latest-stories-wrap .section-title h2{
  margin-bottom: 20px;
}
.big-stories-card{
  overflow: hidden;
    position: relative;
}
.big-stories-content{
  position: absolute;
  bottom: 5%;
  padding: 20px;
  margin-top: 2em;
}
.stories-meta{
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-size: 14px;
}
.stories-date{
  padding-right: 13px;
}
.stories-date i{
  margin-right: 8px;
}
.stories-comments{
  padding-left: 15px;
  border-inline-start: 1px solid #ccc;
}
.stories-comments a{
  color: var(--primary-color);
  font-size: 14px;
}
.stories-comments a:hover{
  text-decoration: underline;
}
.stories-comments i{
  margin-right: 8px;
}
.big-stories-content h2 a{
  font-size: 1.2em;
  color: var(--primary-color);
  font-weight: 700;
  margin: 20px 0;
  display: block;
  line-height: 43px;
}
.big-stories-content h2 a:hover{
  text-decoration: underline;
}
.big-stories-content p{
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}
.big-stories-content .read-more-link{
  color: var(--primary-color);
  text-decoration: underline;
}
.big-stories-content .read-more-link:hover{
  text-decoration: none;
}
.big-stories-card{
  border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.big-stories-card .image-effect figure{
  margin: 0;
  height: 450px;
}
.big-stories-card .image-effect figure img{
  height: 100%;
}
.small-stories-card{
  position: relative;
  border-radius: 15px;
    overflow: hidden;
}
.small-stories-card .image-effect figure{
    height: 209px;
    margin-bottom: 0;
}
.small-stories-card  .image-effect img {
    height: 100%;
}
.small-stories-text {
    position: unset;
    margin:0;
    padding: 0;
}
.small-stories-text .stories-meta {
    color: var(--secondary-color);
}
.small-stories-text  .stories-comments a {
    color: var(--secondary-color);
    font-size: 14px;
}
.small-stories-text h2{  
  line-height: 25px;
  margin: 10px 0;
}
.small-stories-text h2 a{
  color: var(--secondary-color);
  font-size: 23px;
  max-width: 100%;
  line-height: 28px;
  font-weight: 600;
      margin: 15px 0;
}
.small-stories-text p {
    color: var(--secondary-color);
    font-size: 15px;
    margin-bottom: 15px;
}
.small-stories-text .read-more-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-size: 15px;
}
/*--------------------------------------
# Store Feature
--------------------------------------*/
.store-features-wrap{
  border-top: 1px solid #ccc;
  padding: 45px 0;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}
.store-feture-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-feature-box{
  display: inline-flex;
  justify-content: space-between;
  align-items:start;
  border-inline-end: 1px solid #ccc;
  padding: 0 25px;
}
.store-feature-box:last-child{
  border: none;
}
.store-feature-box i{
  font-size: 22px;
  color: var(--secondary-color);
  margin-right: 25px;
}
.store-feature-box-text h2{
  font-size: 18px;
  margin-bottom: 5px;
}
.store-feature-box-text p{
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 0;
}
/*--------------------------------------
# Global Footer
--------------------------------------*/
.footer{
  background-color:#1f1f1f;
  padding: 4em 0;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.brand-box h2{
  font-weight:700;
  text-transform: uppercase;
  font-size: 1.5em;
  color: var(--primary-color);
}
.brand-box img{
 width: 50%;
 height: 100%;
}
.footer-link-box{

}
.top-footer-headings{
  font-size: 22px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}
.footer-links{

}
.footer-links li{
  margin-top: 2px;
}
.footer-links li a{
  color: var(--primary-color);
    padding: 4px 0;
    display: inline-block;
    font-size: 16px;
}
.footer-links li a:hover{
  text-decoration: underline;
}

.footer-address-info{
  margin-top: 3em;
}
.footer-address-info p{
  margin-bottom: 10px;
}
.footer-address-info p a{
  font-size: 18px;
  color: var(--primary-color);
  text-decoration: underline;
}
.footer-address-info p a:hover{
  text-decoration: none;
}
.newsletter-box{
  max-width: 60%;
  margin: 0 auto;
}
.newsletter-box h2{
  font-size: 2.4em;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 43px;
    margin-bottom: 19px;
}
.newsletter-input{
  position: relative;
}
.newsletter-input input{
  background-color: #292929;
  border:none;
  height: 65px;
  border-radius: 10px;
  padding: 15px;
}
.newsletter-input input::placeholder{
  color: #6d6d6d;
}
.newsletter-input input:focus{
  box-shadow: none;
  outline: 0;
  background-color: #3e3e3e;
  color: var(--primary-color);
}
.newsletter-input button{
    position: absolute;
    top: 10px;
    right: 13px;
    background: var(--primary-color);
    border: none;
    height: 45px;
    width: 45px;
    border-radius: 100%;
}
.footer .social-widget{
  max-width: 60%;
  margin: 0 auto;
  margin-top: 1.5em;
}
.footer .social-widget li a:hover i{
    -webkit-animation:spin .4s linear;
    -moz-animation:spin .4s linear;
    animation:spin .4s linear;
  }
  @-moz-keyframes spin { 
      100% { -moz-transform: rotate(360deg); } 
  }
  @-webkit-keyframes spin { 
      100% { -webkit-transform: rotate(360deg); } 
  }
  @keyframes spin { 
      100% { 
          -webkit-transform: rotate(360deg); 
          transform:rotate(360deg); 
      } 
  }
.footer .col-lg-6:nth-child(2){
  border-inline-start:1px solid #3a3a3a;
}
.footer-btm{
    padding-top: 35px;
    padding-bottom: 25px;
    justify-content: space-between;
    background: var(--secondary-color);
}
.footer-btm .copyright{
    display: flex;
    align-items: center;

}
.footer-btm .copyright p {
  margin-bottom: 0;
  color: var(--primary-color);
  font-size: 12px;
}

.footer-btm .credits {
  color: var(--primary-color);
  font-size: 12px;
}
.footer-btm .credits img{
  height: 11px;
  width: auto;
  display: inline;
}
.footer-btm .cards-logo{
  text-align: right;
}
.footer-btm .cards-logo img{
  width: 44%;
  display: inline;
}

/*------------------------------------
# Top Banner
------------------------------------*/
.top-banner-wrap{
  padding: 0;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.top-banner-wrap:before {
  content: "";
  background: color-mix(in srgb, rgb(15 15 15 / 15%), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 0;
}
.top-banner-wrap .bg-parallax{
  max-height: 480px;
}
.top-banner-wrap img{
  transition: 0.3s;
  display: block;
  width: 100%;
  object-fit: cover;
}
.top-banner-content{
  position: absolute;
  top: 50%;
}
.banner-breadcrumbs{
  margin-top: 20px;
}
.banner-breadcrumbs ul{
  display: flex;
  list-style: none;
}
.banner-breadcrumbs ul li{
  display: flex;
  align-items: center;
  color: var(--primary-color);
}
.banner-breadcrumbs ul li:after{
  content: "/";
  display: block;
  margin: 0 13px;
  color: var(--primary-color);
}
.banner-breadcrumbs ul li:last-child::after{
  display: none;
}
.banner-breadcrumbs ul li a{
  color: var(--primary-color);
}
.banner-breadcrumbs ul li a:hover{
  color: var(--gray-tone);
}
.banner-title h1{
  font-size: 5em;
  font-weight: 700;
  color: var(--primary-color);
}
.top-banner-button{
  position: absolute;
  top: 60%;
  right:5%;
}
.top-banner-button button{
  border: 2px solid var(--primary-color);
  padding: 8px 30px;
  color: var(--primary-color);
  font-size: 18px;
  background: transparent;
  border-radius: 100px;
}
.top-banner-button button:hover{
 background:var(--primary-color);
 color: var(--secondary-color);
}

/*------------------------------------
# Category Page
------------------------------------*/
.category-products-wrap .product-card{
  position: relative;
}
.sorting-wrap{
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 20px;
}
.sorting-wrap p{
  font-size: 16px;
  color: var(--secondary-color);
  margin-right: 20px;
  margin-bottom: 0;
}
.sorting-wrap form select{
  height: 45px;
  border-radius: 100px;
  padding:0 20px;
  border:2px solid var(--secondary-color);
}
.sorting-wrap form select::-ms-expand {
  display: none;
}
.sorting-wrap form select option {
  padding: 5px 10px;
}
.sorting-wrap select option::hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 16px;
}
.pagination-wrap{
  margin-top: 30px;
}
.pagination-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-wrap ul li{
  margin: 0 3px;
}
.pagination-wrap li a{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 100%;
  height: 45px;
  width: 45px;
  display: block;
  text-align: center;
  color: #878787;
}
.pagination-wrap li.active a, .pagination-wrap li a:hover{
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
/*-------------------------------
# Solutions
-------------------------------*/
.solution-content h2{
  font-size: 2.5em;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 52px;
  color: var(--secondary-color);
}
.solution-content p{
  margin-bottom: 23px;
  line-height: 28px;
}
.request-form-modal .text-right{
  text-align: right;
}
.request-form-modal .btn-close{
  /* text-align: right;
  margin: 30px; */
    text-align: right;
    /* margin: 30px; */
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
}
.request-form-modal .btn-close:focus{
  box-shadow: none;
}
.request-form-modal .modal-header-content, .request-form-modal .modal-body{
  padding: 30px 30px 30px 30px;
  margin-bottom: 0;
}
.modal-header-content{
  text-align: center;
  margin-bottom: 20px;
}
.modal-header-content h3{
  font-size: 23px;
  margin-bottom: 7px;
}
.modal-header-content p{
  font-size: 13px;
  color: #555555;
}
.request-form-modal label{
  font-size: 14px;
  color: #353535;
}
.request-form-modal label span{
  color: red;
}
.request-form-modal .input-group{
  margin-bottom: 10px;
}
.request-form-modal input{
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--secondary-color);
  border-radius: 0;
  padding: 5px 0;
}
.request-form-modal input:focus{
  box-shadow: none;
  border-bottom-color:var(--accent-color) ;
}
.request-form-modal button.submit-btn{
  width: 100%;
  padding: 10px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border:none;
  margin: 20px 0;
  text-transform: uppercase;
  font-size: 15px;
}
.request-form-modal button.submit-btn:hover{
  background-color: #3c3c3c;
}
/*-------------------------------
# Brands
-------------------------------*/
#brands-banner-wrap{
  padding: 0;
  background-color: #efefef;
}
.brands-banner-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-banner-bg{
  width: 50%;
  height: 240px;
}
.brand-banner-bg img{
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}
.brands-banner-content{
  padding: 0 5%;
  width: 50%;
  text-align: center;
}
.brands-banner-content h3{
  font-size: 1.7em;
  margin-bottom: 10px;
}
.brands-banner-content p{
  font-size: 15px;
  line-height: 26px;
}
#borderd-breadcrumbs-wrap{
  padding: 13px 0;
  border-bottom: 1px solid var(--secondary-color);
}
.banner-breadcrumbs.borderd-breadcrumbs{
  margin-top: 0;
}
.banner-breadcrumbs.borderd-breadcrumbs li, .banner-breadcrumbs.borderd-breadcrumbs li a, .banner-breadcrumbs.borderd-breadcrumbs li:after{
 color: var(--secondary-color);
}
.banner-breadcrumbs ul li a:hover {
    color: var(--accent-color);
}
/*-------------------------------
# Products Details
-------------------------------*/
.products-details-heading .PD-category {
  font-size: 16px;
  text-transform: uppercase;
}
.cartpage .products-details-heading .PD-category{
  font-size: 14px;
  color: #17171780;
  margin-bottom: 10px;
}
.cartpage .products-details-heading .PD-title{
    font-size: 1.5em;
    line-height: 23px;
    margin-bottom: 15px;
}
.products-details-heading .PD-title{
  font-size: 1em;
  line-height: 23px;
  margin-bottom: 10px;
}
.products-details-heading .PD-price{
  font-size: 17px;
  margin-bottom: 8px;
}
.products-details-heading .PD-price span{
  font-size: 13px;
  color: #838383;
}
.product-order-wrap{
  display: flex;
  align-items: center;
  margin: 20px 0 10px 0;
}
.product-order-wrap input{
  width: 20%;
  height: 45px;
  text-align: center;
  border-radius: 32px;
  border: 2px solid var(--secondary-color);
  background: var(--gray-color);
}

.product-order-wrap .PD-cart-btn{
  margin: 0 10px;
}
.product-order-wrap .PD-cart-btn a{
  padding: 9px 50px;  
}
.product-order-wrap .PD-cart-btn button{
  padding: 9px 50px;  
}
.product-order-wrap .PD-wishlist-btn a, .product-order-wrap .PD-wishlist-btn button{
  background: var(--secondary-color);
  border-radius: 100%;
  height: 45px;
  width: 45px;
  display: block;
  text-align: center;
  padding: 12px;
}
 .PD-wishlist-btn button{ border:none; }
.product-order-wrap .PD-wishlist-btn i{
  color: var(--primary-color);
}
.product-details-highlight{
  margin:30px 0 15px 0;
}
.highlight-title{
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray-tone);
  font-weight: 700;
  padding-bottom: 4px;
}
.product-details-highlight ul{
  list-style: disc;
  padding-left: 15px;
}
.product-details-highlight li{
  font-size: 14px;
  color: #545458;
  padding-bottom: 5px;
}
.product-details-highlight li::marker{
  color: #9a9a9a;
  font-size: 19px;
  line-height: 0;
}
/*------ Products Overview -----*/
#products-overview-wrap{
  background: var(--gray-color);
}
.product-full-specification .accordion-button{
  color: #383636;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .7px;
}
.product-full-specification .accordion-button:not(.collapsed) {  
  background-color: var(--primary-color);  
  box-shadow: none;
}
.product-full-specification  .accordion-button:focus{
    box-shadow: none;
}
.product-full-specification .accordion-body{
  padding-top: 5px;
}
.accordian-body-content h3{
  font-size: 16px;
  margin-bottom: 10px;
  color: #545458;
}
.accordian-body-content p{
  font-size: 14px;
  color: #545458;
  line-height: 25px;
}
.accordian-body-content ul{
  list-style: disc;
  padding-left: 15px;
  margin-bottom: 15px;
}
.accordian-body-content li{
  font-size: 14px;
  color: #545458;
}
.accordian-body-content li::marker{
  color: #9a9a9a;
  font-size: 19px;
  line-height: 0;
}
.accordian-body-content table {
  width: 100%;
  border-collapse: collapse;
}
.accordian-body-content th, .accordian-body-content td {
  padding: 7px 10px;
  text-align: left;
  font-size: 14px;
  color: #545458;
}
.accordian-body-content tr td:first-child {
  font-weight: 600;
  width: 20%;
}
.accordian-body-content tr:hover {
  background-color: #f1f1f1;
}
.related-products-wrap .product-card:hover .product-card-hover-btn {
    margin: 0 4em;
}

/*------cart page -----*/
.cart-count {
  position: absolute;
    top: 20px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    display: inline-flex;
    width: 1.3rem;
    height: 1.3rem;
    justify-content: center;
    align-items: center;
}

.cart-order-wrap {
  display: flex;
  align-items: center;
}

.cart-order-wrap input {
  width: 50%;
  height: 45px;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
  border-radius: 32px;
  border: 2px solid var(--secondary-color);
  background: var(--gray-color);
}
.cart-order-wrap .PD-wishlist-btn a, .cart-order-wrap .PD-wishlist-btn button {
  background: var(--secondary-color);
  border-radius: 100%;
  height: 45px;
  width: 45px;
  color: #fff;
  display: block;
  text-align: center;
  padding: 12px;
}
.cart1-tab {
  padding-bottom: 15px;
  justify-content: space-between;
  background: var(--primary-color);
}
.cart-tab{
  padding: 25px 20px;
  justify-content: space-between;
  background: var(--secondary-color);
  text-align: center;
  background: var(--gray-tone);
}
.item-check  a{
      background: var(--primary-color);
      color: var(--secondary-color);
      width: 20%;
      border-radius: 50px;
      padding: 12px;
      text-align: center;
      border: 2px solid var(--primary-color);
  }

.cart1-tab .item-value-check{
  text-align: right;
}
.item-value-check span {
    width: 10rem;
    display: inline-block;
    text-align: left;
    padding-left: .5rem;
}
.item-value-check h5 {
  font-size: 20px;
  margin: 15px 0;
}

.cart1-tab .item-check{
  text-align: right;
}
.cart-tab a{
  text-align: center;
  color: #ffffff;
  width: 100%;
  display: block;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.cart-btn{
  margin: 25px 0;
  text-align: center;
}
.cart-btn a{
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 20%;
  border-radius: 50px;
  padding: 12px;
  text-align: center;
  border: 2px solid var(--secondary-color);
  z-index: 1;
  overflow: hidden;
  position: relative;
}

/*------ Login or Register -----*/

.tabcontent {
  display: none;
}

.tab .tablinks {
  color: #ccc; /* You can style the active tab */
}

.tablinks.active {
  color: #000; /* You can style the active tab */
}

.col-25 {
-ms-flex: 25%; /* IE10 */
flex: 25%;
}

.col-50 {
-ms-flex: 50%; /* IE10 */
flex: 50%;
}

.col-75 {
-ms-flex: 75%; /* IE10 */
flex: 75%;
}

.col-25,
.col-50,
.col-75 {
padding: 0 16px;
}

input[type=text] {
width: 100%;
margin-bottom: 20px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 3px;
}
input[type=email] {
width: 100%;
margin-bottom: 20px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 3px;
}
input[type=tel] {
width: 100%;
margin-bottom: 20px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 3px;
}
input[type=password] {
width: 100%;
margin-bottom: 20px;
padding: 12px;
border: 1px solid #ccc;
border-radius: 3px;
}

label {
margin-bottom: 10px;
display: block;
}

.icon-container {
margin-bottom: 20px;
padding: 7px 0;
font-size: 24px;
}

.btn {
background-color: var(--secondary-color);
color: white;
padding: 12px;
margin: 10px 0;
border: none;
width: 100%;
border-radius: 3px;
cursor: pointer;
font-size: 17px;
}

.btn:hover {
background-color: #363636;
color: #fff;
}


hr {
border: 1px solid lightgrey;
}

span.price {
float: right;
color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (also change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
.row {
  flex-direction: column-reverse;
}
.col-25 {
  margin-bottom: 20px;
}
}

  



.navmenu>ul li.top-links ul.dropdown-menu li {
    --tw-translate-x: 20%;
    opacity: 0;
  transform: translateX(calc(var(--tw-translate-x) * 1));
  transition: transform 1s cubic-bezier(.075, .82, .165, 1), opacity 1s cubic-bezier(.19, 1, .22, 1);
  transition-delay: 0.2s;
}

/*.dropdown-menu li>:is(details, p) {
  padding-inline: var(--sp-8);
}*/

.navmenu .dropdown:hover ul.dropdown-menu li {
  --tw-translate-x: 0;
  opacity: 1;
  transition-delay: 1.2s;
    padding: 0 1.6rem;
}

.navmenu .dropdown:hover>ul.dropdown-menu li:first-child {
  transition-delay: 0.3s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(2) {
  transition-delay: 0.4s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(3) {
  transition-delay: 0.5s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(4) {
  transition-delay: 0.6s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(5) {
  transition-delay: 0.7s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(6) {
  transition-delay: 0.8s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(7) {
  transition-delay: 0.9s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(8) {
  transition-delay: 1s
}

.navmenu .dropdown:hover>ul.dropdown-menu li:nth-child(9) {
  transition-delay: 1.1s
}
.dropdown-menu a {
    line-height: 1.5;
    color: red;
}
.product-card:hover .soldoutbtn .button-outline {
    opacity: 1;
}
.soldoutbtn a{
    pointer-events: none;
    opacity: .4;
    cursor: not-allowed;
}
.product-card .soldoutbtn.product-card-hover-btn{
    display: block;
    position: absolute;
    top: 52%;
    margin: 0 5em;
    left: 0;
    right: 0;
}


/*******Product Slider*******/
.headersearchbar h5{
  font-size: 32px;
}
.btn-close{ background-image: none; opacity: 1; }
.btn-close:hover{ opacity: 1;}
.btn-close i{
    transition: transform .5s cubic-bezier(.3, 1, .3, 1), opacity .3s cubic-bezier(.7, 0, .3, 1);
    --tw-rotate: 0deg;
    transform: rotate(var(--tw-rotate));
    margin-left: 0;
}
.btn-close:hover i{
  --tw-rotate: 90deg;
  transform: rotate(var(--tw-rotate));
}
.offcanvas.headersearchbar{ width:35rem; }
.searchcategory h6{
    color: #17171780;
    border-block-end: 1px solid #1717170f;
    line-height: 1.25;
    letter-spacing: .1em;
    font-size: 0.75rem;
    padding-bottom: .4rem;
}
.searchdatalist li{
  margin: 0;
  padding:.2rem 0;
}
.searchdatalist li a{ font-weight: 500; }
.cartqty{ font-size: 14px; font-weight: 400; vertical-align: super; }
.cartcatelist li{
    margin: 0;
}
.cartlist ul li{ border-block-end: solid 1px #ebebeb; padding-bottom: 1.5rem; }
.cartlist ul li:last-child{ border-block-end: none; padding-bottom:0; }
.cartcatelist li a{
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--gray-color);
    transition: background-color .5s cubic-bezier(.3, 1, .3, 1);
    font-size: 17px;
}
.cartcatelist li svg{ width: 2rem; }
.cartcatelist li a i{ transition: transform .5s cubic-bezier(.3, 1, .3, 1); }
.cartcatelist li a:hover i{ transform:translate(calc(0.25rem * 1)); }
.cartcatelist li a:hover{ background: #f5f5f5; }
.horizontal-product__media {
    width: 6rem;
    background: var(--gray-color);
}
.horizontal-product__media img{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    transition: .5s cubic-bezier(.3, 1, .3, 1);
}
.horizontal-product__media:hover img {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}
.horizontal-product__details h4 a{ font-size: 1rem; }
.horizontal-product__details p{ font-size: .7rem; color:#17171780; }
.horizontal-product__quantity {
    margin-inline-start: auto;
    justify-items: end;
}
.horizontal-product__quantity .removelink{ font-size: .75rem; }
.horizontal-product__quantity .removelink:hover {
    background-position-x: right;
    background-size: 0 1px;
  
}
.horizontal-product__quantity .removelink{
    background-position-x: left;
    background-size: 100% 1px;
    transition: background-size .5s cubic-bezier(.3, 1, .3, 1), color .3s .5s cubic-bezier(.3, 1, .3, 1);
    background: linear-gradient(#000,#000) 0 min(100%,1.35em)/100% 1px no-repeat;
}
#qtynumber{
    background: var(--gray-color);
    border-radius: 4px;
    padding: 5px;
}
.qty-input{ width: 2rem; }
.qty-input:focus{ outline: none; }
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.rightcartfooter{ 
    background: #1717170b;
    /* height: 100%; 
    position: fixed;
    bottom: 0;*/
    width: 100%;
}
.cartlist{
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scrollbar-color: auto;
    scrollbar-width: thin;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 22rem;
}
.cartlistmain{
    height: 100%;
    width: 100%;
    align-content: normal;
    justify-content: normal;
}
.subtotalprice{ font-size: 1.3rem; font-weight: 800 !important; }
.discountprice{ font-size: 15px; }

.custom-alert {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1050; /* Ensure it's above other content */
  width: auto;
  max-width: 400px; /* Adjust the max width if needed */
  margin-bottom: 10px;
}


.product-card:hover .product-image-wrapper .sellerslist{ display: none;}
.product-card .product-image-wrapper .sellerhoverimg { 
  display: none; 
  margin: 25px;
  /* justify-content: center;
  align-items: center; */
  overflow: hidden;
  height: 250px;
 }
.product-image-wrapper figure.sellerslist{ height: 250px; }
.product-image-wrapper figure.sellerslist img{ width: auto !important; }
.product-card:hover .product-image-wrapper .sellerhoverimg{ display: block; }
.sellerhoverimg .owl-dots{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
 }
.sellerhoverimg .owl-dots button span{
  width: 6px;
  height: 6px;
  display: inline-block;
  background: #000;
  margin: 0 2px;
  border-radius: 50%;
  vertical-align: middle;
}
 .sellerhoverimg .owl-dots button.active span{
  width: 8px;
  height: 8px;
  display: inline-block;
  background: transparent;
  border: solid 2px #000;
  vertical-align: middle;
 }

 .blog h1 {
  font-size: 3.3em;
  font-weight: 700;
  margin-bottom:1em;
  line-height: 52px;
  color: var(--secondary-color);
  letter-spacing: -0.03em;
 }

 .blog h3 {
  color: #fff;
 }

 .bview img{
  width: 100%;
  height: 450px;
 }

 /*------ Products FAQ`s -----*/

/* Detail styling */
.details{
  padding: 30px 0;
  border-top: solid 1px #ececec;
  /* border: 1px solid #8d8d8d; */
  /* border-radius: 4px; */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
}

/* .details + .details{
  margin-top: 15px;
} */

.details__title{
  --width: 20px;
  --height: 1px;
  --radius: 1px;
  --color: currentColor;
  margin:0;
  color: #383636;
  font-size: 20px;
  /* text-transform: uppercase; */
  font-weight: 600;
  padding: var(--padding) calc(var(--width) * 2) var(--padding) var(--padding);
  cursor: pointer;
  transition: all .2s ease-in-out;
  position: relative;
}

.details__title:before,
.details__title:after{
  content:'';
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all .2s ease-in-out;
}

.details__title:after{
  rotate: 90deg;
}

.details__container[open] .details__title:before{
  rotate: 45deg;
  /* rotate: 135deg; */
}

.details__container[open] .details__title:after{
  rotate: 135deg;
  /* rotate: 225deg; */
}

.details__container[open] .details__title{
  margin-bottom: 15px;
}

.details__summary::marker{
  content:'';
}

.details__desc{
  visibility: hidden;
  display: grid;
  font-size: 14px;
  color: #545458;
  line-height: 25px;
  grid-template-rows: 0fr;
  transition: all .2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc{
  visibility: visible;
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner{
  min-height: 0;
}

/* #orderwhatsapp {
  font-size: 12px !important;
} */


/*! highlighted-text */
/* Set initial state of the path */
.highlighted-text .icon path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

/* When the element gets the 'animate' class, trigger animation */
.highlighted-text.animate .icon path {
  opacity: 1;
  animation: strokeAnimation 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards; /* Increased duration */
}

/* Animation for the path */
@keyframes strokeAnimation {
  0% {
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}


.highlighted-text[data-style=text] {
  transition: color var(--animation-smooth);
}

.highlighted-text.animate[data-style=text] {
  color: rgb(var(--color-highlight));
}

.highlighted-text:is([data-style=full_text], [data-style=half_text], [data-style=underline]) {
  background-repeat: no-repeat;
  background-image: linear-gradient(to var(--transform-origin-end), rgb(var(--color-highlight)) 0, rgb(var(--color-background)) 100%), linear-gradient(to var(--transform-origin-end), rgb(var(--color-highlight)) 0, rgb(var(--color-background)) 100%);
  transition: background-size var(--animation-smooth);
}

.highlighted-text.with-gradient:is([data-style=full_text], [data-style=half_text], [data-style=underline]) {
  background-image: var(--gradient-highlight);
}

.highlighted-text[data-style=full_text] {
  background-position: var(--transform-origin-start) 70%;
  background-size: 0 80%;
}

.highlighted-text.animate[data-style=full_text] {
  background-size: 100% 80%;
}

.highlighted-text[data-style=half_text] {
  background-position: var(--transform-origin-start) 90%;
  background-size: 0 28%;
}

.highlighted-text.animate[data-style=half_text] {
  background-size: 100% 28%;
}

.highlighted-text[data-style=underline] {
  background-size: 0 3px, 0% 80%;
  background-position: var(--transform-origin-start) 90%, var(--transform-origin-start) 50%;
}

.highlighted-text.animate[data-style=underline] {
  background-size: 100% 3px, 0% 80%;
}

.highlighted-text[data-style=stencil] {
  -webkit-text-stroke: var(--stencil-stroke-width, 0.02em) currentColor;
  -webkit-text-fill-color: transparent;
}
.product-card-hover-btn a.orderbtn{ padding: 12px;}
.product-card:hover .product-card-hover-btn.orderbtnmain{ margin: 0 3rem; }
.product-title-price{ min-height: 70px;}
.product-order-wrap .PD-cart-btn a.orderbtn{ padding: 9px 40px; }
.request-form-modal input[type=text], .request-form-modal input[type=email]{ margin-bottom: 10px;}
.request-form-modal label{ margin-bottom: .3rem;}
.form-floating .form-control:focus{ box-shadow: none; border: #000 solid 1px; }
.form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after{ background: transparent;}
.contactinfo{ padding:20px; border:solid 1px #ccc; }
.contactinfo p.subtitle{ color: #17171780; }
.contactinfo div p{ font-size: 20px; }

    /* Table Styles */
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
  }

  table th,
  table td {
      padding: 10px;
      text-align: left;
      vertical-align: top;
      border: 1px solid #ddd;
  }

  table th {
      font-weight: bold; /* Make table headings bold */
      background-color: #f2f2f2;
  }

  table td {
      font-size: 14px;
  }

  table tr:nth-child(even) {
      background-color: #f9f9f9;
  }

  table tr:hover {
      background-color: #f1f1f1;
  }