/* CART SIDEBAR */
.cart-sidebar{
    position:fixed;
    top:0;
    right:-420px;
    width:400px;
    height:100vh;
    background:#fff;
    z-index:999999;
    transition:.4s ease;
    overflow-y:auto;
}

.cart-sidebar.active{
    right:0;
}



/* CART HEADER */
.cart-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    background:#fff;
    z-index:5;
}

.cart-header h3{
    font-size:22px;
    margin:0;
}

#closeCart{
    font-size:30px;
    cursor:pointer;
}



/* CART OVERLAY */
.cart-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    /*backdrop-filter:blur(2px);*/
    z-index:999998;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.cart-overlay.active{
    opacity:1;
    visibility:visible;
}


.cart-card{
    background:#fff;
    padding:16px;
    border-bottom:1px solid #e9e9e9;
}

.cart-top{
    display:flex;
    gap:14px;
}

.cart-image{
    width:120px;
    min-width:120px;
}

.cart-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:4px;
    background:#f5f5f5;
}

.cart-details{
    flex:1;
}

.cart-title-row{
    display:flex;
    justify-content:space-between;
    gap:10px;
}

.cart-title-row h3{
    font-size:16px;
    line-height:1.4;
    font-weight:500;
    color:#555;
    margin:0;
}

.remove-cart{
    text-decoration:none;
    font-size:15px;
    color:#55183f;
}

.cart-size-qty{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:10px;
    flex-wrap:wrap;
}

.size{
    font-size:14px;
    color:#555;
}

.qty-box{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:4px;
    overflow:hidden;
    height:32px;
}

.qty-box button{
    width:30px;
    height:32px;
    border:none;
    background:#fff;
    font-size:16px;
    cursor:pointer;
    color:#666;
}

.qty-box span{
    width:35px;
    text-align:center;
    font-size:14px;
    font-weight:600;
}

.offer-text{
    color:#ff7a59;
    font-size:14px;
    font-weight:600;
    margin-top:10px;
}

.delivery-text,
.return-text{
    font-size:14px;
    color:#777;
    margin-top:8px;
}

.delivery-text b{
    color:#2aa36b;
}

.price-row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-top:12px;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    font-size:18px;
}

.new-price{
    color:#222;
    font-size:26px;
    font-weight:700;
}

.discount-percent{
    color:#55183f;
    font-size:14px;
    font-weight:600;
}
/* =========================
PRICE DETAILS BOX
========================= */

.price-details-box{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:18px;
    margin:20px 12px;
}

.price-details-box h3{
    font-size:18px;
    color:#6b5a5a;
    font-weight:500;
    margin:0 0 20px;
}
.cart-card{
    position:relative;
}


/* LOADING OVERLAY */
.cart-loading{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.7);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:10;

    opacity:0;
    visibility:hidden;

    transition:.3s;
}

.cart-card.loading .cart-loading{
    opacity:1;
    visibility:visible;
}

/* EMPTY CART */
.empty-cart{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    /*justify-content:center;*/
    align-items:center;
    text-align:center;
    padding:40px 25px;
    background:#fff;
}

.empty-cart img{
    width:130px;
    max-width:100%;
    margin-bottom:25px;
    object-fit:contain;
}

.empty-cart h2{
    font-size:22px;
    font-weight:700;
    color:#7d5a50;
    margin-bottom:12px;
}

.empty-cart p{
    font-size:15px;
    color:#777;
    line-height:1.7;
    max-width:320px;
    margin-bottom:30px;
}

.start-shopping-btn{
    width:100%;
    max-width:320px;
    height:52px;
    background:#55183f;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s;
}




/* MOBILE */
@media(max-width:768px){
    .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 5px;
}

    .empty-cart{
        padding:30px 20px;
    }

    .empty-cart img{
        width:130px;
    }

    .empty-cart h2{
        font-size:24px;
    }

    .empty-cart p{
        font-size:14px;
    }

}
/* SPINNER */
.cart-loader{
    width:35px;
    height:35px;
    border:3px solid #ddd;
    border-top:3px solid #7a1e56;
    border-radius:50%;
    animation:cartSpin .7s linear infinite;
}

@keyframes cartSpin{

    100%{
        transform:rotate(360deg);
    }

}
.price-details-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:17px;
    color:#6b5a5a;
}

.green-text{
    color:#29a36a;
    font-weight:600;
}

.price-divider{
    border-top:1px solid #ececec;
    margin:18px 0;
}

.total-row{
    font-size:20px;
    font-weight:700;
    color:#4d3f3f;
}

/* MOBILE */

@media(max-width:768px){

.price-details-box{
    margin:15px 10px;
    padding:16px;
}

.price-details-box h3{
    font-size:16px;
}

.price-details-row{
    font-size:15px;
    margin-bottom:14px;
}

.total-row{
    font-size:18px;
}

}
/* MOBILE */

@media(max-width:768px){

.cart-card{
    padding:14px;
}

.cart-image{
    width:105px;
    min-width:105px;
}

.cart-image img{
    height:145px;
}

.cart-title-row h3{
    font-size:17px;
}

.new-price{
    font-size:22px;
}

.old-price{
    font-size:15px;
}

.discount-percent{
    font-size:14px;
}

.offer-text,
.delivery-text,
.return-text{
    font-size:13px;
}

.qty-box{
    height:30px;
}

.qty-box button{
    height:30px;
}

}
/* MOBILE */
@media(max-width:768px){

    .cart-sidebar{
        width:100%;
        right:-100%;
    }

}
.empty-wishlist{
    display:flex;
    flex-direction:column;
    /*justify-content:center;*/
    align-items:center;
    text-align:center;
    height:100vh;
    padding:30px 20px;
}

.empty-wishlist img{
    width:130px;
    margin-bottom:25px;
}

.empty-wishlist h2{
    font-size:22px;
    color:#7d5a50;
    margin-bottom:12px;
    font-weight:700;
}

.empty-wishlist p{
    font-size:15px;
    color:#8c8c8c;
    line-height:1.7;
    max-width:320px;
    margin-bottom:35px;
}

.start-shopping-btn{
    width:100%;
    max-width:350px;
    background:#55183f;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-loader{
    width:14px;
    height:14px;
    border:2px solid #fff;
    border-top:2px solid transparent;
    border-radius:50%;
    display:inline-block;
    animation:spin .6s linear infinite;
    margin-right:6px;
    vertical-align:middle;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}
.wishlist-sidebar{
    z-index: 999999;
}

.wishlist-overlay{
    z-index: 999998;
}
.wishlist-slider{
    width:125px;
    height:173px;
    position:relative;
    overflow:hidden;
    border-radius:10px;
    flex-shrink:0;
}

.wishlist-slide{
    width:100%;
    height:100%;
    object-fit:cover;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:0.5s;
}

.wishlist-slide.active{
    opacity:1;
}
/* HEART */
.heart-icon{
    position: relative;
    cursor: pointer;
}

/* SIDEBAR */
.wishlist-sidebar{
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    overflow-y: auto;
}

.wishlist-sidebar.active{
    right: 0;
}

.wishlist-header{
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.wishlist-header h3{
    margin: 0;
    font-size: 24px;
    color: #55183f;
}

#wishlistItems{
    padding: 15px;
}

/* ITEM */
.wishlist-item{
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 20px;
}

.wishlist-item img{
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.wishlist-content{
    flex: 1;
    position: relative;
}

.wishlist-content h4{
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
    padding: 0px 22px 0px 0px;
}

.price{
    margin: 10px 0;
}

.old-price{
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.new-price{
    color: #666;
    font-weight: 600;
    margin-right: 8px;
}

.discount{
    color: #ff5b5b;
    font-size: 14px;
    font-weight: 600;
}

.remove-btn{
    position: absolute;
    right: 0;
    top: 0;
    color: #55183f;
    cursor: pointer;
    font-size: 18px;
}

.move-btn{
    width: 100%;
    border: none;
    background: #55183f;
    color: #fff;
    padding: 14px;
    margin-top: 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.move-btn:hover{
    background: #55183f;
}

.loading-btn{
    opacity: .7;
    pointer-events: none;
}
.wishlist.active i{
    color:red;
    font-weight:900;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.cart-btn{
    position: relative;
    overflow: hidden;
}

/*
3 DOT LOADER
*/

.dot-loader{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
}

.dot-loader span{
    width:6px;
    height:6px;
    background:#fff;
    border-radius:50%;
    animation:bounce 0.6s infinite alternate;
}

.dot-loader span:nth-child(2){
    animation-delay:0.2s;
}

.dot-loader span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes bounce{

    from{
        transform:translateY(0px);
        opacity:0.5;
    }

    to{
        transform:translateY(-5px);
        opacity:1;
    }
}

/*
TOAST
*/
/*========================
  DESIGNER TOAST
========================*/

.designer-toast{

    position:fixed;

    left:50%;
    bottom:25px;

    transform:translateX(-50%) translateY(120px);

    background:#55183f;

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    padding:16px 22px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:14px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.18);

    z-index:999999;

    min-width:320px;

    opacity:0;

    transition:all 0.45s cubic-bezier(.2,.8,.2,1);
}

/*
SHOW
*/

.designer-toast.show{

    opacity:1;

    transform:translateX(-50%) translateY(0px);
}

/*
ICON
*/

.toast-icon{

    width:34px;
    height:34px;

    min-width:34px;

    border-radius:50%;

    background:#27c266;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:15px;
}

/*
TEXT
*/

.toast-text{

    font-size:16px;

    font-weight:600;

    color:#fff;

    letter-spacing:0.2px;
}


/*
MOBILE
*/

@media(max-width:600px){

    .designer-toast{

        width:90%;

        min-width:auto;

        bottom:18px;

        padding:15px 18px;
    }

    .toast-text{

        font-size:14px;
    }
}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;
}
.fa-heart{
font-size: 18px;
}
.designer-products{
  padding:40px 3%;
}

.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

.section-head h2{
  font-size:26px;
  font-weight:600;
  color:#111;
}

.section-head a{
  text-decoration:none;
  color:#55183f;
  font-weight:600;
}

.designer-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.product-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:0.3s;
}

.product-img{
  position:relative;
  overflow:hidden;
  border-radius:14px;
}

.product-img img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.discount-badge{
  position:absolute;
  top:10px;
  left:0;
  background:#d91f26;
  color:#fff;
  font-size:11px;
  font-weight:700;
  padding:7px 5px 7px 5px;
  z-index:2;
  border-radius:0 6px 6px 0;
  display:flex;
  align-items:center;
  gap:5px;
  line-height:1;
}


/* ICON */
.discount-badge::before{
  content:"◔";
  font-size:10px;
}

.wishlist{
  position:absolute;
  top:0px;
  right:12px;
  color:#fff;
  font-size:28px;
  z-index:2;
  cursor:pointer;
}

.rating{
  position:absolute;
  bottom:12px;
  right:12px;
  background:#fff;
  padding:6px 10px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

.tag{
  position:absolute;
  bottom:12px;
  left:0;
  background:#e9c47a;
  color:#000;
  padding:6px 12px;
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
}

.cart-btn {
    position: absolute;
    bottom: 9px;
    right: 7px;
    width: 31px;
    height: 31px;
    border: none;
    border-radius: 10px;
    background: #55183f;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.product-info{
  padding:14px 8px;
}

.product-info h3{
  font-size:17px;
  font-weight:500;
  color:#333;
  line-height:1.4;
  margin-bottom:5px;

display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
}

.price-box{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.old-price{
  color:#999;
  text-decoration:line-through;
  font-size:16px;
}

.new-price{
  color:#111;
  font-size:18px;
  font-weight:700;
}

.off{
  color:#ef4444;
  font-size:14px;
  font-weight:600;
}

/* TABLET */
@media(max-width:991px){

  .designer-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .product-img img{
    height:300px;
  }

}

/* MOBILE */
@media(max-width:576px){

  .designer-products{
    padding:25px 12px;
  }

  .section-head h2{
    font-size:18px;
  }

  .designer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .product-img img{
    height:240px;
  }

  .product-info h3{
    font-size:14px;
  }

  .new-price{
    font-size:18px;
  }

  .old-price{
    font-size:13px;
  }

  .off{
    font-size:12px;
  }

  .cart-btn{
    width:36px;
    height:36px;
    font-size:16px;
  }

}
/* =========================
   HERO
========================= */
/* =========================
   HERO SLIDER
========================= */
.hero-slider{
    position:relative;
    width:100%;
    height:70vh;
    overflow:hidden;
}

/* SLIDES */
.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    opacity:0;
    transition:opacity 1s ease-in-out;
}

/* ACTIVE */
.slide.active{
    opacity:1;
    z-index:1;
}

/* IMAGE */
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* DARK SHADOW */
.hero-slider::after{
    content:'';
    position:absolute;
    inset:0;

    /* background:
    linear-gradient(to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.10),
    rgba(0,0,0,0.35)); */

    z-index:2;
    pointer-events:none;
}

/* =========================
   NAVBAR
========================= */
/* =========================
   NAVBAR
========================= */
.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    transition:0.4s;
    padding:5px 40px;

    /* BLACK SHADOW */
    background:linear-gradient(to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.18),
    transparent);
}

.navbar.scrolled{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    padding:8px 40px;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LEFT */
.nav-left{
    display:flex;
    align-items:center;
    gap:28px;
}

.menu-btn,
.search-btn{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
    cursor:pointer;
    font-weight:500;
    transition:0.3s;
}

.navbar.scrolled .menu-btn,
.navbar.scrolled .search-btn{
    color:#55183f;
}

.menu-btn svg,
.search-btn svg{
    width:19px;
    height:19px;
}

/* =========================
   LOGO SWITCH
========================= */
.logo{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BOTH LOGOS */
.logo img{
    height:70px;
    width:auto;
    object-fit:contain;
    transition:0.4s ease;
}

/* WHITE LOGO DEFAULT */
.logo-white{
    display:block;
}

/* DARK LOGO HIDDEN */
.logo-dark{
    display:none;
}

/* AFTER SCROLL */
.navbar.scrolled .logo-white{
    display:none;
}

.navbar.scrolled .logo-dark{
    display:block;
}
.occasion-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 20px;
}

.occasion-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.occasion-card span {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}


/* ✅ Tablet */
@media (max-width: 1024px) {
  .occasion-section {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ✅ Mobile (3 cards) */
@media (max-width: 768px) {
    .mob-3-ban{
    height: 114%!important;
}
.promo-banner{
    margin-top: 8px!important;
}
    .heart-icon{
        display:none;
    }
    .bag-icon{
       display:none; 
    }
    .discount-badge{
       display: none !important; 
    }
  .occasion-section {
    grid-template-columns: repeat(3, 1fr);
  }

  .occasion-card span {
    font-size: 14px;
  }
}

/* ✅ Small mobile */
@media (max-width: 480px) {
  .occasion-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* MOBILE */
@media(max-width:576px){

    .logo img{
        height:42px;
    }

}

/* RIGHT */
.nav-right{
    display:flex;
    align-items:center;
    gap:22px;
}

.nav-icon{
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.navbar.scrolled .nav-icon{
    color:#55183f;
}

.nav-icon svg{
    width:22px;
    height:22px;
}
.wishlist-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:99998;

    opacity:0;
    visibility:hidden;

    transition:0.3s ease;
}

.wishlist-overlay.active{
    opacity:1;
    visibility:visible;
}
/* =========================
   SIDEBAR
========================= */
.overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
    opacity:0;
    visibility:hidden;
    transition:0.4s;
    z-index:9998;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

.sidebar{
    position:fixed;
    top:0;
    left:-100%;
    width:560px;
    max-width:100%;
    height:100%;
    background:#fff;
    z-index:10000;
    overflow-y:auto;
    transition:0.4s;
    padding:2px 30px;
}

.sidebar.active{
    left:0;
}

.sidebar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:0px;
}

.sidebar-top h2{
    font-size:22px;
    color:#333;
}

.close-btn{
    cursor:pointer;
    font-size:32px;
    color:#555;
}

/* CATEGORY */
.sidebar-section{
    margin-bottom:40px;
}

.sidebar-section h3{
    margin-bottom:20px;
    font-size:15px;
    letter-spacing:2px;
    color:#555;
}

/*.product-grid{*/
/*    display:grid;*/
/*    grid-template-columns:repeat(4,1fr);*/
/*    gap:15px;*/
/*}*/

.products-card img{
    width:100%;
    border-radius:10px;
    height:177px;
    object-fit:cover;
}

.products-card p{
    text-align:center;
    font-size:14px;
    margin-top:10px;
    color:#444;
    line-height:1.4;
}

/* =========================
   MOBILE SEARCH
========================= */
.mobile-search{
    display:none;
}
.mobile-search{
    transition:0.4s ease;
}
/* NAVBAR HIDE */
.navbar.hide-navbar{
    transform:translateY(-120%);
}
.mobile-search.hide-search{
    opacity:0;
    visibility:hidden;
    transform:translateX(-50%) translateY(-20px);
}
/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){
    .hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}
    .slide img {
    width: 100%;
    height: 127%;
    object-fit: cover;
    display: block;
}
.search-btn{
    display: none;
}
    .navbar{
        padding:1px 18px;
    }

    .navbar.scrolled{
        padding:12px 18px;
    }

    .logo{
        font-size:32px;
    }

    .menu-text,
    .search-text{
        display:none;
    }

    .nav-right{
        gap:15px;
    }

    .nav-icon svg{
        width:20px;
        height:20px;
    }

    .sidebar{
        width:100%;
        padding:20px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .products-card img{
        height:190px;
    }

    /* MOBILE SEARCH BAR */
    .mobile-search{
        display:block;
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        bottom:-62px;
        width:90%;
        z-index:99;
    }

    .mobile-search input{
        width:100%;
        height:50px;
        border-radius:30px;
        border:1px solid rgba(255,255,255,0.6);
        background:transparent;
        padding:0 55px 0 20px;
        color:#fff;
        outline:none;
        backdrop-filter:blur(6px);
    }

    .mobile-search input::placeholder{
        color:#fff;
    }

    .mobile-search .search-icon{
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
        color:#fff;
    }

}

@media(max-width:576px){
.wishlist {
    position: absolute;
    top: 0px;
    right: 12px;
    color: #fff;
    font-size: 28px;
    z-index: 2;
    cursor: pointer;
}
     .logo img{
        height:70px;
    }

    .products-card img{
        height:253px;
    }

    .sidebar-section h3{
        font-size:16px;
    }

}
/* =========================
   PROMO BANNER
========================= */
.promo-banner{
    width:100%;
    height:360px;
    background:
    linear-gradient(rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)),
    url('../images/mangla-new.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    padding:0 8%;
    margin-top:40px;
}

.promo-content{
    max-width:620px;
    color:#fff;
}

.small-text{
    display:inline-block;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:18px;
    text-transform:uppercase;
    border-bottom:1px solid rgba(255,255,255,0.5);
    padding-bottom:6px;
}

.promo-content h2{
    font-size:68px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:22px;
}

.promo-content p{
    font-size:17px;
    line-height:1.8;
    color:#f1f1f1;
    margin-bottom:32px;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:55px;
    padding:0 34px;

    background:#fff;
    color:#111;
    text-decoration:none;

    font-size:15px;
    font-weight:600;
    border-radius:50px;

    transition:0.3s;
}

.shop-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   TABLET
========================= */
@media(max-width:991px){

    .promo-banner{
        height:100px;
        padding:0 6%;
    }

    .promo-content h2{
        font-size:52px;
    }

}

/* =========================
   MOBILE
========================= */
@media(max-width:576px){

    .promo-banner{
        height:100px;
        padding:0 20px;
        text-align:center;
        justify-content:center;
    }

    .promo-content h2{
        font-size:34px;
    }

    .promo-content p{
        font-size:14px;
        line-height:1.7;
    }

    .shop-btn{
        height:48px;
        padding:0 28px;
        font-size:14px;
    }

}
/* =========================
SEARCH OVERLAY
========================= */

.search-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    z-index:999999;

    opacity:0;
    visibility:hidden;
    transition:0.35s ease;
}

.search-overlay.active{
    opacity:1;
    visibility:visible;
}

/* TOP */
.search-top{
    height:76px;
    border-bottom:1px solid #ececec;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 35px;
}

.search-input-box{
    flex:1;
    display:flex;
    align-items:center;
    gap:14px;
}

.search-input-box input{
    width:100%;
    height:55px;
    border:none;
    outline:none;
    font-size:18px;
    background:none;
    color:#333;
}

.search-input-box input::placeholder{
    color:#b7a9a9;
}

.search-icon-left{
    font-size:18px;
    color:#7b6b6b;
}

.search-close{
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    color:#666;
}

/* BODY */
.search-body{
    display:grid;
    grid-template-columns:290px 1fr;
    height:calc(100vh - 76px);
}

/* LEFT */
.search-left{
    border-right:1px solid #ececec;
    padding:35px 18px;
    overflow-y:auto;

    /* HIDE SCROLLBAR */
    scrollbar-width:none; /* Firefox */
    -ms-overflow-style:none; /* IE */
}

/* CHROME / EDGE / SAFARI */
.search-left::-webkit-scrollbar{
    display:none;
}

.search-box-block{
    margin-bottom:40px;
}

.search-box-block h3{
    font-size:14px;
    font-weight:700;
    color:#7c6b66;
    margin-bottom:18px;
    letter-spacing:1px;
}

/* TAGS */
.search-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.search-tags a{
    text-decoration:none;
    padding:11px 18px;
    border:1px solid #803e39;
    border-radius:40px;
    color:#803e39;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}
/* =========================
   FOOTER
========================= */

.custom-footer{
    background:#fff;
    padding:70px 60px 40px;
    border-top:1px solid #e5e5e5;
}

.footer-top{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:50px;
    margin-bottom:50px;
}

.footer-column h4{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
    color:#111;
    font-weight:700;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    text-decoration:none;
    color:#333;
    font-size:16px;
    transition:0.3s;
}

.footer-column ul li a:hover{
    color:#000;
    padding-left:3px;
}
/* ADD THIS CSS */

.copyright-text{
    text-align:center;
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #e5e5e5;
    font-size:15px;
    color:#555;
    font-weight:500;
}
/* =========================
   CONTACT
========================= */

.contact-box h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
    color:#000;
}

.contact-box p{
    color:#444;
    line-height:1.8;
    font-size:15px;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-box h4{
    margin-bottom:25px;
}

.newsletter-input{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #bbb;
    padding-bottom:12px;
    margin-bottom:20px;
}

.newsletter-input input{
    border:none;
    outline:none;
    width:100%;
    font-size:16px;
    background:transparent;
    color:#111;
}

.newsletter-input input::placeholder{
    color:#777;
}

.newsletter-input button{
    border:none;
    background:none;
    cursor:pointer;
    font-size:22px;
    color:#000;
}

.newsletter-text{
    font-size:15px;
    color:#444;
    line-height:1.7;
    margin-bottom:30px;
}

.social-icons{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.social-icons a{
    width:45px;
    height:45px;
    border:1px solid #ddd;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    font-size:20px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#111;
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   FOOTER LINKS
========================= */

.footer-bottom{
    border-top:1px solid #e5e5e5;
    padding-top:30px;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    line-height:2.2;
}

.footer-links a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    position:relative;
    padding-right:12px;
}

.footer-links a::after{
    content:"|";
    position:absolute;
    right:-2px;
    color:#bbb;
}

.footer-links a:last-child::after{
    display:none;
}

.footer-links a:hover{
    color:#000;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .footer-top{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .custom-footer{
        padding:50px 20px 30px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-column h4{
        margin-bottom:18px;
    }

    .contact-box h2{
        font-size:30px;
    }

    .footer-column ul li a{
        font-size:15px;
    }

    .footer-links{
        gap:8px;
        line-height:2;
    }

    .footer-links a{
        font-size:14px;
    }

    .social-icons{
        gap:14px;
    }

    .social-icons a{
        width:42px;
        height:42px;
        font-size:18px;
    }

}

.search-tags a:hover{
    background:#7a5757;
    color:#fff;
}

/* RIGHT */
.search-right{
    padding:22px;
    overflow:hidden;
}

.search-right h2{
    font-size:14px;
    letter-spacing:2px;
    color:#7c6b66;
    margin-bottom:22px;
}

/* HORIZONTAL SCROLL */
.search-products-scroll{
    display:flex;
    gap:18px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    padding-bottom:10px;
}

.search-products-scroll::-webkit-scrollbar{
    height:5px;
}

.search-products-scroll::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
}

/* CARD */
.search-product-card{
    min-width:245px;
    max-width:245px;
    flex:0 0 auto;
}

/* IMAGE */
.search-product-img{
    position:relative;
    overflow:hidden;
}

.search-product-img img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

/* BADGE */
.search-discount{
    position:absolute;
    top:10px;
    left:0;
    background:#d91f26;
    color:#fff;
    font-size:11px;
    padding:6px 10px;
    border-radius:0 6px 6px 0;
    font-weight:600;
}

/* HEART */
.search-heart{
    position:absolute;
    top:12px;
    right:12px;
    color:#fff;
    font-size:24px;
}

/* TAG */
.search-tag{
    position:absolute;
    left:0;
    bottom:12px;
    background:#e8c477;
    color:#000;
    font-size:11px;
    padding:5px 10px;
    font-weight:700;
    letter-spacing:1px;
}

/* RATING */
.search-rating{
    position:absolute;
    bottom:12px;
    right:12px;
    background:#fff;
    padding:5px 9px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* CART */
.search-cart{
    position:absolute;
    right:10px;
    bottom:10px;

    width:36px;
    height:36px;

    border:none;
    border-radius:10px;
    background:#ef4444;
    color:#fff;
    cursor:pointer;
}

/* INFO */
.search-product-info{
    padding:12px 5px;
}

.search-product-info h4{
    font-size:16px;
    line-height:1.4;
    color:#555;
    margin-bottom:8px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.search-price{
    display:flex;
    align-items:center;
    gap:7px;
    flex-wrap:wrap;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:15px;
}

.new-price{
    font-size:16px;
    font-weight:600;
    color:#222;
}

.off-price{
    color:red;
    font-size:13px;
    font-weight:600;
}

/* MOBILE */
.search-back{
    display:none;
}
#closeWishlist{
        font-size: 30px;
    cursor: pointer;
}
@media(max-width:768px){

    .search-top{
        height:75px;
        padding:0 15px;
    }

    .search-close{
        display:none;
    }

    .search-back{
        display:flex;
        font-size:22px;
        color:#555;
    }

    .search-body{
        display:block;
        height:calc(100vh - 75px);
        overflow-y:auto;
    }

    .search-left{
        border:none;
        padding:20px 15px;
    }

    .search-right{
        padding:0 0 20px;
    }

    .search-right h2{
        padding:0 15px;
        font-size:24px;
        text-align:center;
    }

    .search-products-scroll{
        padding-left:15px;
        padding-right: 15px;
        gap:12px;
    }

    .search-product-card{
        min-width:165px;
        max-width:165px;
    }

    .search-product-img img{
        height:240px;
    }

    .search-product-info h4{
        font-size:14px;
    }

    .search-input-box input{
        font-size:16px;
    }

    .search-box-block h3{
        font-size:18px;
    }

    .search-tags a{
        font-size:13px;
        padding:10px 15px;
    }

}
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    border-radius: 0px;
    padding: 12px 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
}

.bottom-nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#888;
    font-size:11px;
    font-weight:500;
    gap:4px;
    transition:.3s;
    position:relative;
    width:60px;
}

.bottom-nav-item i{
    font-size:21px;
    transition:.3s;
}

.bottom-nav-item.active{
    color:#55183f;
}

.bottom-nav-item.active i{
    transform:translateY(-2px) scale(1.08);
}


.bottom-nav-item:hover{
    color:#55183f;
}


/* MOBILE ONLY */
@media(min-width:768px){

    .mobile-bottom-nav{
        display:none;
    }

}


/* MOBILE FULL SCREEN */
@media(max-width:768px){

    .wishlist-sidebar{

        width:100%;
        right:-100%;
        border-radius:0;

    }

}