*{
    margin:0;
    padding:0;
	  border:0px solid red;
    box-sizing:border-box;
	  font-family: "Marcellus", sans-serif;
  
}
body {
  margin: 0;
  width: 100%;
  height: 100%;  
}
html{
    scroll-behavior:smooth;
}

.swal-footer {
  text-align: center !important;
}
.coupon-box input{
  outline: none;
  border-radius: 0;
}
.coupon-box input:active{
  border: 1px solid #000;
}
.coupon-box button {
  border-radius: 0;
}
:root{
  --primary: red;
    --black: #000;
    --white: #fff;
	--gray: #E6E7E9;
    --light-gray: #eee;
	--gray-dark: #666;
	--text-dark: #111;
   --light-yellow: #ffd580; 
  --dark-yellow: #995c00; 
  --yellow: #ffc107;
  --golden:#d39b3e;
	--shadow-dark: rgba(0,0,0,0.2);
--white-glass: rgba(255, 255, 255, 0.45);
}


.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px ();
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: #A61717;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 20px;
  cursor: pointer;
  max-width: 250px;
}

.icon {
  width: 29px;
  height: 29px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  border-color: #fff;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}




a{
    text-decoration:none;
    color: var(--black);
    overflow: hidden !important;
}


.header-desktop { display: block; position: relative;}
.header-mobile  { display: none; }







.search-icon{
  cursor: pointer;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  z-index: 999;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
 background: var(--white);
  padding: 25px 30px;
  transition: .45s ease;
  z-index: 9999;
}

.search-panel.active {
  right: 0;
}
/* HEADER */
.search-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.search-header h5{
  font-size:15px;
  font-weight:500;
}

.search-close{
  font-size:20px;
  cursor:pointer;
}


.search-body{
  overflow-y:auto;
  max-height:calc(100vh);
}


.search-field{
  width:100%;
  padding:12px 14px;
  border: 1px solid var(--light-gray);
  font-size:13px;
  margin-bottom:10px;
}

/* SEARCH ITEM */
.search-item{
  display:flex;
  gap:12px;
  padding:12px;
  border:1px solid var(--white);
  margin-bottom:12px;
}

/* IMAGE FIX (ADVANCED) */
.search-item img{
  width:70px;
  height:90px;
  object-fit:cover;
  flex-shrink:0;
}

/* INFO */
.search-item-info h6{
  font-size:13px;
  margin-bottom:4px;
}

.search-item-info span{
  display:block;
  font-size:11px;
  color: var(--gray-dark);

  margin-bottom:2px;
}

/* BOTTOM */
.search-item-bottom{
  margin-top:6px;
}

.search-item-bottom strong{
  font-size:13px;
}

.desk-logo {
  height: 50px;
}
.menu-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 15px 0;
}

.menu-list li {
  cursor: pointer;
  font-size: 14px;
}


.mega-menu {
  position: absolute;
  top: 90%;
  left: 50%;                 
  width: 100%;            
  background: var(--white);
  transform: translate(-50%, 10px); /* bottom se start */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-in-out,
              transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 9999;
}

.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  padding: 25px 15px;
}

.mega-left {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-column a {
  display: block;         
  font-size: 13px;
  color: var(--text-dark);     
  margin-bottom: 10px;
  text-decoration: none;
  position: relative;
  width: fit-content;     
}

.mega-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--text-dark); 
  transition: width 0.35s ease;
}

.mega-column a:hover::after {
  width: 100%;
}

.view-all {
  font-weight: 600;
  margin-top: 15px;
}

.mega-right {
  width: 30%;
  text-align: center;
}

.mega-head h4, .mega-right h4 {
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: bolder;
}

.mega-right .hero-slider-mega{
  position: relative;
}
.mega-right .hero-slider-mega .hero-mega-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.mega-right .hero-slider-mega .carousel-caption{
  font-weight: bolder;
}
.mega-right .hero-slider-mega img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 5px 20px var(--shadow-dark); 
  transition: transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(90%);
}
.mega-right .hero-slider-mega .hero-mega-image:hover img {
  transform: scale(1.2); 
  transition: transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.mega-right .hero-slider-mega .owl-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:14px;
}


.mega-right .hero-slider-mega .owl-dot span{
  width:40px;
  height:2px;
  background:rgba(255,255,255,0.4);
  display:block;
  transition:.3s ease;
}


.mega-right .hero-slider-mega .owl-dot.active span{
  background: var(--white);

}
/* OWL NAV */
.mega-right .hero-slider-mega .owl-nav{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  transform:translateY(-50%);
  display:block; /* flex hatao */
  opacity:0;
  transition:.4s ease;
  pointer-events:none; 
  z-index: 20;
}

.mega-right .hero-slider-mega:hover .owl-nav{
  opacity:1;
  pointer-events:auto;
  z-index: 99;
}
.mega-right .hero-slider-mega .owl-nav button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  background:#fff !important;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.mega-right .hero-slider-mega .owl-nav .owl-prev{
  left:-1px;
}

.mega-right .hero-slider-mega .owl-nav .owl-next{
  right:-1px;
}


	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////      sign      ///////////
  /////     in         ///////////
  ////                ///////////
  ///////////////////////////////
  */




.signin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9998;
}

.signin-overlay.active {
  opacity: 1;
  visibility: visible;
}


.signin-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  padding: 25px 30px;
  transition: 0.45s ease;
  z-index: 9999;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.signin-panel.active {
  right: 0;
}


.signin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 border-bottom: 1px solid var(--light-gray);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.signin-header h5 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.signin-close {
  font-size: 22px;
  cursor: pointer;
 color: var(--gray-dark);

}

.signin-close:hover {
 color: var(--black);

}


.signin-form input[type="text"],
.signin-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid var(--light-gray);

  font-size: 14px;
}

.signin-form input:focus {
  outline: none;
  border-color: var(--black);
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* REMEMBER */
.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}


.btn-signin {
  width: 100%;
  padding: 12px;
  border: none;
 background: var(--black);
color: var(--white);
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 12px;
}



.btn-outline {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 20px;
}

.btn-outline:hover {
background: var(--black);
color: var(--white);

}


.lost-password {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--gray-dark);
  text-decoration: none;
}

.lost-password:hover {
  text-decoration: underline;
}



	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////   register     ///////////
  /////     psnel      ///////////
  ////                ///////////
  ///////////////////////////////
  */






.register-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  z-index: 999;
}

.register-overlay.active {
  opacity: 1;
  visibility: visible;
}

.register-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  padding: 25px 30px;
  transition: .45s ease;
  z-index: 9999;
  box-shadow: -5px 0 25px rgba(0,0,0,.15);
}

.register-panel.active {
  right: 0;
}

.register-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.register-header h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.register-close {
  font-size: 22px;
  cursor: pointer;
  color: var(--gray-dark);
}

.register-close:hover {
  color: var(--black);
}

.register-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid var(--light-gray);
  font-size: 14px;
}

.register-form input:focus {
  outline: none;
  border-color: var(--black);
}


	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////      cart      ///////////
  /////     psnel      ///////////
  ////                ///////////
  ///////////////////////////////
  */


.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  z-index: 9998;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: var(--white);
  padding: 25px;
  transition: .45s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

.cart-panel.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-close {
  font-size: 24px;
  cursor: pointer;
}

.cart-body {
  flex: 1;
  font-size: 13px;
  color: var(--gray-dark);

}

.cart-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--light-gray);
  padding: 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-cart {
  width: 100%;
  padding: 14px;
  background: var(--black);
color: var(--white);
  border: none;
  margin-bottom: 10px;
}

.btn-cart-outline {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--black);

}
/* CART ITEM */
.cart-item {
  display: flex;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.cart-item img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--light-gray);

}

.cart-item-info {
  flex: 1;
  font-size: 13px;
}

.cart-item-info h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
}

.cart-item-info span {
  display: block;
  font-size: 12px;
  color: var(--dark-gray);
  margin-bottom: 3px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.cart-qty {
  display: flex;
  align-items: center;
 border: 1px solid var(--border-gray);
}

.cart-qty button {
  width: 26px;
  height: 26px;
  border: none;
  background: none;
  cursor: pointer;
}

.cart-qty span {
  padding: 0 8px;
  font-size: 13px;
}
.non-top .cart-remove {
  top: 50%;
  right: 10px;
  color: #000;
  transform: translate(0, -50%);
}
.cart-remove {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 16px;
 color: var(--gray-dark);
}

.cart-remove:hover {
  color: var(--black);
}



	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////  Scroll header ///////////
  /////                ///////////
  ///////////////////////////////
  */

.scroll-header {
  position: fixed;         
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  z-index: 9997;

  transform: translateY(-100%);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}


.scroll-header.show {
  transform: translateY(0);
}



.scroll-header .scroll-desk-logo  {
  display: flex;
  justify-content: start !important;
}
.scroll-header .desk-logo {
  height: 45px;
  object-fit: contain;
}


.scroll-header .menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}


.scroll-header .menu-list li {
  font-size: 13px;
}
	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////    HERO Sec    ///////////
  /////                ///////////
  ///////////////////////////////
  */

.hero-item{
    height:100vh;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:850px;
    margin:auto;
}

.hero-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(50px);
    color: #fff;
}

.hero-subtitle{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
    opacity:0;
    transform:translateY(50px);
    color: #d4d2d2;
}
.hero-btn {
  transition:.3s;
  opacity:0;
  transform:translateY(50px);
  font-size: 15px !important;
  max-width: 200px !important;
}  


.hero-btn .icon {
  width: 25px !important;
  height: 25px !important;
  transition: all 0.3s ease-in-out;
}


.owl-item.active .hero-title{
    animation:fadeUp .8s ease forwards;
}

.owl-item.active .hero-subtitle{
    animation:fadeUp .8s .25s ease forwards;
}

.owl-item.active .hero-btn{
    animation:fadeUp .8s .45s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@media(max-width:991px){

    .hero-item{
        height:650px;
    }

    .hero-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-item{
        height:550px;
    }

    .hero-title{
        font-size:30px;
    }

    .hero-subtitle{
        font-size:16px;
    }

}

.hero-slider .owl-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:14px;
}


.hero-slider .owl-dot span{
  width:40px;
  height:2px;
  background:rgba(255,255,255,0.4);
  display:block;
  transition:.3s ease;
}


.hero-slider .owl-dot.active span{
  background: var(--white);

}


.product-slider-full .owl-dots{
  display:flex;
  justify-content:center;
  align-items: center;
  margin-top: 10px;
  gap:14px;
}


.product-slider-full .owl-dot span{
  width:40px;
  height:2px;
  background:#ddd;
  display:block;
  transition:.3s ease;
}


.product-slider-full .owl-dot.active span{
  background: var(--black);

}

.arrival-tabs{
  display:flex;
  justify-content:center;
  list-style:none;
  margin-top:40px;
  gap: 15px;
}

.arrival-tabs li{
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--gray);
  font-size: 13px;
  cursor: pointer;
}

.arrival-tabs .active{
  background: var(--black);
  color: var(--white);
}
/* CARD */
.product-card{
  position:relative;
  overflow:hidden;
  background: var(--white);
  border: 1px solid #ddd;
}

/* SLIDER */
.product-slide-image,
.product-main-image{
  position:relative;
  height: 350px;
  overflow: hidden;
}
.product-slide-image .discount-detail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 5;
  pointer-events:none;
}


.discount-circle{
  width:42px;
  height:42px;
  padding: 5px !important;
  border-radius:50%;
  background:#dc3545;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  font-weight:600;
}

.discount-tag{
  background:#0dcaf0;
  color:#fff;
  padding:4px 10px;
  font-size:11px;
  border-radius:20px;
  font-weight:500;
}
.product-slide-image img,
.product-main-image img{
  height:100%;
  width:100%;
  object-fit:contain !important;
  transition: transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-slide-image img,
.product-card:hover .product-main-image img{
  transform: scale(1.1);
  transition: transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
/* OWL NAV */
.product-card .owl-nav{
  position:absolute;
  top:50%;
  left:0;
  width:100%;
  transform:translateY(-50%);
  display:block; /* flex hatao */
  opacity:0;
  transition:.4s ease;
  pointer-events:none; 
  z-index: 20;
}

.product-card:hover .owl-nav{
  opacity:1;
  pointer-events:auto;
  z-index: 99;
}
.product-card .owl-nav button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  background:#fff !important;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.product-card .owl-nav .owl-prev{
  left:0px;
  z-index: 99;
}

.product-card .owl-nav .owl-next{
  right:0px;
  z-index: 99;
}


.product-info{
    border-top: 1px solid #ddd;
  padding:16px;
  background: var(--white);
  text-align: left;
  padding: 12px 6px;
}



.product-name{
    font-size:13px;
    margin-bottom:4px;
    line-height:1.5;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    overflow:hidden;
    text-overflow:ellipsis;
}

.product-designer{
  font-size:12px;
    color: var(--gray-dark);
}

.product-price{
  font-size:13px;
  font-weight:500;
  margin-top: 0;
}


.hover-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
  opacity:1;
}



.add-cart{
  font-size:12px;
  letter-spacing:1px;
  cursor:pointer;
}

.hover-actions i{
  font-size:16px;
  cursor:pointer;
}


.btn-view{

  background-color: var(--black);
  color: var(--white);
  padding: 10px 20px;
}






.brand-tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid var(--light-gray);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.brand-tabs {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
}

.brand-tabs li {
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--gray);
  font-size: 13px;
  cursor: pointer;
}

.brand-tabs li.active {
  background: var(--black);
  color: var(--white);
}

.brand-tabs {
  scrollbar-width: none; 
}


.tab-arrow {
  text-align: center;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--gray-dark);
  padding: 6px;
  border-radius: 50%;
  transition: background-color 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card img {
  width: 100%;
  display: block;
   object-fit: contain;
}




	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////      luxury    ///////////
  /////     product    ///////////
  ////                ///////////
  ///////////////////////////////
  */






.luxury-slider {
    margin: 20px auto;
}
.luxury-card{
    text-align: center;
    padding: 5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.luxury-card:hover{
    border:1px solid var(--gray-dark);
    box-shadow:10px 12px 30px rgba(0,0,0,.1);
}


.luxury-img{
    overflow: hidden;
}

/* IMAGE */
.luxury-img img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

/* HOVER */
.luxury-card:hover img{
    transform: scale(1.03);
}

/* TEXT */
.luxury-card h3{
    margin-top: 15px;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

.luxury-card p{
    font-size: 16px;
    color: var(--gray-dark);
    margin-top: 5px;
}




	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////      Sale      ///////////
  /////     Panel      ///////////
  ////                ///////////
  ///////////////////////////////
  */

.cat-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 6px 10px rgba(0,0,0,0.08);
    background: rgba(0, 0, 0, 0.15);
}

.cat-card img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: top center;
  transition: transform .6s ease;
  overflow: hidden;
}

.cat-card:hover img {
  transform: scale(1.1);
}



.cat-card.tall{ height:360px;}
.cat-card.tall img{ 
  border-radius: 16px; }
.cat-card.center{ height:470px; }
.cat-card.small{ height:220px; }
.cat-card.med{ height:220px; }


.cat-title{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    background: var(--white-glass);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    text-align:center;
    padding:12px 0;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
}


	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////     Filter     ///////////
  /////       Bar      ///////////
  ////                ///////////
  ///////////////////////////////
  */




.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.filter-box {
    position: relative;
}

.filter-btn {
    min-width: 160px;
    padding: 12px 14px;
    border: 1px solid var(--gray);
    background: var(--white);
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-btn.active {
    border-color: var(--black);
}

.arrow {
    font-size: 12px;
    transition: transform 0.2s;
}

.filter-btn.active .arrow {
    transform: rotate(180deg);
}

/* DROPDOWN */
.filter-dropdown {
    position: absolute;
    top: 105%;
    left: 0;
    width: 260px;
    max-height: 260px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--gray);
    padding: 12px;
    display: none;
    z-index: 99;
}

.filter-dropdown label {
    display: flex;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
}

.save-btn {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 13px;
    cursor: pointer;
}





.product-info h6 {
font-size: 14px;
margin-bottom: 4px;
color: var(--text-dark);
}

.product-info p {
font-size: 13px;
color: var(--gray-dark);
margin-bottom: 4px;
}

.product-info span {
font-size: 13px;
font-weight: 600;
}


.page-link {
color: var(--text-dark);
border: none;
}

.page-item.active .page-link {
background: var(--black);
color: var(--white);
}



.next:hover {
 background: var(--black);
color: var(--white);

}

.alphabet-bar a {
font-size: 13px;
margin: 0 8px;
}

.brand-section {
    margin-bottom: 45px;
}


.brand-letter {
    font-weight: 600;
    padding-bottom: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--gray);
  }


  .brand-item {
    margin-bottom: 10px;
    cursor: pointer;
  }

  .container {
    max-width: 1200px;
  }
  
  
  
  
  .filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:30px 0 15px;
}

.filter-box{
  position:relative;
}

.filter-btn{
  border:1px solid var(--gray);
  padding:8px 14px;
  font-size:13px;
  background:var(--white);
  cursor:pointer;
  min-width:140px;
  text-align:left;
}

.filter-btn::after{
  content:"▾";
  float:right;
}


.filter-dropdown{
  position:absolute;
  top:110%;
  left:0;
  width:260px;
   background:var(--white);
border: 1px solid var(--light-gray);
  padding:12px;
  display:none;
  z-index:1000;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  max-height:260px;
  overflow-y:auto;
}

.filter-box.active .filter-dropdown{
  display:block;
  animation:fadeDown .25s ease;
}

.filter-dropdown label{
  display:flex;
  gap:8px;
  font-size:13px;
  margin-bottom:8px;
  cursor:pointer;
}



/* SAVE BUTTON */
.filter-save{
  width:100%;
  margin-top:10px;
  padding:8px;
border: 1px solid var(--black);
background: var(--white);

  font-size:13px;
  cursor:pointer;
}

.filter-save:hover{
  background:var(--black);
  color:var(--white);
}

/* ================= PRODUCT COUNT ================= */
.product-count{
  font-size:13px;
color: var(--gray-dark);
  margin-bottom:25px;
}

/* ================= GRID ================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* ================= PRODUCT CARD ================= */
.card{
  position:relative;
}

.card img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.8s ease;
}

.card:hover img{
  transform:scale(1.06);
}


.tag{
  position:absolute;
  top:10px;
  left:10px;
  background:var(--golden);
  color:var(--white);
  font-size:11px;
  padding:4px 6px;
}


.info{
  text-align:center;
  margin-top:12px;
}

.info h6{
  font-size:14px;
  font-weight:500;
}

.info p{
  font-size:13px;
  color:var(--gray-dark);
  margin:4px 0;
}

.info span{
  font-size:14px;
  font-weight:500;
}

	
	
	
	



	/*
	////////////////////////////////////////
  ///////////////////////////////////////
	///////                    ///////////
  //////    Grid on Home    ///////////
  /////                    ///////////
  ///////////////////////////////////
  */
.bento-section {
  padding: 80px 0;
  background: var(--white);
}

/* Title */
.bento-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

/* Item */
.bento-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Image */
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
}

/* Hover Zoom */
.bento-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent 60%);
  color: var(--white);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .4s ease;
}

.bento-item:hover .bento-overlay {
  opacity: 1;
}

.bento-overlay h4 {
  font-size: 26px;
  font-weight: bolder;
  color:var(--white);
}

.bento-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Sizes */
.bento-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-item.wide {
  grid-column: span 2;
}










	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////      Product   ///////////
  /////        page    ///////////
  ////                ///////////
  ///////////////////////////////
  */







.product-image-frame {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-zoom-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    cursor: pointer;
}





.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.main-product-image {
    width: 100%;
    transition: transform 0.1s ease;
    transform-origin: center;
}


.product-thumb img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--white);
}


.product-title {
    font-size: 28px;
    font-weight: 500;
}

.product-price {
    font-size: 22px;
    margin-top: 10px;
}

.size-btn {
    border: 1px solid var(--gray);
    background: transparent;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
}

.size-btn:hover {
    border-color: var(--black);
}


.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--gray);
    background: transparent;
}


.add-to-cart {
    padding: 14px;
    letter-spacing: 1px;
}


.section-title {
    font-size: 20px;
    font-weight: 500;
}













	/*
	////////////////////////////////////
  ///////////////////////////////////
	///////                ///////////
  //////    Dashboard    ///////////
  /////                ///////////
  ///////////////////////////////
  */



.account-page {
  padding: 70px 0;
}

.account-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;

}

.account-wrapper {
  display: flex;
  gap: 50px;
}
	/*
	///////////////////////////////
  ////////////////////////////////
	///////             ///////////
  //////    Sidebar   ////////////
  //////              ///////////
  ///////////////////////////////
  */
.account-sidebar {
  width: 260px;
}

.account-sidebar ul {
  list-style: none;
  padding: 0;
}

.account-sidebar li {
  border-bottom: 1px solid var(--gray);
}

.account-sidebar a {
  display: block;
  padding: 14px 0;
  font-size: 14px;
}

.account-sidebar li.active a {
  font-weight: 600;
  border-left: 2px solid var(--black);
  padding-left: 10px;
}

/* CONTENT */
.account-content {
  flex: 1;
}

	/*
	///////////////////////////////
  ////////////////////////////////
	///////             ///////////
  //////    ORDER    ////////////
  //////              ///////////
  ///////////////////////////////
  */
.order-card {
  
  padding: 25px;
  margin-bottom: 30px;
}

/* HEADER */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 15px;
}

.order-header h6 {
  font-size: 15px;
  margin-bottom: 4px;
}

.order-header span {
  font-size: 12px;
  color: var(--gray-dark);
}

/* STATUS */
.order-status {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
}

.order-status.delivered {
  background: var(--black);
  color: var(--white);
}

/* BODY */
.order-body {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
}

.order-product {
  display: flex;
  gap: 18px;
}

.order-product img {
  width: 90px;
  height: 120px;
  object-fit: cover;
  border: 1px solid var(--white);
}

.order-product-info .name {
  font-size: 14px;
  font-weight: 500;
}

.order-product-info .designer {
  font-size: 13px;
  color: var(--gray-dark);
}

.order-product-info .meta {
  font-size: 12px;
  color: var(--gray-dark);
}


.order-summary {
  min-width: 220px;
}

.order-summary p {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.order-summary .total {
  font-size: 14px;
  margin-top: 10px;
  border-top: 1px solid var(--gray);
  padding-top: 10px;
}


.btn-outline-sm {
  padding: 10px 22px;
  border: 1px solid var(--black);
  font-size: 13px;
}







.account-menu .list-group-item {
  background-color: var(--white);
  border: none;
  font-weight: 500;
  color: var(--gray-dark);
}

.account-menu .list-group-item.active {
  font-weight: 700;
  border-left: 3px solid var(--black);
  color: var(--black) !important;
  background-color: var(--white);
}

.account-menu .list-group-item a {
  color: var(--gray-dark);
  text-decoration: none;
}

.account-menu .list-group-item a:hover {
  color: var(--black);
  text-decoration: none;
}

.alert-warning {
  background-color: var(--light-yellow) !important; 
  color: var(--dark-yellow) !important; 
  border-color: var(--yellow) !important;
}

.btn-dark {
  background-color: var(--black) !important;
  border-color: var(--black) !important;
  color: var(--white) !important;
}

.btn-dark:hover {
  background-color: var(--gray-dark) !important;
  border-color: var(--gray-dark) !important;
  color: var(--white) !important;
}

.card {
  border: 1px solid var(--light-gray);
  border-radius: 0.25rem;
  background-color: var(--white);
}

h1, h4, h6 {
  color: var(--black);
}

.text-muted {
  color: var(--gray-dark) !important;
}

.btn-add {
    background-color: var(--black);
    color:var(--white);
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-add:hover {
    background-color: var(--gray-dark);
    color: var(--white);
}
.section-header {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.note-text {
    color: var(--gray);
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
}
.optional {
    font-weight: normal;
    font-size: 0.85rem;
    color: var(--gray-dark);
}
.btn-save {
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 12px;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.btn-save:hover {
    background-color: var(--gray-dark);
}

	
	
		/*
	///////////////////////////////////
  //////////////////////////////////
	///////               ///////////
  //////   Checkout    ////////////
  //////              /////////////
  ///////////////////////////////
  */
	
.checkout-title {
    font-size: 50px;
    font-weight: 400;
    color: var(--text-dark);
}

.checkout-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.checkout-page label {
    color: var(--text-dark);
}

.checkout-page .form-control {
    border: 1px solid var(--gray);
    border-radius: 0;
}

.checkout-page .form-control:focus {
    box-shadow: none;
    border-color: var(--black);
}

#save{
  border-radius: 0;
}
	
	
	
	
	
	/*
	///////////////////////////////
  ////////////////////////////////
	///////             ///////////
  //////    FOOTER    ////////////
  //////              ///////////
  ///////////////////////////////
  */
/* ===== ZF FOOTER ===== */
.zf-footer {
  background: var(--white);
  color: var(--gray-dark);
  font-size: 15px;
}

.zf-footer-top {
  padding: 50px 0;
}

.zf-footer .footer-head {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight:bold;
}
/* ===== Footer Link Underline Animation ===== */
.zf-footer a {
  position: relative;
  text-decoration: none;
}

/* underline */
.zf-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: currentColor;

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* hover */
.zf-footer a:hover::after {
  transform: scaleX(1);
}

/* About */
.zf-footer-about p {
  line-height: 1.8;
}

/* Social */
.zf-social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.zf-social-icons li a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Links */
.zf-footer-links ul {
  list-style: none;
  padding: 0;
}

.zf-footer-links li {
  margin-bottom: 10px;
  padding:5px 0;
}

.zf-footer-links a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Contact */
.zf-footer-contact p {
  line-height: 1.8;
}

/* Bottom */
.zf-footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 25px 0;
  font-size: 14px;
}

.zf-footer-payments img {
  height: 22px;
  margin-left: 8px;
}

.zf-footer-copy a {
  color: var(--text-dark);
  font-weight: 500;
}

	
	
	
	
	/*
	//////////////////////////////////////
  //////////////////////////////////////
	/////////                 ///////////
  ////////   contact       ////////////
  ///////                 ////////////
  ////////////////////////////////////
  */



.prod-head {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 10px;
}

#top-ban .row {
  font-size: 13px;
  color: var(--gray-dark);
}

/* SECTION HEADINGS */
.contact-header {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--black);
  text-transform: uppercase;
}

/* LEFT INFO */
.get-in .adress {
  margin-bottom: 22px;
}

.adress-head {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.adress p {
  font-size: 13px;
  color: var(--gray-dark);
  margin-bottom: 3px;
}

/* SOCIAL ICONS */
.social-contact {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

.social-contact i {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.social-contact i:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* RIGHT FORM */
.contact-form {
  background: var(--white);
}

/* INPUTS */
.contact-form .form-control {
  border-radius: 0;
  border: 1px solid var(--gray);
  font-size: 13px;
  padding: 12px 14px;
}

.contact-form .form-control:focus {
  border-color: var(--black);
  box-shadow: none;
}

/* SUBMIT BUTTON */
.submit {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 14px 38px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.submit:hover {
  background: var(--gray-dark);
  color: var(--white);
}

/* BORDER CLEANUP */
.contact-form .row.border {
  border-color: var(--light-gray) !important;
}
	
	
	/*
	//////////////////////////////////////
  //////////////////////////////////////
	/////////                 ///////////
  ////////   RESPONSIVVE   ////////////
  ///////                 ////////////
  ////////////////////////////////////
  *//* ===============================
   MOBILE + TABLET (≤ 991px)
================================ */

@media (max-width: 991px) {

  .header-desktop { display: none; }
  .scroll-header{display:none;}
  .header-mobile  { display: block; }
#cat{
  display:flex !important;
}

.mobile-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

/* LEFT (Hamburger) */
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* CENTER (Logo) */
.mobile-logo {
  height: 36px;
  max-width: 120px;
  object-fit: contain;
}

/* RIGHT (Icons) */
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-actions i {
  cursor: pointer;
}

/* SEARCH ICON FIX */
.search-wrapper {
  display: flex;
  align-items: center;
}


  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background: var(--white);
    transition: right .3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 1000;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* ===== HEADER ===== */

  .mobile-menu-header {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--light-gray);
  }

  .close-menu {
    font-size: 22px;
    cursor: pointer;
  }

  /* ===== TABS ===== */

  .mobile-tabs {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
  }

  .mobile-tabs button {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
  }

  .mobile-tabs button.active {
    border-bottom: 2px solid var(--black);
  }

  /* ===== TAB CONTENT ===== */

  .tab-content {
    display: none;
    padding: 15px;
  }

  .tab-content.active {
    display: block;
  }

  /* ===== LIST ===== */

  .mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-dark);
    cursor: pointer;
  }

  /* ===== SUB MENU ===== */

  .has-sub {
    position: relative;
  }

  .has-sub::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 12px;
    font-weight: bold;
  }

  .has-sub.open::after {
    content: '−';
  }

  .sub-list {
    display: none;
    padding-left: 15px;
  }

  .has-sub.open > .sub-list {
    display: block;
  }

  .sub-list li {
    font-size: 14px;
    color: var(--gray-dark);
  }

  /* ===== VIEW ALL ===== */

  .view-all {
    font-weight: bold;
    color: var(--black);
  }

.product-slider img{
  height:350px;
  width:100%;
  object-fit:cover;
  transition:transform .8s ease;
}


 .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.big,
  .bento-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

.header-desktop {
     display: none; 
    }
.scroll-header{
    display:none;
  }
.header-mobile  {
     display: block; 
    }
#cat{
  display:flex;
}
.arrival-tabs{
  display:flex;
  justify-content:center;
  gap:40px;
  list-style:none;
  margin-top:40px;
}

.arrival-tabs li{
  font-size:11px;
  cursor:pointer;
}
.product-slider img{
  height:300px;
  width:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.luxury-img img{
    height: 300px;

}
}


.pin-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  will-change: transform;
}

canvas {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  will-change: transform;
}

canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
  filter: brightness(90%) !important;
}
/* ===== Scroll-pin wrapper ===== */
.pin-wrapper {
  position: relative;
  /* scroll room: number of images * viewport height.
     Zyada scroll distance chahiye ho to multiplier badha dena (e.g. * 1.5) */
  height: 400vh;
}

/* testimonial */

.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--primary);
    border-top: none;
    color: var(--gray);
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--black);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 0%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    transition: 0.5s;
}
/*** Testimonial End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--black);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--black);
    transform: rotate(45deg);
    z-index: 2;
}
/*** Banner End ***/







/* 
**************************
***** / page title / *****
**************************
 */
.page-title {
    position: relative;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../media/banner-bg.jpeg");
    background-size: cover;
    background-position: center center;
    /*filter: blur(4px); */
    z-index: -1;
}

.page-title .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title .entry-header {
    text-align: center;
}

.page-title .entry-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.page-title .breadcrumbs {
    font-family: "Lato", sans-serif;
    font-size: 18px;
    color: var(--white);
}

.page-title .breadcrumbs a {
    color: var(--white);
    text-decoration: none;
}

.page-title .breadcrumbs .current {
    color: var(--whit);
}

.page-title .breadcrumbs .next-page {
    color: var(--gray);
    cursor: pointer;
}
.page-title .breadcrumbs .next-page:hover {
    color: var(--white);
}









/* ===========================
   RESPONSIVE
=========================== */

/* Large Devices */
@media (max-width: 1199px) {


    .product-slide-image,
    .product-main-image{
        height:300px;
    }
    .product-slide-image img,
    .product-main-image img{
      height:100%;
      width:100%;
      object-fit:contain !important;
    }
}

/* Tablets */
@media (max-width: 991px){

    .product-slide-image,
    .product-main-image{
        height:300px;
    }
    .product-slide-image img,
    .product-main-image img{
      height:100%;
      width:100%;
      object-fit:contain !important;
    }

    .product-name{
        font-size:14px;
    }

    .product-price{
        font-size:14px;
    }

    .product-designer{
        font-size:13px;
    }

}

/* Mobile */
@media (max-width: 767px){

    .product-slide-image,
    .product-main-image{
        height:300px;
    }
    .product-slide-image img,
    .product-main-image img{
      height:100%;
      width:100%;
      object-fit:contain !important;
    }

    .product-info{
        padding:10px;
    }

    .hover-actions{
        opacity:1;
        transform:none;
        margin-top:10px;
    }

  
    .product-name{
        font-size:13px;
    }

    .product-price{
        font-size:13px;
    }

    .discount-circle{
        width:36px;
        height:36px;
        font-size:9px;
    }

    .discount-tag{
        font-size:10px;
        padding:3px 8px;
    }

    .btn-view{
        padding:8px 16px;
        font-size:13px;
    }

    .brand-tabs-wrapper{
        gap:5px;
    }

    .brand-tabs li{
        font-size:12px;
        padding:7px 14px;
    }

    .tab-arrow{
        display:flex;
    }

}

/* Small Mobile */
@media (max-width: 575px){


    .product-slide-image,
    .product-main-image{
        height:200px;
    }
    .product-slide-image img,
    .product-main-image img{
      height:100%;
      width:100%;
      object-fit:contain !important;
    }

    .product-info{
        padding:8px;
    }

    .product-name{
        font-size:12px;
    }

    .product-designer{
        font-size:11px;
    }

    .product-price{
        font-size:12px;
    }

    .add-cart{
        font-size:11px;
    }

    .hover-actions i{
        font-size:14px;
    }

    .discount-circle{
        width:32px;
        height:32px;
        font-size:8px;
    }

    .discount-tag{
        font-size:9px;
        padding:2px 7px;
    }

}

/* Extra Small */
@media (max-width: 400px){


    .product-slide-image,
    .product-main-image{
        height:200px;
    }
    .product-slide-image img,
    .product-main-image img{
      height:100%;
      width:100%;
      object-fit:contain !important;
    }

}


.hero-content-text{
    max-width:1100px;
    margin:0 auto;
    padding:40px 15px;
}

.hero-subtitle-text{
    color:#A61717;
    font-size:20px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}
.hero-title-text-test{
    color:#A61717;
    font-size:64px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}
.hero-title-text{
    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:30px;
    text-transform:uppercase;
}

.hero-description-text{
    max-width:900px;
    margin:0 auto 45px;
    color:#d3d3d3;
    font-size:20px;
    line-height:1.9;
    font-weight:400;
}

/* ---------- Responsive ---------- */

@media (max-width:1200px){

    .hero-title-text{
        font-size:56px;
    }

}

@media (max-width:992px){

    .hero-content-text{
        padding:30px 15px;
    }

    .hero-title-text{
        font-size:46px;
    }

    .hero-description-text{
        font-size:18px;
        max-width:750px;
    }

}

@media (max-width:768px){

    .hero-subtitle-text{
        font-size:17px;
        letter-spacing:1px;
    }

    .hero-title-text{
        font-size:36px;
        line-height:1.3;
    }

    .hero-description-text{
        font-size:17px;
        line-height:1.8;
        margin-bottom:35px;
    }

}

@media (max-width:576px){

    .hero-content-text{
        padding:20px 10px;
    }

    .hero-subtitle-text{
        font-size:15px;
    }

    .hero-title-text{
        font-size:28px;
        line-height:1.35;
    }
    .hero-title-text-test{
        font-size:35px;
        line-height:1.35;
        margin: 0 auto;
    }

    .hero-description-text{
        font-size:15px;
        line-height:1.7;
    }
    
    .hero-content-text .button{
        width:100%;
        max-width:200px;
        justify-content:center;
         font-size: 18px;
    }
}