@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    overflow-x: hidden;
}

body {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --pink: #e91e8c;
    --dark-navy: #1a1a2e;
    --teal: #0ab5a0;
    --purple: #7c3aed;
    --yellow: #f59e0b;
    --green: #16a34a;
}


a {
    color: inherit;
    text-decoration: none;
}

/* ═══════════════════════════════
       TOP NAV
    ═══════════════════════════════ */
#mainNav {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1050;
}

/* ── Desktop ── */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #111;
    text-decoration: none;
    white-space: nowrap;
}

.brands-link {
    font-size: .82rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.brands-link:hover {
    color: var(--pink);
}

/* Search: auto width (not 100%) */
.search-wrap {
    flex: 0 1 420px;
    margin: 0 auto;
    position: relative;
}

.search-wrap input {
    width: 100%;
    border: 2px solid var(--pink);
    border-radius: 50px;
    padding: 7px 16px 7px 36px;
    font-size: .87rem;
    outline: none;
    background: #fff;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: .95rem;
    pointer-events: none;
}

/* WISHLIST — rounded pill */
.btn-wishlist {
    background: var(--dark-navy);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: .5px;
}

.btn-wishlist:hover {
    opacity: .85;
}

/* LOGIN */
.btn-login {
    background: transparent;
    border: none;
    font-size: .85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
}

.btn-login:hover {
    color: var(--pink);
}

/* BAG — rounded pill pink */
.btn-bag {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-bag:hover {
    opacity: .88;
}

.bag-count {
    background: #fff;
    color: var(--pink);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
}

/* ── Mobile nav — hidden on desktop ── */
.nav-mobile {
    display: none;
}

/* ═══════════════════════════════
       MOBILE NAV  (≤991px)
    ═══════════════════════════════ */
@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
        background: #fff;
    }

    /* Row 1: ☰  SHAJGOJ  BAG */
    .mob-row1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        position: relative;
    }

    .btn-bars {
        background: transparent;
        border: none;
        font-size: 1.55rem;
        color: #333;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        flex-shrink: 0;
    }

    /* Logo truly centered */
    .mob-brand {
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: 2px;
        color: #111;
        text-decoration: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    /* Row 2: full-width search */
    .mob-row2 {
        padding: 0 16px 10px;
    }

    .mob-search-wrap {
        position: relative;
    }

    .mob-search-wrap input {
        width: 100%;
        border: 2px solid var(--pink);
        border-radius: 50px;
        padding: 8px 16px 8px 36px;
        font-size: .87rem;
        outline: none;
        background: #fff;
    }

    .mob-search-wrap .search-icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: .95rem;
        pointer-events: none;
    }
}

/* ═══════════════════════════════
       CATEGORY BAR + MEGA  (desktop)
    ═══════════════════════════════ */
#catBar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cat-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 28px;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-inner::-webkit-scrollbar {
    display: none;
}

.cat-item {
    padding: 12px 13px;
    font-size: .85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    user-select: none;
}

.cat-item:hover,
.cat-item.active {
    color: var(--pink);
    border-bottom-color: var(--pink);
}

.pill {
    border-radius: 50px;
    padding: 6px 14px;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
    margin-left: 6px;
}

.pill-purple {
    background: var(--purple);
}

.pill-pink {
    background: var(--pink);
}

.pill-teal {
    background: var(--teal);
}

.pill-yellow {
    background: var(--yellow);
    color: #111;
}

.pill-green {
    background: var(--green);
}

@media (max-width: 991px) {
    #catBar {
        display: none;
    }
}

/* Mega menu */
.mega-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    z-index: 1200;
    padding: 24px 40px 28px;
}

.mega-wrap.show {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.mega-col {
    min-width: 120px;
}

.mega-col h6 {
    font-size: .73rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 9px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col ul li {
    margin-bottom: 6px;
}

.mega-col ul li a {
    font-size: .83rem;
    color: #555;
    text-decoration: none;
}

.mega-col ul li a:hover {
    color: var(--pink);
}

/* ═══════════════════════════════
       MOBILE SIDEBAR (LEFT)
    ═══════════════════════════════ */
#sidebarOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1300;
}

#sidebarOverlay.show {
    display: block;
}

#sidebar {
    position: fixed;
    top: 0;
    left: -110%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1400;
    overflow-y: auto;
    transition: left .28s ease;
    box-shadow: 4px 0 24px rgba(0, 0, 0, .13);
}

#sidebar.open {
    left: 0;
}

@media (max-width: 400px) {
    #sidebar {
        width: 100%;
    }
}

.sb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 800;
    font-size: .95rem;
}

.sb-close {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.sb-login {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
    font-weight: 600;
    color: #000;
}

.sb-avatar {
    width: 36px;
    height: 36px;
    background: #f8d7ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.1rem;
}

.sb-cat {
    border-bottom: 1px solid #f0f0f0;
}

.sb-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    user-select: none;
}

.icon-plus {
    font-size: .85rem;
    color: #999;
    transition: transform .22s;
    display: inline-block;
}

.sb-cat-head.open .icon-plus {
    transform: rotate(45deg);
}

.sb-sub {
    display: none;
}

.sb-sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 10px 30px;
    font-size: .86rem;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f8f8f8;
}

.sb-sub a .bi {
    font-size: .75rem;
    color: #ccc;
}

.sb-sub a:hover {
    color: var(--pink);
}

/* ═══════════════════════════════
       CART SIDEBAR (RIGHT)
    ═══════════════════════════════ */
#cartOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1300;
}

#cartOverlay.show {
    display: block;
}

#cartSidebar {
    position: fixed;
    top: 0;
    right: -110%;
    width: 390px;
    height: 100%;
    background: #fff;
    z-index: 1400;
    display: flex;
    flex-direction: column;
    transition: right .28s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .13);
}

#cartSidebar.open {
    right: 0;
}

@media (max-width: 480px) {
    #cartSidebar {
        width: 100%;
    }
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
}

.cart-head .cart-title {
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: 1.5px;
}

.cart-close-btn {
    background: none;
    border: none;
    color: var(--pink);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

/* Cart Banner */
.cart-banner {
    background: linear-gradient(135deg, #fde8f4 0%, #f0e0ff 100%);
    text-align: center;
    overflow: hidden;
}

.cart-banner .banner-top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px 0;
}

.cart-banner .mahanisato {
    font-size: .58rem;
    font-weight: 900;
    color: #8b1a8b;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.cart-banner .eid-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #6b21a8;
    font-style: italic;
    line-height: 1.1;
}

.cart-banner .free-badge {
    background: #fff;
    color: #555;
    font-size: .58rem;
    font-weight: 800;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 5px;
    align-self: flex-start;
}

.cart-banner .products-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    padding: 6px 16px 0;
    font-size: 1.6rem;
}

.cart-banner .off-strip {
    background: #6b21a8;
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    padding: 6px;
    letter-spacing: .5px;
    margin-top: 8px;
}

/* Cart body */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 8px;
}

.cart-item-card {
    border: 1.5px solid #eee;
    border-radius: 10px;
    margin: 14px 14px 0;
    padding: 12px;
    position: relative;
}

.cart-item-row {
    display: flex;
    gap: 10px;
}

.cart-thumb {
    width: 76px;
    height: 76px;
    background: #f5e8f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.thumb-price {
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: .6rem;
    font-weight: 800;
    color: var(--pink);
}

.cart-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.ci-title {
    font-size: .84rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
}

.ci-price {
    font-size: .82rem;
    color: #666;
    margin: 4px 0 5px;
}

.combo-badge {
    background: var(--pink);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
}

.del-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #bbb;
    font-size: 1rem;
    cursor: pointer;
}

.del-btn:hover {
    color: var(--pink);
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.show-items-btn {
    background: none;
    border: none;
    font-size: .78rem;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Qty control */
.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 6px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    background: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-val {
    font-size: .85rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.ci-total {
    font-size: .88rem;
    font-weight: 700;
    color: #222;
}

/* Cart footer */
.cart-footer {
    border-top: 1.5px solid #eee;
    padding: 14px 16px 16px;
    background: #fff;
}

.cart-total-row {
    font-size: .88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.total-amt {
    color: var(--pink);
    font-weight: 800;
}

.btn-proceed {
    width: 100%;
    background: var(--dark-navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-proceed:hover {
    opacity: .9;
    color: #fff;
}




/* Slider overflow fix */
.banner-slider {
    width: 100%;
    position: relative;
    padding-bottom: 35px;
    /* dots এর জন্য জায়গা */
}

.banner-slider .slick-list {
    overflow: hidden;
}

.banner-slider img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dots style */
.banner-slider .slick-dots {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--pink);
}

.banner-slider .slick-dots li.slick-active button:before {
    color: var(--pink);
    opacity: 1;
}


/* ===== MAIN FOOTER ===== */
.footer-main {
    background-color: #1e2340;
    padding: 50px 0 30px;
}

/* Logo */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 22px;
}

/* Brand links */
.footer-brand-links a {
    display: block;
    color: #cdd0e0;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-brand-links a:hover {
    color: var(--pink);
}

/* Divider under brand links */
.footer-divider {
    border-color: #3a3f60;
    margin: 16px 0;
}

/* Share your love */
.share-label {
    color: #cdd0e0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #3a3f60;
    color: #cdd0e0;
    font-size: 14px;
    text-decoration: none;
    margin-right: 6px;
    transition: border-color 0.2s, color 0.2s;
}

.social-icons a:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* Column headings */
.footer-col-title {
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Column links */
.footer-col-links a {
    display: block;
    color: #cdd0e0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-decoration: none;
    margin-bottom: 11px;
    transition: color 0.2s;
}

.footer-col-links a:hover {
    color: var(--pink);
}

/* Payments */
.payments-label {
    color: #cdd0e0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.payment-icons img {
    height: 28px;
    margin-right: 6px;
    border-radius: 4px;
}

/* Payment badge placeholders */
.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-right: 5px;
}

.pay-bkash {
    background: #e2136e;
    color: #fff;
}

.pay-amex {
    background: #2e77bc;
    color: #fff;
}

.pay-master {
    background: #eb001b;
    color: #fff;
}

.pay-visa {
    background: #1a1f71;
    color: #fff;
}

/* ===== BOTTOM BAR ===== */
.footer-bottom {
    background-color: #1e2340;
    border-top: 1px solid #3a3f60;
    padding: 18px 0;
}

.footer-bottom-links a {
    color: #cdd0e0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--pink);
}

.footer-copyright {
    color: #8a8fa8;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px;
}


/* Only show on mobile (max-width: 767px) */
.bottom-nav {
    display: none;
}

@media (max-width: 767.98px) {
    .bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        /* width: 100vw !important; */
        /* vw দিলে parent এর বাইরে গেলেও কাজ করবে */
        z-index: 1050;
        background-color: #ffffff;
        border-top: 1px solid #dee2e6;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        height: 64px;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
        box-sizing: border-box;
        transform: translateX(0) !important;
        /* কোনো transform offset বাতিল */
    }

    .bottom-nav .nav-item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        text-decoration: none;
        color: #6c757d;
        font-size: 0.60rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        transition: color 0.18s ease;
        position: relative;
        padding: 8px 2px 6px;
        gap: 3px;
        overflow: hidden;
        /* নিজের বাইরে যাবে না */
        white-space: nowrap;
        /* text wrap হবে না */
    }

    .bottom-nav .nav-item:hover,
    .bottom-nav .nav-item.active {
        color: #212529;
    }

    .bottom-nav .nav-item i {
        font-size: 1.45rem;
        line-height: 1;
        flex-shrink: 0;
    }

    .bottom-nav .nav-item span {
        display: block;
        width: 100%;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Cart badge */
    .bottom-nav .nav-item .badge-dot {
        position: absolute;
        top: 6px;
        left: calc(50% + 4px);
        width: 9px;
        height: 9px;
        background-color: #ff3b3b;
        border-radius: 50%;
        border: 2px solid #fff;
    }

}



/* ===== FLOATING CART (desktop/tablet only) ===== */
.floating-cart {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

.floating-cart-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: #1e2340;
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    min-width: 80px;
}

.fc-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 12px 10px;
    gap: 5px;
    color: #fff;
}

.fc-top i {
    font-size: 1.6rem;
}

.fc-count {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.fc-bottom {
    width: 100%;
    background-color: var(--pink);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 6px 8px;
}

/* ===== WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 18px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
    color: #fff;
}

/* Mobile এ WhatsApp আরেকটু উপরে (bottom-nav এর উপরে) */
@media (max-width: 767.98px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 14px;
    }

    .floating-scroll-top {
        bottom: 138px !important;
        right: 14px !important;
    }
}

/* ===== SCROLL TO TOP ===== */
.floating-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 18px;
    z-index: 998;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 6px;
    display: none;
    /* JS দিয়ে show হবে */
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

.floating-scroll-top:hover {
    background-color: #e0e0e0;
}

.floating-scroll-top.visible {
    display: flex;
}

/* ═══════════════════════════════
       LOGIN PAGE
    ═══════════════════════════════ */
.login-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: #f5f5f5;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 32px rgba(0, 0, 0, .08);
    display: flex;
    align-items: stretch;
    max-width: 900px;
    width: 100%;
    min-height: 440px;
    overflow: hidden;
}

.login-left {
    flex: 0 0 44%;
    overflow: hidden;
}

.login-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.login-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 52px;
}

.login-title {
    font-size: 1.55rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 32px;
    width: 100%;
    max-width: 340px;
}

.login-form {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.login-input {
    width: 100%;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: .92rem;
    color: #333;
    outline: none;
    transition: border-color .2s;
    background: #fff;
}

.login-input:focus {
    border-color: var(--pink);
}

.login-input::placeholder {
    color: #bbb;
    font-size: .88rem;
}

.btn-otp {
    width: 100%;
    background: var(--dark-navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: .92rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-otp:hover {
    opacity: .85;
}

#otpStep {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.resend-txt {
    font-size: .82rem;
    color: #888;
    text-align: center;
    margin: 0;
}

.resend-txt a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 700px) {
    .login-card {
        flex-direction: column;
        min-height: unset;
    }

    .login-left {
        flex: 0 0 auto;
        width: 100%;
        /* height: 220px; */
    }

    .login-right {
        padding: 32px 24px 36px;
    }
}

@media (max-width: 420px) {
    .login-right {
        padding: 28px 18px 32px;
    }
}



/* ══════════════════════════════
       PAGE HERO BANNER
    ══════════════════════════════ */
.page-banner {
    background: #b0b0b0;
    text-align: center;
    padding: 28px 16px;
}

.page-banner h1 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: .5px;
}

/* ══════════════════════════════
       LAYOUT WRAPPER
    ══════════════════════════════ */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 16px 60px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* ══════════════════════════════
       LEFT SIDEBAR (desktop)
    ══════════════════════════════ */
.sidebar {
    flex: 0 0 220px;
    min-width: 200px;
}

/* Price filter */
.sidebar-block {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 18px;
}

.sidebar-block h5 {
    font-size: .85rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

/* Range slider */
.price-range-wrap {
    position: relative;
    padding: 0 4px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(to right, var(--pink) 0%, var(--pink) 40%, #ddd 40%, #ddd 100%);
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pink);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    color: #555;
    margin-top: 10px;
}

/* Category list */
.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f3f3;
    font-size: .84rem;
    color: #444;
    cursor: pointer;
}

.cat-list li:last-child {
    border-bottom: none;
}

.cat-list li:hover {
    color: var(--pink);
}

.cat-list li.active {
    color: var(--pink);
    font-weight: 700;
}

.cat-list li .badge-num {
    background: #f0f0f0;
    color: #666;
    font-size: .72rem;
    border-radius: 50px;
    padding: 1px 7px;
    font-weight: 600;
}

.cat-list li.active .badge-num {
    background: var(--pink);
    color: #fff;
}

.cat-list .sub {
    padding-left: 12px;
    font-size: .82rem;
}

.cat-list .sub.active {
    color: var(--pink);
    font-weight: 700;
}

.bolt {
    color: #f59e0b;
    font-size: .8rem;
    margin-left: 3px;
}

/* ══════════════════════════════
       RIGHT CONTENT
    ══════════════════════════════ */
.content {
    flex: 1;
    min-width: 0;
}

/* Toolbar */
.toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.search-box input {
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 9px 14px 9px 34px;
    font-size: .85rem;
    outline: none;
    background: #fff;
}

.search-box input:focus {
    border-color: var(--pink);
}

.search-box .bi {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
}

/* Active filter pill */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: .78rem;
    color: #444;
    cursor: pointer;
}

.filter-pill .bi-x {
    color: #aaa;
    font-size: .85rem;
}

.filter-pill:hover .bi-x {
    color: var(--pink);
}

/* Sort dropdown */
.sort-select {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 30px 8px 12px;
    font-size: .82rem;
    color: #444;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--pink);
}

/* ══════════════════════════════
       PRODUCT GRID
    ══════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s;
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
}

/* Discount badge */
.disc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pink);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    border-radius: 4px;
    padding: 3px 7px;
    z-index: 2;
}

/* Wishlist */
.wish-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, .85);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #aaa;
    cursor: pointer;
    z-index: 2;
}

.wish-btn:hover {
    color: var(--pink);
}

/* Side label (e.g. Head-to-Toe) */
.side-label {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background: var(--purple);
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    padding: 8px 4px;
    letter-spacing: 1px;
    z-index: 2;
}

/* Volume badge */
.vol-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--navy);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 6px;
    z-index: 2;
}

/* Product thumb */
.prod-thumb {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Pink radial bg behind product */

.prod-img {
    position: relative;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .15));
}

/* Info section */
.prod-info {
    padding: 12px 12px 6px;
}

.prod-name {
    font-size: .82rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
    min-height: 36px;
    margin-bottom: 6px;
}

.free-ship {
    background: #fff;
    border: 1.5px solid var(--pink);
    color: var(--pink);
    font-size: .68rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 7px;
    display: inline-block;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.prod-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price-old {
    font-size: .78rem;
    color: #aaa;
    text-decoration: line-through;
}

.price-new {
    font-size: .88rem;
    font-weight: 800;
    color: var(--pink);
}

/* Stars */
.stars {
    color: #f59e0b;
    font-size: .78rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stars .bi-star {
    color: #ddd;
}

.vol-text {
    font-size: .75rem;
    color: #888;
    margin-bottom: 10px;
}

/* Add to cart */
.btn-atc {
    width: 100%;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 11px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-atc:hover {
    opacity: .88;
}

/* ══════════════════════════════
       MOBILE FILTER BAR (≤767px)
    ══════════════════════════════ */
.mob-filter-bar {
    display: none;
    position: fixed;
    bottom: 65px;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 900;
    justify-content: center;
}

.mob-filter-bar .btn-filters {
    background: #fff;
    border: 2px solid var(--pink);
    color: var(--pink);
    border-radius: 50px;
    padding: 10px 28px;
    font-size: .9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

/* ══════════════════════════════
       FILTER MODAL / BOTTOM SHEET (mobile)
    ══════════════════════════════ */
#filterOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1100;
}

#filterOverlay.show {
    display: block;
}

#filterSheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 1200;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transition: bottom .3s ease;
}

#filterSheet.open {
    bottom: 0;
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 10px auto 0;
}

.sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.sheet-head h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.sheet-done {
    background: none;
    border: none;
    color: #555;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}

.sheet-done:hover {
    color: var(--pink);
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.ftab {
    flex: 0 0 auto;
    padding: 12px 20px;
    font-size: .85rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.ftab.active {
    color: var(--pink);
    border-bottom-color: var(--pink);
}

/* Tab panels */
.filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 0;
}

.ftab-panel {
    display: none;
}

.ftab-panel.active {
    display: block;
}

.ftab-panel h6 {
    font-size: .82rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
}

/* Filter category list */
.filter-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: .88rem;
    color: #333;
    cursor: pointer;
}

.filter-cat-list li:last-child {
    border-bottom: none;
}

.filter-cat-list li:hover {
    color: var(--pink);
}

.filter-cat-list li .fc-count {
    font-size: .8rem;
    color: #aaa;
}

/* Show results */
.sheet-footer {
    padding: 14px 20px 20px;
    border-top: 1px solid #f0f0f0;
}

.btn-show-results {
    width: 100%;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-show-results:hover {
    opacity: .88;
}

/* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
@media (max-width: 767px) {
    .sidebar {
        display: none;
    }

    .page-wrap {
        padding: 16px 12px 80px;
    }

    .mob-filter-bar {
        display: flex;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .prod-thumb {
        height: 148px;
    }



    .prod-name {
        font-size: .78rem;
        min-height: 32px;
    }

    .toolbar {
        gap: 8px;
    }

    .sort-select {
        display: none;
    }
}

/*  */
/* BANNER */
.checkout-banner {
    width: 100%;
    display: block;
    line-height: 0;
}

.checkout-banner img {
    width: 100%;
    display: block;
    height: auto;
    max-height: 110px;
    object-fit: cover;
}

/* RETURNING BAR */
.returning-bar {
    background: #eaf4fb;
    padding: 11px 24px;
    font-size: .88rem;
    color: #444;
    border-bottom: 1px solid #d5eaf7;
}

.returning-bar a {
    color: var(--pink);
    font-weight: 600;
    text-decoration: none;
}

.returning-bar a:hover {
    text-decoration: underline;
}

/* CHECKOUT WRAP */
.checkout-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 32px 80px;
    display: flex;
    gap: 48px;
    /* align-items: flex-start; */
}

/* LEFT */
.billing-section {
    flex: 1;
    min-width: 0;
}

.section-title {
    font-size: .82rem;
    font-weight: 800;
    color: #111;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row .form-field {
    flex: 1;
}

.form-field {
    margin-bottom: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: .88rem;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--pink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #bbb;
}

.form-field select {
    color: #888;
}

.form-field select option:not([disabled]) {
    color: #333;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.full-field {
    margin-bottom: 16px;
}

/* RIGHT */
.summary-section {
    flex: 0 0 380px;
    min-width: 300px;
    padding-top: 2px;
}

.coupon-link {
    font-size: .9rem;
    color: var(--pink);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.coupon-link:hover {
    text-decoration: underline;
}

.summary-heading {
    font-size: .93rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

/* Radio rows */
.radio-group {
    margin-bottom: 4px;
}

.radio-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.radio-row label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .88rem;
    color: #333;
    cursor: pointer;
    flex: 1;
}

.radio-row input[type=radio] {
    accent-color: var(--pink);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-row .price-lbl {
    font-size: .88rem;
    color: #333;
    white-space: nowrap;
}

/* Divider */
.sum-divider {
    border: none;
    border-top: 1px solid #e8e8e8;
    margin: 14px 0;
}

/* Totals */
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.total-row .lbl {
    font-size: .9rem;
    color: #444;
}

.total-row .val {
    font-size: .9rem;
    color: #333;
}

.total-row.grand {
    padding: 8px 0;
}

.total-row.grand .lbl {
    font-size: .96rem;
    font-weight: 800;
    color: #111;
}

.total-row.grand .val {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--pink);
}

/* Payment */
.payment-group {
    padding-bottom: 6px;
}

/* Place Order */
.btn-place-order {
    display: block;
    width: 100%;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity .2s;
}

.btn-place-order:hover {
    opacity: .88;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .checkout-wrap {
        gap: 32px;
    }

    .summary-section {
        flex: 0 0 300px;
        min-width: 260px;
    }
}

@media (max-width: 767px) {
    .checkout-wrap {
        flex-direction: column;
        padding: 20px 16px 48px;
        gap: 28px;
    }

    .summary-section {
        flex: 0 0 auto;
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 14px;
    }
}

.page-wrap-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 60px;
}

/* ════════════════════════
       PRODUCT TOP
    ════════════════════════ */
.product-top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ── LEFT gallery ── */
.gallery-col {
    flex: 0 0 560px;
}

.main-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f5ede8;
    height: 480px;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ONLY 149 TAKA bottom bar */
.main-img-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
}

.main-img-bar .bar-text {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.main-img-bar .bar-price {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.main-img-bar .bar-taka {
    font-size: .85rem;
    font-weight: 700;
}

.main-img-bar .expand-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: .8;
}

/* Thumbnails */
.thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.thumb {
    flex: 0 0 82px;
    height: 82px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f5ede8;
}

.thumb.active {
    border-color: var(--pink);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social */
.social-share {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    align-items: center;
}

.soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.soc-fb {
    background: #1877f2;
}

.soc-tw {
    background: #000;
}

.soc-li {
    background: #0077b5;
}

.soc-wa {
    background: #25d366;
}

/* ── RIGHT info ── */
.info-col {
    flex: 1;
    min-width: 0;
}

.prod-title {
    font-size: 1.22rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.prod-size {
    font-size: .83rem;
    color: #888;
    margin-bottom: 12px;
}

/* Price row */
.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-now {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--pink);
}

.price-old {
    font-size: .9rem;
    color: #aaa;
    text-decoration: line-through;
}

.price-divider {
    color: #ddd;
}

.save-txt {
    font-size: .85rem;
    color: #555;
}

.off-pill {
    background: #7c3aed;
    color: #fff;
    border-radius: 50px;
    padding: 3px 12px;
    font-size: .78rem;
    font-weight: 800;
}

/* Download */
.dl-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    color: #444;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 8px 14px;
    margin-bottom: 14px;
    width: fit-content;
}

.dl-row .bi {
    color: #555;
}

.dl-row a {
    color: var(--pink);
    font-weight: 600;
    text-decoration: underline;
}

/* Best seller */
.bs-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.bs-badge {
    background: var(--navy);
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: .78rem;
    font-weight: 700;
}

.bs-row .in-txt {
    font-size: .82rem;
    color: #888;
}

.bs-row .brand-lnk {
    color: var(--pink);
    font-weight: 600;
    font-size: .88rem;
}

/* Qty + ATC */
.atc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.wish-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--navy);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
}

.wish-btn.active {
    background: var(--pink);
}

.qty-ctrl {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 46px;
    flex-shrink: 0;
}

.qty-btn {
    width: 40px;
    height: 100%;
    background: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #555;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-val {
    width: 42px;
    text-align: center;
    font-size: .92rem;
    font-weight: 700;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.btn-atc {
    flex: 1;
    height: 46px;
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .8px;
    cursor: pointer;
    white-space: nowrap;
}

.btn-atc:hover {
    opacity: .88;
}

/* Stock */
.stock-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #444;
    margin-bottom: 18px;
}

.stock-row .bi {
    color: var(--pink);
}

.stock-row strong {
    color: var(--pink);
}

/* Divider */
.info-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 16px 0;
}

/* Brief description table-style */
.brief-table {
    width: 100%;
    border-collapse: collapse;
}

.brief-table td {
    padding: 10px 0;
    vertical-align: top;
    font-size: .85rem;
    border-bottom: 1px solid #f0f0f0;
}

.brief-table td:first-child {
    width: 140px;
    color: #888;
    font-weight: 500;
    padding-right: 16px;
}

.brief-table td:last-child {
    color: #333;
    line-height: 1.6;
}

.brief-table .cats a {
    color: #333;
}

.brief-table .cats a:hover {
    color: var(--pink);
}

.read-more-lnk {
    color: var(--pink);
    font-size: .8rem;
    cursor: pointer;
}

/* Trust icons */
.trust-row {
    display: flex;
    gap: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 20px;
    text-align: center;
}

.trust-item {
    flex: 1;
    padding: 16px 8px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item img,
.trust-item .ti-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.trust-item .ti-icon {
    font-size: 1.6rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item .ti-lbl {
    font-size: .72rem;
    color: #555;
    line-height: 1.3;
}

/* ════════════════════════
       FBT + OFFERS (2-col below)
    ════════════════════════ */
.below-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    align-items: flex-start;
}

.fbt-col {
    flex: 1;
    min-width: 0;
}

.offers-col {
    flex: 1;
    min-width: 0;
}

.sec-title {
    font-size: .92rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
}

/* FBT */
.fbt-products {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fbt-img {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5ede8;
    flex-shrink: 0;
}

.fbt-plus {
    font-size: 1.4rem;
    color: #bbb;
    flex-shrink: 0;
}

.fbt-img2 {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0e8f8;
    flex-shrink: 0;
}

.fbt-total-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.fbt-total-txt {
    font-size: .88rem;
    color: #555;
}

.fbt-total-txt strong {
    color: var(--pink);
}

.btn-fbt {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btn-fbt:hover {
    opacity: .88;
}

/* FBT checkboxes */
.fbt-items {
    margin-top: 10px;
}

.fbt-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: .8rem;
    color: #555;
}

.fbt-item-row input[type=checkbox] {
    accent-color: var(--pink);
    width: 14px;
    height: 14px;
}

.fbt-item-row .this-item {
    color: var(--pink);
    font-weight: 700;
}

.fbt-item-row s {
    color: #bbb;
}

.fbt-item-row strong {
    color: var(--pink);
}

/* Offers */
.offer-card {
    border: 1.5px solid #f0e0f0;
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.offer-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fce8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.offer-title {
    font-size: .83rem;
    font-weight: 800;
    color: #111;
}

.offer-sub {
    font-size: .76rem;
    color: #888;
    margin-top: 3px;
    line-height: 1.5;
}

/* Offers nav arrows */
.offers-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.nav-arr {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    cursor: pointer;
    color: #555;
}

.nav-arr:hover {
    border-color: var(--pink);
    color: var(--pink);
}

/* ════════════════════════
       TABS
    ════════════════════════ */
.tabs-wrap {
    margin-top: 32px;
}

.tabs-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab-btn {
    padding: 9px 18px;
    font-size: .78rem;
    font-weight: 700;
    color: #555;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: .3px;
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

.tab-btn:hover:not(.active) {
    border-color: #bbb;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    font-size: .88rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}

.tab-panel h6 {
    font-size: .88rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    margin-top: 18px;
}

.tab-panel ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.tab-panel ul li {
    font-size: .87rem;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.55;
}

/* ════════════════════════
       RESPONSIVE
    ════════════════════════ */
@media(max-width:991px) {
    .gallery-col {
        flex: 0 0 400px;
    }

    .main-img-wrap {
        height: 380px;
    }
}

@media(max-width:767px) {
    .product-top {
        flex-direction: column;
        gap: 16px;
    }

    .gallery-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .main-img-wrap {
        height: 300px;
    }

    .below-row {
        flex-direction: column;
        gap: 24px;
    }

    .thumb {
        flex: 0 0 62px;
        height: 62px;
    }

    .fbt-products {
        flex-wrap: wrap;
    }
}

@media(max-width:480px) {
    .tab-btn {
        padding: 7px 12px;
        font-size: .72rem;
    }

    .price-now {
        font-size: 1.15rem;
    }
}