        /* ===== BASE ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { font-size: 16px; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background-color: #f8f5f2;
            color: #1c1c1c;
            scroll-behavior: smooth;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .logo-font, .hero-title, .section-heading, .navbar-brand {
            font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
            font-weight: 500;
            letter-spacing: -0.01em;
        }

        /* ===== ইউনিফর্ম বর্ডার রেডিয়াস – ২৫% কম ===== */
        :root { --br: 8px; }

        /* =============================================
           HEADER – Same as main page (with mobile overlay)
        ============================================= */
        .navbar {
            background-color: #000000 !important;
            padding: 1.2rem 0;
            border-bottom: 1px solid #1a1a1a;
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .navbar-brand img { height: 44px; filter: brightness(0) invert(1); transition: 0.3s; }
        .navbar-brand img:hover { transform: scale(1.02); }

        @media (max-width: 768px) {
            .navbar-brand img { height: 32px; }
            .navbar .container { flex-wrap: nowrap; }
            .navbar-toggler { order: 2; border: none; padding: 0; }
            .navbar-toggler:focus { box-shadow: none; }
            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
            .navbar-collapse { display: none !important; }
        }

        .nav-link {
            font-weight: 500;
            font-size: 1rem !important;
            color: rgba(255,255,255,0.85) !important;
            transition: color 0.2s;
            padding: 0.5rem 0.8rem !important;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .nav-link:hover { color: #ffffff !important; }
        .nav-link .nav-caret {
            font-size: 0.55rem;
            color: #cbb394;
            transition: transform 0.25s ease, color 0.2s ease;
        }
        .lend-nav-item:hover .nav-link .nav-caret {
            color: #fff;
            transform: rotate(180deg);
        }

        /* =============================================
           MULTI-LEVEL DROPDOWN — rebuilt on a proven recursive fly-out
           pattern (no Bootstrap dropdown-toggle JS involved at all; pure
           CSS :hover, same class reused at every depth so any number of
           levels works automatically: Women -> Saree -> Georgette Saree -> Printed)
        ============================================= */
        .lend-nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0 auto;
            padding: 0;
            gap: 0.2rem;
        }

        .lend-nav-item {
            position: relative;
        }
        .lend-submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background: #1a1a1a;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--br);
            padding: 0.4rem 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            min-width: 240px;
            max-width: 300px;
            list-style: none;
            margin: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
            z-index: 1050;
        }
        .lend-nav-item:hover > .lend-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        /* Any submenu nested inside another submenu flies out to the right,
           and is revealed only when its OWN direct parent <li> is hovered —
           this is what makes each level independent instead of all levels
           popping open together. */
        .lend-submenu .lend-submenu {
            top: -0.4rem;
            left: 100%;
            margin-left: 2px;
            transform: translateX(8px);
        }
        .lend-submenu li:hover > .lend-submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        .lend-submenu li {
            position: relative;
        }
        .lend-submenu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            color: rgba(255,255,255,0.8) !important;
            font-size: 0.95rem !important;
            padding: 0.6rem 1.4rem;
            text-decoration: none;
            transition: 0.2s;
            white-space: nowrap;
        }
        .lend-submenu li:hover > .lend-submenu-link {
            background: rgba(255,255,255,0.05);
            color: #cbb394 !important;
        }
        .lend-submenu-link .chevron {
            font-size: 0.85rem;
            color: #fff;
            opacity: 1;
        }

        .icon-link {
            color: rgba(255,255,255,0.8) !important;
            font-size: 1.2rem;
            text-decoration: none;
            transition: 0.3s;
        }
        .icon-link:hover { color: #cbb394 !important; transform: translateY(-2px); }
        .badge.bg-dark { background-color: #cbb394 !important; color: #000000; }

        /* ===== মোবাইল মেনু (ওভারলে) ===== */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: #000000;
            z-index: 9999;
            overflow-y: auto;
            padding: 1.5rem 1.2rem;
            display: none;
            flex-direction: column;
        }
        .mobile-menu-overlay.active { display: flex; }
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .mobile-menu-header .close-btn {
            font-size: 2rem;
            color: rgba(255,255,255,0.7);
            background: none;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }
        .mobile-menu-header .close-btn:hover { color: #fff; transform: rotate(90deg); }
        .mobile-menu-header .logo-mobile img { height: 36px; filter: brightness(0) invert(1); }

        .mobile-menu-list { list-style: none; padding: 0; margin-top: 1.5rem; }
        .mobile-menu-list > li { margin-bottom: 0.2rem; }
        .mobile-menu-list > li > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            font-weight: 500;
            padding: 0.8rem 0.4rem;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: 0.2s;
            cursor: pointer;
        }
        .mobile-menu-list > li > a:hover { color: #cbb394; }
        .mobile-menu-list > li > a .arrow {
            font-size: 1.05rem;
            transition: 0.3s;
            color: #fff;
        }
        .mobile-menu-list > li > a .arrow.open { transform: rotate(180deg); }
        .mobile-submenu {
            list-style: none;
            padding: 0 0 0 1.2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .mobile-submenu.open { max-height: 500px; }
        .mobile-submenu li a {
            display: block;
            color: rgba(255,255,255,0.6);
            padding: 0.5rem 0.4rem;
            text-decoration: none;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }
        .mobile-submenu li a:hover { color: #cbb394; padding-left: 0.8rem; }
        .mobile-submenu li a.menu-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
        .mobile-submenu li a.menu-toggle:hover { padding-left: 0.4rem; }
        .mobile-submenu li a.menu-toggle .arrow {
            font-size: 0.9rem;
            color: #fff;
            transition: 0.3s;
        }
        .mobile-submenu li a.menu-toggle .arrow.open { transform: rotate(180deg); }
        .mobile-submenu-l2 { padding-left: 1rem; }
        .mobile-submenu-l3 { padding-left: 1rem; }

        @media (min-width: 769px) { .mobile-menu-overlay { display: none !important; } }

        /* =============================================
           BREADCRUMB
        ============================================= */
        .breadcrumb-custom {
            padding: 1.2rem 0 0.5rem;
            font-size: 0.8rem;
            color: #9b9b9b;
        }
        .breadcrumb-custom a {
            color: #9b9b9b;
            text-decoration: none;
            transition: 0.2s;
        }
        .breadcrumb-custom a:hover { color: #cbb394; }
        .breadcrumb-custom .separator { margin: 0 8px; color: #ddd2c6; }
        .breadcrumb-custom .current { color: #1c1c1c; font-weight: 500; }
        .breadcrumb-custom .count-badge {
            background: #eee8e2;
            color: #6f7686;
            padding: 0.1rem 0.7rem;
            border-radius: 40px;
            font-size: 0.7rem;
            margin-left: 8px;
        }


        /* ===== PRODUCT CARDS (shared component) ===== */
        .product-img-wrapper {
            aspect-ratio: 4/5;
            background: #f9f6f1;
            overflow: hidden;
            border-radius: var(--br) var(--br) 0 0;
            position: relative;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: 0.3s;
            background: #f0ede8;
        }
        .product-card:hover .product-img {
            transform: scale(1.02);
        }

        .product-card-info {
            padding: 0.6rem 0.8rem 0.4rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .product-title {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 2px;
        }
        .product-price {
            color: #9b7b5e;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .product-price .old {
            color: #b5a89c;
            font-size: 0.75rem;
            text-decoration: line-through;
            margin-right: 4px;
        }

        .add-to-cart,
        .add-to-cart-scroll,
        .add-to-cart-ng {
            background: transparent;
            border: none;
            border-top: 0.5px solid rgba(203, 179, 148, 0.3);
            border-radius: 0;
            padding: 0.6rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 600;
            transition: 0.3s;
            width: 100%;
            text-align: center;
            cursor: pointer;
            margin-top: 4px;
            color: #b8956a;
            letter-spacing: 0.5px;
            flex-shrink: 0;
        }
        .add-to-cart:hover,
        .add-to-cart-scroll:hover,
        .add-to-cart-ng:hover {
            background: #f0f0f0;
            border-top-color: #f0f0f0;
            border-radius: var(--br);
            color: #b8956a;
            transform: none;
            box-shadow: none;
        }

        .badge-sold {
            background: #cbb394;
            color: #000;
            font-size: 0.65rem;
            padding: 0.2rem 0.7rem;
            border-radius: 40px;
        }
        .section-sub {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #9b7b5e;
        }

        .view-all-link {
            color: #1c1c1c;
            border-bottom: 1px solid #1c1c1c;
            text-decoration: none;
            padding-bottom: 4px;
            transition: 0.3s;
        }
        .view-all-link:hover {
            color: #cbb394;
            border-bottom-color: #cbb394;
        }
        @media (max-width: 576px) {
            .view-all-link {
                display: inline-block;
                background: #000000;
                color: #ffffff !important;
                border: none !important;
                padding: 0.4rem 1.2rem;
                border-radius: var(--br);
                font-size: 0.8rem;
            }
            .view-all-link:hover {
                background: #cbb394;
                color: #000 !important;
            }
        }

        .row.gap-uniform {
            --bs-gutter-x: 1.5rem;
            --bs-gutter-y: 1.5rem;
        }
        @media (max-width: 768px) {
            .row.gap-uniform {
                --bs-gutter-x: 0.75rem;
                --bs-gutter-y: 0.75rem;
            }
        }

        /* =============================================

           FOOTER – Same as main page (mobile centered)
        ============================================= */
        .footer-next {
            background: #0a0a12;
            color: rgba(255, 255, 255, 0.6);
            padding-top: 4rem;
            padding-bottom: 0;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            overflow: hidden;
        }
        .footer-next::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #cbb394, #6a42ff, #ff5ca8, transparent);
            opacity: 0.5;
        }
        .footer-next .footer-brand img {
            height: 44px;
            filter: brightness(0) invert(1);
            display: block;
            object-fit: contain;
        }
        .footer-next .footer-brand .tagline {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.25);
            letter-spacing: 3px;
            margin-top: 6px;
            font-weight: 300;
        }
        .footer-next h6 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.2rem;
            position: relative;
            padding-bottom: 0.6rem;
        }
        .footer-next h6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #cbb394, #6a42ff);
            border-radius: 4px;
        }
        .footer-next ul { list-style: none; padding: 0; }
        .footer-next ul li { margin-bottom: 0.6rem; }
        .footer-next ul li a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .footer-next ul li a:hover { color: #cbb394; transform: translateX(5px); display: inline-block; }
        .footer-next .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.06);
            color: rgba(255,255,255,0.5);
            font-size: 1.1rem;
            transition: 0.3s;
            margin-right: 8px;
            text-decoration: none;
        }
        .footer-next .social-icons a:hover {
            background: linear-gradient(135deg, #ff5ca8, #6a42ff);
            border-color: transparent;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(106,66,255,0.25);
        }
        .footer-next .footer-divider {
            border-top: 1px solid rgba(255,255,255,0.05);
            margin: 2rem 0 1.5rem;
            position: relative;
        }
        .footer-next .footer-divider .divider-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.04);
            box-shadow: 0 0 30px rgba(255,255,255,0.02);
        }
        .payment-badges-wrapper {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            flex-wrap: wrap;
        }
        .payment-badges-wrapper img { height: 36px; object-fit: contain; opacity: 0.6; transition: 0.3s; }
        .payment-badges-wrapper img:hover { opacity: 1; }
        .footer-next .copyright {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.2);
            letter-spacing: 0.5px;
        }
        .footer-next .copyright a { color: rgba(255,255,255,0.3); text-decoration: none; }
        .footer-next .copyright a:hover { color: #cbb394; }

        @media (max-width: 768px) {
            .footer-next .row > div { text-align: center; }
            .footer-next h6::after { left: 50%; transform: translateX(-50%); }
            .footer-next .social-icons { justify-content: center; }
            .payment-badges-wrapper { justify-content: center; }
            .footer-next .footer-brand img { margin: 0 auto; height: 32px; }
            .footer-next .copyright { text-align: center; }
        }

        /* =============================================
           MOBILE BOTTOM NAV – Same as main page
        ============================================= */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: none;
            justify-content: space-around;
            align-items: center;
            padding: 8px 12px 14px;
            box-shadow: 0 -4px 25px rgba(0,0,0,0.08);
            border-top: 1px solid rgba(0,0,0,0.06);
            z-index: 1050;
        }
        .mobile-bottom-nav .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #8e8e93;
            font-size: 0.55rem;
            gap: 1px;
            position: relative;
            padding: 4px 8px;
            transition: 0.3s;
            font-weight: 500;
            min-width: 48px;
        }
        .mobile-bottom-nav .nav-item i {
            font-size: 1.5rem;
            transition: 0.3s;
        }
        .mobile-bottom-nav .nav-item span {
            transition: 0.3s;
            font-weight: 500;
        }
        .mobile-bottom-nav .nav-item.active,
        .mobile-bottom-nav .nav-item:hover {
            color: #cbb394;
        }
        .mobile-bottom-nav .nav-item.active i {
            transform: translateY(-2px);
            color: #cbb394;
        }
        .mobile-bottom-nav .nav-item.active span {
            font-weight: 600;
            color: #cbb394;
        }

        .nav-item:nth-child(1) i { color: #ff6b6b; }
        .nav-item:nth-child(2) i { color: #ff9f43; }
        .nav-item:nth-child(4) i { color: #2e86de; }
        .nav-item:nth-child(5) i { color: #1dd1a1; }

        .nav-home-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -20px;
        }
        .nav-home {
            background: linear-gradient(135deg, #ff5ca8, #6a42ff);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 8px 30px rgba(106,66,255,0.4);
            transition: 0.3s;
            border: 3px solid rgba(255,255,255,0.8);
        }
        .nav-home i {
            font-size: 2rem;
            color: #fff;
            transition: 0.3s;
        }
        .nav-home span { display: none; }
        .nav-home:hover {
            transform: scale(1.08) translateY(-4px);
            box-shadow: 0 12px 40px rgba(106,66,255,0.5);
        }
        .nav-home:active { transform: scale(0.95); }

        .mobile-cart-count {
            position: absolute;
            top: -2px;
            right: -2px;
            background: #ff4f9a;
            color: #fff;
            font-size: 0.5rem;
            font-weight: 700;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(255,79,154,0.5);
        }

        @media (max-width: 768px) {
            .mobile-bottom-nav { display: flex; }
            body { padding-bottom: 82px; }
        }

        /* =============================================
           CART OFF CANVAS – Fixed bottom padding for mobile
        ============================================= */
        .cart-header-pink {
            background: linear-gradient(135deg, #ff6b81, #d4818a);
            padding: 1rem 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-header-pink .cart-title {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }
        .cart-header-pink .cart-title i { color: rgba(255,255,255,0.7); margin-right: 8px; }
        .cart-header-pink .cart-close {
            color: rgba(255,255,255,0.6);
            font-size: 1.3rem;
            cursor: pointer;
            transition: 0.3s;
            background: none;
            border: none;
        }
        .cart-header-pink .cart-close:hover { color: #fff; transform: rotate(90deg); }
        .cart-body-light {
            background: #f8f5f2;
            padding: 1rem 1.5rem;
            flex-grow: 1;
            overflow-y: auto;
        }
        .cart-body-light .cart-item {
            background: #fff;
            border-radius: var(--br);
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.02);
        }
        .cart-body-light .cart-item img {
            width: 52px;
            height: 68px;
            object-fit: cover;
            object-position: top center;
            border-radius: var(--br);
            background: #f0ebe5;
        }
        .cart-footer-premium {
            background: #fff;
            padding: 1rem 1.5rem;
            border-top: 1px solid #eee8e2;
        }
        /* মোবাইলে বটম মেনুর জন্য নিচে প্যাডিং */
        @media (max-width: 768px) {
            .cart-footer-premium {
                padding-bottom: 80px;
            }
        }
        .cart-footer-premium .coupon-row {
            display: flex;
            gap: 8px;
            margin-bottom: 1rem;
        }
        .cart-footer-premium .coupon-row input {
            flex: 1;
            border: 1px solid #ddd2c6;
            border-radius: var(--br);
            padding: 0.5rem 1.2rem;
            font-size: 0.8rem;
            background: #f8f5f2;
        }
        .cart-footer-premium .coupon-row button {
            background: #000;
            color: #fff;
            border: none;
            border-radius: var(--br);
            padding: 0.5rem 1.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            transition: 0.3s;
        }
        .cart-footer-premium .coupon-row button:hover { background: #cbb394; color: #000; }
        .cart-footer-premium .totals {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            padding: 0.3rem 0;
            color: #2c2c2c;
        }
        .cart-footer-premium .totals .label { color: #6f7686; }
        .cart-footer-premium .totals .value { font-weight: 500; }
        .cart-footer-premium .totals.grand {
            font-size: 1rem;
            font-weight: 700;
            border-top: 1px solid #eee8e2;
            padding-top: 0.8rem;
            margin-top: 0.4rem;
            color: #1c1c1c;
        }
        .cart-footer-premium .checkout-btn {
            background: linear-gradient(135deg, #000, #1a1a1a);
            border: none;
            border-radius: var(--br);
            padding: 0.8rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: #fff;
            width: 100%;
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .cart-footer-premium .checkout-btn:hover {
            background: linear-gradient(135deg, #cbb394, #6a42ff);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(106,66,255,0.25);
            color: #fff;
        }

        .toast-notif {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: #000000dd;
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.6rem 1.4rem;
            border-radius: var(--br);
            z-index: 1200;
            border-left: 3px solid #cbb394;
            animation: slideUp 0.2s ease;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
