
    :root { 

      --bg: #F8FAFF; 

      --soft-pink: #FFF1F7; 

      --soft-blue: #EFF6FF; 

      --accent-pink: #E877C9; 

      --accent-pink-soft: #F3B8E3; 

      --accent-pink-deep: #C45AA8; 

      --accent-blue: #2563EB; 

      --accent-blue-soft: #93C5FD; 

      --accent-blue-deep: #1D4ED8; 

      --velvet: #0f172a; 

      --velvet-mid: #1e3a5f; 

      --gold: #60A5FA; 

      --charcoal: #0F172A; 

      --slate: #64748B; 

      --border: #E2E8F0; 

      --white: #ffffff; 

      --success: #10B981; 

      --warning: #F59E0B; 

      --danger: #EF4444; 

      --heart: #E877C9; 

      --gradient-brand: linear-gradient(135deg, #E877C9 0%, #2563EB 100%); 

      --gradient-brand-soft: linear-gradient(135deg, #FFF1F7 0%, #EFF6FF 100%); 

      --gradient-cta: linear-gradient(135deg, #C45AA8 0%, #E877C9 40%, #2563EB 100%); 

      --ring-focus: 0 0 0 3px rgba(37, 99, 235, 0.35); 

      --font-heading: 'Playfair Display', serif; 

      --font-body: 'Plus Jakarta Sans', sans-serif; 

      --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1); 

      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1); 

      --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1); 

      --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.08); 

      --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.16); 

      --shadow-glow: 0 12px 28px rgba(232, 119, 201, 0.28); 

      --shadow-glow-blue: 0 12px 28px rgba(37, 99, 235, 0.22); 

    } 

    *:focus-visible {
        outline: none;
        box-shadow: var(--ring-focus);
    }

    button:focus-visible,
    a:focus-visible,
    .icon-btn:focus-visible,
    .nav-link:focus-visible,
    .btn-primary:focus-visible,
    .load-more-btn:focus-visible {
        box-shadow: var(--ring-focus);
    }

 

    * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; outline: none; } 

     

    body {  

      margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--charcoal);  

      overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh;  

      line-height: 1.5; 

    } 

 

    body.modal-open, 

    body.checkout-open,
    body.drawer-open { 

        overflow: hidden; 

        position: fixed; 

        width: 100%; 

        height: 100%; 

    } 

 

    button { cursor: pointer; font-family: var(--font-body); border: none; background: none; } 

    a { text-decoration: none; color: inherit; } 

    .hidden { display: none !important; } 

 

    /* Toast Notification */ 

    .toast-notification { 

      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); 

      background: var(--charcoal); color: white; padding: 12px 24px; 

      border-radius: 50px; font-size: 14px; z-index: 10000; 

      box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: slideUp 0.3s var(--ease-smooth); 

      transition: opacity 0.3s; pointer-events: none; 

    } 

     

    @keyframes slideUp { 

      from { transform: translateX(-50%) translateY(20px); opacity: 0; } 

      to { transform: translateX(-50%) translateY(0); opacity: 1; } 

    } 

 


    /* Splash Screen — luxury themes */ 

    #splash-screen { 

        position: fixed; inset: 0; z-index: 9999; 

        display: flex; flex-direction: column; align-items: center; justify-content: center; 

        background: var(--bg); 

        transition: opacity 0.9s var(--ease-luxury), visibility 0.9s; 

        text-align: center; overflow: hidden; 

    } 

    #splash-screen.splash-theme-blush { 

        background: radial-gradient(ellipse at 50% 40%, #ffffff 0%, #FFF1F7 45%, #DBEAFE 100%); 

    } 

    #splash-screen.splash-theme-velvet { 

        background: radial-gradient(ellipse at 50% 35%, #312e81 0%, #1e3a5f 40%, #0f172a 75%, #0b1220 100%); 

    } 

    #splash-screen.splash-theme-gold { 

        background: radial-gradient(ellipse at 50% 40%, #1e3a5f 0%, #0f172a 55%, #0b1220 100%); 

    } 

    #splash-screen.splash-theme-velvet .splash-tagline, 

    #splash-screen.splash-theme-gold .splash-tagline { color: #f8e7f0; } 

    #splash-screen.splash-theme-velvet .splash-loading-label, 

    #splash-screen.splash-theme-gold .splash-loading-label { color: rgba(248,231,240,0.7); } 

    .splash-fx-layer { position: absolute; inset: 0; pointer-events: none; overflow: hidden; } 

    .splash-glow { 

        position: absolute; width: 280px; height: 280px; border-radius: 50%; 

        background: radial-gradient(circle, rgba(232,119,201,0.4), rgba(37,99,235,0.2), transparent 70%); 

        top: 50%; left: 50%; transform: translate(-50%, -55%); 

        filter: blur(8px); opacity: 0.8; animation: splashGlowPulse 3s ease-in-out infinite; 

    } 

    .splash-img {
        animation: splashLogoShimmer 2.4s var(--ease-luxury) 0.2s both;
    }

    @keyframes splashLogoShimmer {
        0% { opacity: 0; transform: scale(0.92); filter: brightness(0.9); }
        55% { opacity: 1; transform: scale(1.03); filter: brightness(1.08); }
        100% { opacity: 1; transform: scale(1); filter: brightness(1); }
    }

    @keyframes splashGlowPulse { 

        0%, 100% { opacity: 0.45; transform: translate(-50%, -55%) scale(0.92); } 

        50% { opacity: 0.9; transform: translate(-50%, -55%) scale(1.08); } 

    } 

    .splash-content { 

        position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; 

        opacity: 0; transform: scale(0.92); 

    } 

    #splash-screen.splash-anim-breathe .splash-content { animation: breatheLogo 2.5s var(--ease-luxury) forwards; } 

    #splash-screen.splash-anim-reveal .splash-content { animation: splashLogoReveal 1.8s var(--ease-luxury) forwards; } 

    #splash-screen.splash-anim-fade .splash-content { animation: splashFadeIn 1.4s ease forwards; } 

    #splash-screen.splash-anim-none .splash-content { opacity: 1; transform: none; animation: none; } 

    .splash-img { width: 160px; height: auto; margin-bottom: 15px; filter: drop-shadow(0 8px 24px rgba(212,131,169,0.35)); } 

    .splash-tagline { font-family: var(--font-heading); font-size: 18px; font-weight: 500; letter-spacing: 1px; color: var(--charcoal); margin-top: 5px; } 

    .splash-loader { margin-top: 28px; width: min(200px, 60vw); position: relative; z-index: 2; } 

    .splash-loader.hidden { display: none !important; } 

    .splash-loading-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; } 

    .splash-progress-track { height: 2px; background: rgba(15,23,42,0.12); border-radius: 999px; overflow: hidden; } 

    #splash-screen.splash-theme-velvet .splash-progress-track, 

    #splash-screen.splash-theme-gold .splash-progress-track { background: rgba(255,255,255,0.12); } 

    .splash-progress-bar { 

        height: 100%; width: 0%; border-radius: 999px; 

        background: linear-gradient(90deg, #E877C9, #2563EB, #E877C9); background-size: 200% 100%; 

        animation: splashShimmer 1.6s linear infinite; transition: width 0.4s ease; 

    } 

    .splash-loader-shimmer .splash-progress-bar { width: 100% !important; } 

    .splash-loader-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; } 

    .splash-loader-dots span { width: 6px; height: 6px; border-radius: 50%; background: #E877C9; animation: splashDot 1.2s ease-in-out infinite; } 

    .splash-loader-dots span:nth-child(2) { animation-delay: 0.15s; background: #60A5FA; } 

    .splash-loader-dots span:nth-child(3) { animation-delay: 0.3s; background: #2563EB; } 

    .splash-loader-progress .splash-loader-dots { display: none; } 

    .splash-loader-dots-only .splash-progress-track { display: none; } 

    .splash-loader-none { display: none !important; } 

    @keyframes breatheLogo { 

        0% { opacity: 0; transform: scale(0.9); } 

        40% { opacity: 1; transform: scale(1); } 

        100% { opacity: 1; transform: scale(1.05); } 

    } 

    @keyframes splashLogoReveal { 

        0% { opacity: 0; transform: translateY(18px) scale(0.94); filter: blur(8px); } 

        60% { opacity: 1; filter: blur(0); } 

        100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } 

    } 

    @keyframes splashFadeIn { from { opacity: 0; } to { opacity: 1; transform: scale(1); } } 

    @keyframes splashShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } } 

    @keyframes splashDot { 

        0%, 100% { opacity: 0.3; transform: scale(0.8); } 

        50% { opacity: 1; transform: scale(1.2); } 

    } 


    /* Checkout Page */ 

    #checkoutPage { 

        position: fixed; 

        inset: 0; 

        background: var(--bg); 

        z-index: 5000; 

        overflow-y: auto; 

        opacity: 0; 

        visibility: hidden; 

        transition: opacity 0.5s var(--ease-luxury), visibility 0.5s; 

        display: flex; 

        flex-direction: column; 

    } 

    #checkoutPage.show { 

        opacity: 1; 

        visibility: visible; 

    } 

    .checkout-header { 

        position: sticky; 

        top: 0; 

        background: rgba(255,255,255,0.85); 

        backdrop-filter: blur(15px); 

        -webkit-backdrop-filter: blur(15px); 

        padding: 20px 30px; 

        display: flex; 

        align-items: center; 

        gap: 20px; 

        border-bottom: 1px solid var(--border); 

        z-index: 10; 

    } 

    .checkout-header h1 { 

        margin: 0; 

        font-family: var(--font-heading); 

        font-size: 24px; 

        color: var(--charcoal); 

        flex: 1; 

    } 

    .checkout-content { 

        flex: 1; 

        padding: 30px; 

        max-width: 600px; 

        margin: 0 auto; 

        width: 100%; 

    } 

    .checkout-footer { 

        background: linear-gradient(180deg, #fff, var(--soft-pink)); 

        border-top: 1px solid var(--border); 

        padding: 40px 30px; 

        text-align: center; 

    } 

    .checkout-footer .footer-logo { 

        width: 100px; 

        height: auto; 

        margin-bottom: 8px; 

    } 

    .checkout-footer .footer-tagline { 

        font-family: var(--font-heading); 

        font-size: 12px; 

        letter-spacing: 1px; 

        color: var(--charcoal); 

        margin-bottom: 20px; 

    } 

    .checkout-footer .social-links { 

        display: flex; 

        justify-content: center; 

        gap: 20px; 

        font-size: 18px; 

        color: var(--charcoal); 

        margin-bottom: 20px; 

    } 

 

    /* Reveal Animation */ 

    .reveal {  

        opacity: 0;  

        transform: translateY(40px);  

        transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);  

        will-change: opacity, transform;  

    } 

    .reveal.active {  

        opacity: 1;  

        transform: translateY(0);  

    } 

 

    .brand-font { font-family: var(--font-heading); font-weight: 600; letter-spacing: 1px; } 

    .text-muted { font-size: 12px; color: var(--slate); } 

    .title-lg { margin: 0; font-family: var(--font-heading); font-size: 32px; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.3); } 

     

    .section-title {  

        padding: 50px 20px 30px;  

        margin: 0;  

        font-family: var(--font-heading);  

        font-size: 26px;  

        text-transform: uppercase;  

        color: var(--charcoal);  

        text-align: center;  

        letter-spacing: 1px; 

        position: relative; 

    } 

    .section-title::after {
        content: '';
        display: block;
        width: 48px;
        height: 3px;
        margin: 14px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, transparent, var(--accent-pink), var(--gold), transparent);
    }

    .section-title.with-filter { 

        display: flex; 

        align-items: center; 

        justify-content: center; 

        gap: 15px; 

    } 

    .section-filter-icon { 

        width: 40px; 

        height: 40px; 

        display: flex; 

        align-items: center; 

        justify-content: center; 

        cursor: pointer; 

        transition: 0.3s; 

    } 

    .section-filter-icon:hover { 

        color: var(--accent-pink); 

        transform: scale(1.1); 

    } 

 

.ad-bar {  
    background: linear-gradient(90deg, var(--velvet) 0%, var(--charcoal) 40%, var(--velvet-mid) 100%);  
    height: 42px;
    overflow: hidden;  
    position: relative;  
    z-index: 1;  
    display: flex;
    align-items: center;
    width: 100%;
    box-shadow: inset 0 -1px 0 rgba(232, 119, 201, 0.25);
}

.ad-track {
    display: flex;
    width: fit-content;
    animation: scrollContinuous 30s linear infinite;
    will-change: transform;
}

.ad-text-group {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-content {  
    font-size: 12px;
    font-weight: 600; 
    color: var(--bg);  
    text-transform: uppercase; 
    letter-spacing: 2px;  
    display: flex; 
    align-items: center; 
    gap: 60px;
    white-space: nowrap;
    padding: 0 20px;
}
.ad-content.preserve-spaces {
    white-space: pre;
}

.ad-content span {
    position: relative;
    display: inline-block;
}

.ad-content span::after {
    content: "✦";
    position: absolute;
    right: -35px;
    color: var(--accent-pink);
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(232, 119, 201, 0.55);
}

.ad-content span:last-child::after {
    display: none;
}

@keyframes scrollContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.ad-bar:hover .ad-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .ad-track {
        animation: none !important;
        transform: none !important;
    }
}
 

header { 
      padding: 0; 
      display: flex; 
      flex-direction: column;
      position: sticky; top: 0; 
      background: transparent; 
      border-bottom: 1px solid transparent; 
      z-index: 1000; 
      transition: background 0.4s var(--ease-luxury), backdrop-filter 0.4s var(--ease-luxury), -webkit-backdrop-filter 0.4s var(--ease-luxury), border-bottom 0.4s var(--ease-luxury); 
    } 

    header.scrolled {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-bottom: 1px solid var(--border);
    }

    .header-top-row { 
        width: 100%; 
        display: flex; 
        align-items: center; 
        justify-content: space-between;
        height: 80px;
        padding: 0 20px;
        position: relative;
        transition: height 0.4s var(--ease-luxury);
    }
    
    header.scrolled .header-top-row {
        height: 60px;
    }

    .header-left { 
        flex: 1; 
        display: flex; 
        justify-content: flex-start; 
        align-items: center; 
        z-index: 2;
        height: 100%;
    }

    .header-center { 
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        height: 100%;
    }

    .header-right { 
        flex: 1; 
        display: flex; 
        justify-content: flex-end; 
        align-items: center; 
        gap: 15px;
        z-index: 2;
        height: 100%;
    }

    .brand-logo-header { 
        height: 50px; 
        width: auto; 
        object-fit: contain; 
        cursor: pointer; 
        transition: transform 0.3s, height 0.4s var(--ease-luxury);
        display: block;
        margin: 0;
    } 
    header.scrolled .brand-logo-header {
        height: 40px;
    }

    .brand-logo-header:active { transform: scale(0.95); } 

 

    .icon-btn { font-size: 20px; color: var(--charcoal); padding: 8px; transition: 0.3s; display: flex; align-items: center; justify-content: center; } 

    .icon-btn:active { transform: scale(0.85); color: var(--accent-pink);} 

 

    .desktop-nav-row { display: none; background:white;}  

 

    .nav-item-wrapper { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } 

     

    .nav-link {  

        font-family: var(--font-body); font-size: 13px; font-weight: 600;  

        text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal);  

        cursor: pointer; padding: 10px 0; transition: color 0.3s ease; 

        position: relative; z-index: 1200; 

    } 

     

    .nav-item-wrapper:hover .nav-link, 

    .nav-link.active { color: var(--accent-pink) !important; } 

     

    .nav-link::after {  

        content:''; position: absolute; bottom: 0px; left: 0; width: 0; height: 2px;  

        background: var(--accent-pink); transition: 0.3s var(--ease-luxury); opacity: 0; 

    } 

    .nav-item-wrapper:hover .nav-link::after, 

    .nav-link.active::after { width: 100%; opacity: 1; } 

 

    .mega-menu { 

        position: absolute; 

        top: 100%; 

        left: 50%; 

        transform: translateX(-50%) translateY(10px);  

        background: white;  

        border: 1px solid var(--border); 

        border-radius: 4px; 

        padding: 10px 0;  

        display: flex; flex-direction: column; align-items: center; 

        min-width: 160px;  

        opacity: 0; visibility: hidden;  

        transition: opacity 0.2s var(--ease-luxury), transform 0.2s var(--ease-luxury); 

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);  

        z-index: 1100; pointer-events: none; 

    } 

    .nav-item-wrapper:hover .mega-menu, .mega-menu:hover { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; } 

     

    .mega-scroll-track { display: flex; flex-direction: column; width: 100%; } 

    .mega-item {  

        display: block; width: 100%; text-align: center; 

        padding: 10px 20px;  

        cursor: pointer; transition: 0.2s;  

        color: var(--slate); 

        font-family: var(--font-body); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; 

    } 

    .mega-item:hover { color: var(--accent-pink); background: #f8fafc; } 

 

    .cart-trigger { position: relative; cursor: pointer; transition: 0.3s; display: flex; align-items: center; } 

    .cart-trigger:active { transform: scale(0.9); } 

    @keyframes badgePulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } 

    @keyframes cartBadgeBounce {
        0% { transform: scale(1); }
        35% { transform: scale(1.45); }
        60% { transform: scale(0.92); }
        100% { transform: scale(1); }
    }

    .cart-badge {  

      position: absolute; top: -5px; right: -5px; background: var(--gradient-cta, var(--accent-pink)); color: var(--white);  

      font-size: 9px; height: 16px; min-width: 16px; display: flex; align-items: center; justify-content: center;  

      border: 1.5px solid white; border-radius: 10px; font-weight: 700; 

      animation: badgePulse 2s infinite ease-in-out; 

    } 

    .cart-badge.cart-badge-bounce {
      animation: cartBadgeBounce 0.55s var(--ease-spring);
    } 

    .custom-bag-icon { width: 22px; height: 22px; stroke: var(--charcoal); fill: none; } 

 

    .search-pill-wrapper { 

        position: relative; width: 100%; height: 44px; 

        background: var(--white); border: 1px solid var(--border); border-radius: 50vh; 

        display: flex; align-items: center;  

        box-shadow: var(--shadow-sm);  

        transition: 0.3s; 

    } 

    .search-pill-wrapper:focus-within { border-color: var(--charcoal); transform: translateY(-1px); } 

    .search-icon-btn { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--slate); font-size: 14px; cursor: pointer; z-index: 2; } 

    .search-input-field { width: 100%; height: 100%; background: transparent; border: none; padding-left: 20px; padding-right: 20px; font-family: var(--font-body); font-size: 14px; color: var(--charcoal); border-radius: 50vh; } 

    .desktop-search-container { display: none; width: 250px; transition: width 0.3s; } 

    .desktop-search-container:focus-within { width: 280px; } 

    .mobile-search-container { padding: 15px 20px; display: block; } 

 

    /* Drawers */ 

    .cart-panel, .menu-drawer, .filter-drawer, .fav-drawer, .share-drawer {  

        position: fixed; top: 0; height: 100%; background: #fff;  

        z-index: 1200; transition: transform 0.6s var(--ease-luxury);  

        display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.15);  

        width: 100%; max-width: 420px; overscroll-behavior: contain; 

    } 

    .cart-panel { right: 0; transform: translateX(100%); } 

    .cart-panel.open { transform: translateX(0); } 

    .menu-drawer { left: 0; transform: translateX(-100%); z-index: 1100; width: 320px; background: #fff; } 

    .menu-drawer.open { transform: translateX(0); } 

    .filter-drawer { left: 0; transform: translateX(-100%); z-index: 1150; width: 320px; background: #fff; } 

    .filter-drawer.open { transform: translateX(0); } 

    .fav-drawer { left: 0; transform: translateX(-100%); z-index: 1150; width: 320px; background: #fff; } 

    .fav-drawer.open { transform: translateX(0); } 

    .share-drawer { bottom: 0; top: auto; height: auto; max-height: 80vh; transform: translateY(100%); width: 100%; max-width: 100%; border-radius: 20px 20px 0 0; } 

    .share-drawer.open { transform: translateY(0); } 

 

    .cart-header {  

        padding: 30px;  

        border-bottom: 1px solid #f1f5f9;  

        display: flex;  

        justify-content: space-between;  

        align-items: center;  

        background: rgba(255,255,255,0.95);  

        backdrop-filter: blur(10px);  

        flex-shrink: 0;  

    } 

    .cart-header h2 { margin: 0; font-family: var(--font-heading); font-size: 22px; letter-spacing: 0.5px; } 

    .drawer-brand-header .drawer-brand-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

    .drawer-header-mark {
        width: 28px;
        height: 28px;
        object-fit: contain;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .drawer-brand-label {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 20px;
        letter-spacing: 0.6px;
        color: var(--charcoal);
        line-height: 1.2;
    }

 

    .drawer-content { flex: 1; overflow-y: auto; display: flex; flex-direction: column; } 

    .drawer-item { border-bottom: 1px solid #f1f5f9; } 

    .drawer-main-link {  

        display: flex;  

        justify-content: space-between;  

        align-items: center;  

        padding: 22px 30px;  

        font-family: var(--font-heading);  

        font-size: 18px;  

        color: var(--charcoal);  

        cursor: pointer;  

        transition: 0.3s;  

        background: white;  

    } 

    button.drawer-main-link,
    button.drawer-sub-link {
        border: none;
        width: 100%;
        text-align: left;
        font: inherit;
        appearance: none;
        -webkit-appearance: none;
    }

    .drawer-main-link:hover { padding-left: 35px; color: var(--accent-pink); } 

    .drawer-chevron { font-size: 12px; color: var(--slate); transition: transform 0.3s; } 

    .drawer-item.active .drawer-chevron { transform: rotate(180deg); } 

    .drawer-sub-panel { height: 0; overflow: hidden; background: #f8fafc; transition: height 0.4s var(--ease-luxury); } 

    .drawer-sub-link {  

        display: flex;  

        align-items: center;  

        gap: 15px;  

        padding: 12px 30px 12px 40px;  

        font-size: 13px;  

        color: var(--slate);  

        cursor: pointer;  

        transition: 0.2s;  

        border-left: 2px solid transparent;  

        background: transparent;

    } 

    .drawer-sub-link:hover { color: var(--charcoal); background: #f1f5f9; border-left-color: var(--accent-pink); } 

    .drawer-sub-thumb { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; } 

 

    /* Filter Drawer - Dynamic Attribute Filters */ 

    .filter-section {  

        padding: 20px 30px;  

        border-bottom: 1px solid var(--border);  

    } 

    .filter-section h3 {  

        font-family: var(--font-heading);  

        font-size: 16px;  

        margin: 0 0 15px;  

        color: var(--charcoal);  

        letter-spacing: 0.5px; 

    } 

    .filter-option-list { 

        display: flex; 

        flex-direction: column; 

        gap: 12px; 

    } 

    .filter-option-list label { 

        display: flex; 

        align-items: center; 

        gap: 12px; 

        cursor: pointer; 

        font-size: 14px; 

        color: var(--slate); 

        transition: 0.2s; 

        padding: 5px 0; 

    } 

    .filter-option-list label:hover { 

        color: var(--accent-pink); 

        padding-left: 5px; 

    } 

    .filter-option-list input[type="radio"], 

    .filter-option-list input[type="checkbox"] { 

        width: 16px; 

        height: 16px; 

        accent-color: var(--accent-pink); 

    } 

 

    /* Share Drawer */ 

    .share-options { 

        padding: 20px 30px; 

        display: grid; 

        grid-template-columns: repeat(4, 1fr); 

        gap: 20px; 

    } 

    .share-option { 

        display: flex; 

        flex-direction: column; 

        align-items: center; 

        gap: 8px; 

        cursor: pointer; 

        padding: 15px; 

        border-radius: 12px; 

        transition: 0.3s; 

        width: 100%;

        font: inherit;

        color: inherit;

        background: transparent;

        border: none;

        -webkit-appearance: none;

        appearance: none;

    } 

    .share-option:hover,
    .share-option:focus-visible { 

        background: #f8fafc; 

        transform: translateY(-2px); 

        outline: none;

    } 

    .share-option i { 

        font-size: 24px; 

    } 

    .share-option span { 

        font-size: 11px; 

        font-weight: 600; 

        color: var(--slate); 

    } 

    .share-option.whatsapp i { color: #25D366; } 

    .share-option.messenger i { color: #0084FF; } 

    .share-option.email i { color: #EA4335; } 

    .share-option.copy i { color: var(--charcoal); } 

 

    .filter-actions {  

        padding: 30px;  

        display: flex;  

        gap: 15px;  

    } 

    .filter-apply-btn {  

        flex: 2;  

        background: var(--charcoal);  

        color: white;  

        padding: 14px;  

        border-radius: 10px;  

        font-weight: 600; 

        font-size: 13px; 

        text-transform: uppercase; 

        letter-spacing: 1px; 

        transition: 0.3s; 

    } 

    .filter-apply-btn:hover { 

        background: var(--accent-pink); 

        transform: scale(0.98); 

    } 

    .filter-reset-btn {  

        flex: 1;  

        background: #f1f5f9;  

        color: var(--slate);  

        padding: 14px;  

        border-radius: 10px;  

        font-weight: 600; 

        font-size: 13px; 

        text-transform: uppercase; 

        letter-spacing: 1px; 

        transition: 0.3s; 

    } 

    .filter-reset-btn:hover { 

        background: var(--border); 

        color: var(--charcoal); 

    } 

 

    .drawer-footer {  

        padding: 40px 30px;  

        background: linear-gradient(180deg, #fff, var(--soft-pink));  

        border-top: 1px solid var(--border);  

        display: flex;  

        flex-direction: column;  

        align-items: center;  

        text-align: center; 

        width: 100%; 

        flex-shrink: 0; 

    } 

    .drawer-logo { width: 100px; height: auto; margin-bottom: 8px; } 

    .drawer-tagline { font-family: var(--font-heading); font-size: 12px; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 20px; } 

    .drawer-socials { display: flex; gap: 12px; align-items: center; justify-content: center; margin-bottom: 12px; } 

     

    .cart-items-container { flex: 1; overflow-y: auto; padding: 0 30px; display: flex; flex-direction: column; } 

    .lxy-cart-item { display: flex; justify-content: space-between; align-items: center; padding: 25px 0; border-bottom: 1px solid #f1f5f9; position: relative; transition: 0.4s var(--ease-luxury); } 

    .lxy-visual-group { display: flex; align-items: center; gap: 20px; flex: 1; transition: 0.4s; } 

    .lxy-cart-item.dimmed .lxy-visual-group { opacity: 0.3; filter: grayscale(100%); pointer-events: none; } 

     

    .lxy-thumb {  

        width: 70px; height: 70px; min-width: 70px; min-height: 70px;  

        border-radius: 50%; border: 1px solid var(--border); box-shadow: var(--shadow-sm); 

        flex-shrink: 0;  

        object-fit: cover; 

    } 

 

    .lxy-details { display: flex; flex-direction: column; gap: 4px; } 

    .lxy-title { font-family: var(--font-heading); font-size: 16px; color: var(--charcoal); margin: 0; line-height: 1.2; } 

    .lxy-meta { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); } 

 

    .lxy-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 8px; min-width: 100px; } 

    .price-trash-wrapper { position: relative; height: 24px; width: 100%; display: flex; align-items: center; justify-content: flex-end; } 

    .lxy-price { font-weight: 600; font-size: 15px; transition: 0.4s var(--ease-luxury); position: absolute; right: 0; opacity: 1; transform: translateY(0); } 

    .trash-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: #ef4444; background: #fef2f2; border-radius: 50%; cursor: pointer; position: absolute; right: 0; opacity: 0; transform: scale(0.5); pointer-events: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } 

    .lxy-cart-item.dimmed .lxy-price { opacity: 0; transform: translateY(-10px); } 

    .lxy-cart-item.dimmed .trash-btn { opacity: 1; transform: scale(1); pointer-events: auto; } 

 

    .qty-capsule { display: flex; align-items: center; justify-content: space-between; width: 90px; height: 32px; border: 1px solid var(--border); border-radius: 50px; padding: 0 4px; background: #fff; } 

    .qty-btn { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--charcoal); transition: 0.2s; cursor: pointer; } 

    .qty-btn:hover { background: #f8fafc; } 

    .qty-btn:active { background: var(--charcoal); color: white; } 

    .qty-display { font-size: 12px; font-weight: 600; width: 20px; text-align: center; } 

    .empty-cart-msg { text-align: center; padding: 60px 20px; color: var(--slate); font-family: var(--font-heading); font-size: 18px; } 

    .cart-footer { padding: 30px; border-top: 1px solid var(--border); background: #fff; margin-top: auto; } 

    .checkout-btn { width: 100%; padding: 18px; background: var(--charcoal); color: white; font-weight: 700; text-transform: uppercase; border-radius: 14px; letter-spacing: 1px; transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury); } 
    .checkout-btn:hover { background: var(--accent-pink-deep); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
    .checkout-btn:active { transform: scale(0.97); } 

 

    .nav-container { display: flex; gap: 12px; overflow-x: auto; padding: 10px 20px 20px; scrollbar-width: none; background: transparent; } 

    .nav-container::-webkit-scrollbar { display: none; } 

    .nav-pill { flex: 0 0 auto; padding: 10px 22px; border-radius: 50px; background: linear-gradient(90deg, var(--white), var(--white)); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); border: 1px solid var(--border); transition: 0.35s var(--ease-spring); cursor: pointer; box-shadow: var(--shadow-sm); } 

    .nav-pill:hover { color: var(--accent-pink-deep); border-color: var(--accent-pink-soft); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

    .nav-pill.active { background: linear-gradient(135deg, var(--charcoal), var(--velvet-mid)); color: var(--bg); border-color: transparent; box-shadow: var(--shadow-glow); transform: scale(1.05); } 

 

    .hero-carousel { position: relative; width: 100%; height: min(62vh, 720px); min-height: 280px; overflow: hidden; touch-action: pan-y; transition: opacity 1.2s var(--ease-luxury), transform 1.2s var(--ease-luxury); } 
    @media (max-width: 767px) {
        .hero-carousel { height: min(52vh, 480px); min-height: 240px; }
    }

    .carousel-track { display: flex; height: 100%; will-change: transform; cursor: grab; } 

    .carousel-track:active { cursor: grabbing; } 

    .slide { flex: 0 0 100%; position: relative; height: 100%; } 

    .slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroKenBurns 18s var(--ease-luxury) infinite alternate; } 
    .hero-carousel:hover .slide img { animation-play-state: paused; transform: scale(1.08); transition: transform 8s var(--ease-luxury); }

    @keyframes heroKenBurns {
        0% { transform: scale(1.02) translate3d(0, 0, 0); }
        100% { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
    }

    .slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 23, 42, 0.72) 0%, rgba(232, 119, 201, 0.14) 40%, rgba(37, 99, 235, 0.08) 65%, transparent 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 50px 30px; } 
    .slide-overlay .title-lg { text-shadow: 0 8px 28px rgba(0,0,0,0.35); letter-spacing: 0.02em; animation: heroTitleFade 1.1s var(--ease-luxury) both; }

    @keyframes heroTitleFade {
        from { opacity: 0; transform: translateY(12px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
        .slide img { animation: none; transform: scale(1.02); }
        .slide-overlay .title-lg { animation: none; }
        .splash-img { animation: none !important; }
    }

    .carousel-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; } 

    .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: 0.3s; } 

    .dot.active { background: var(--accent-pink); box-shadow: 0 0 12px rgba(232, 119, 201, 0.8); transform: scale(1.55); } 

    .hero-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; cursor: pointer; z-index: 10; transition: 0.3s; opacity: 0; } 

    .hero-carousel:hover .hero-nav-btn { opacity: 1; } 

    .hero-nav-btn:hover { background: rgba(255,255,255,0.9); color: var(--charcoal); } 

    .hero-prev { left: 20px; } 

    .hero-next { right: 20px; } 
    .desktop-hero { display: none; }
    .mobile-hero { display: block; }
 

/* 2.5D Category Carousel */ 
    .category-container {  
        position: relative;  
        width: 100vw; 
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        height: 460px; 
        display: flex;  
        justify-content: center;  
        align-items: center;  
        overflow: hidden; 
        margin-top: 20px;
        margin-bottom: 40px;  
    }  
    .category-carousel-track {
        position: absolute;
        width: 100%; 
        height: 100%; 
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .category-card {  
        position: absolute;
        width: 240px;  
        display: flex;  
        flex-direction: column;  
        align-items: center;  
        justify-content: center;  
        cursor: pointer;  
        transition: transform 0.6s var(--ease-luxury), opacity 0.6s var(--ease-luxury), z-index 0s;
        will-change: transform, opacity;
        -webkit-user-drag: none; 
        user-select: none;
    }  
    .category-img-wrapper {
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        box-shadow: var(--shadow-sm);
        border: 2px solid transparent;
        transition: box-shadow 0.6s var(--ease-luxury), border 0.6s var(--ease-luxury), transform 0.45s var(--ease-spring);
    }
    .category-card.active .category-img-wrapper { 
        box-shadow: 0 0 32px rgba(232, 119, 201, 0.5), 0 12px 28px rgba(26, 16, 37, 0.18); 
        border: 3px solid var(--accent-pink); 
    }  
    .category-label { 
        margin-top: 15px; 
        text-align: center; 
        transition: 0.5s; 
        pointer-events: none; 
    }  
    .category-card.active .category-label { transform: scale(1.12); }  
    .category-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--slate); display: block; margin-bottom: 4px; }  
    .category-title { font-family: var(--font-heading); font-size: 22px; color: var(--charcoal); margin: 0; font-weight: 600; } 

    /* Carousel Navigation Buttons */
    .cat-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255,255,255,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--charcoal);
        font-size: 16px;
        cursor: pointer;
        z-index: 100;
        transition: 0.3s;
        box-shadow: var(--shadow-sm);
    }
    .cat-nav-btn:hover { background: white; color: var(--accent-pink); transform: translateY(-50%) scale(1.05); }
    .cat-prev { left: 20px; }
    .cat-next { right: 20px; }

    /* Responsive scaling for mobile 3D */
    @media(max-width: 767px) {
        .category-container { height: 340px; width: 100vw; margin-left: calc(-50vw + 50%); }
        .category-card { width: 168px; }
        .category-img-wrapper { width: 168px; height: 168px; }
        .category-title { font-size: 17px; }
        .category-sub { font-size: 9px; }
        .cat-nav-btn { width: 36px; height: 36px; font-size: 14px; }
        .cat-prev { left: 10px; }
        .cat-next { right: 10px; }

/* --- FORCE 3 Items Per Row Mobile Grid --- */
    .grid {  
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 8px !important; 
        padding: 0 10px !important; 
    }  
    
    .card-info { padding: 8px !important; }  
    .card h3 { font-size: 10px !important; min-height: 28px !important; line-height: 1.2 !important; margin-bottom: 4px !important; }  
    .price-container { margin-bottom: 6px !important; }
    .price-current { font-size: 11px !important; }  
    .price-original { font-size: 9px !important; }
    .add-btn { padding: 6px 4px !important; font-size: 8px !important; gap: 3px !important; border-radius: 6px !important; }  
    .add-btn svg { width: 12px !important; height: 12px !important; }    
    /* Shrink the card contents so they actually fit in 1/3 of the screen */
    .card-info {  
        padding: 8px; /* Less padding inside the card */
    }  
    .card h3 {  
        font-size: 11px; /* Smaller title */
        margin: 0 0 5px;  
        -webkit-line-clamp: 2; /* Still limits to 2 lines */
        min-height: 28px; /* Adjust height for smaller font */
    }  
    .price-container {
        margin-bottom: 8px;
    }
    .price-current {  
        font-size: 12px; /* Smaller main price */
    }  
    .price-original {
        font-size: 10px; /* Smaller original price */
    }
    .add-btn {  
        padding: 8px 4px; /* Tighter button padding */
        font-size: 9px; /* Smaller button text */
        gap: 4px; /* Less space between icon and text */
        border-radius: 6px;
    }  
    .add-btn svg {  
        width: 14px; /* Smaller cart icon */ 
        height: 14px;  
    }
    .sale-badge {
        padding: 4px 6px;
        font-size: 9px;
        top: 8px;
        left: 8px;
    }
    } 

    /* Sub Category Grid */ 

    .sub-cat-grid {  

        display: flex;  

        flex-wrap: wrap;  

        justify-content: center;  

        gap: 20px;  

        padding: 0 20px 40px;  

        max-width: 1200px;  

        margin: 0 auto;  

    } 

    .sub-cat-circle {  

        width: 130px;  

        height: 130px;  

        border-radius: 50%;  

        background-size: cover;  

        background-position: center;  

        display: flex;  

        align-items: center;  

        justify-content: center;  

        position: relative;  

        overflow: hidden;  

        box-shadow: var(--shadow-sm);  

        cursor: pointer;  

        transition: 0.5s var(--ease-luxury);  

        flex-shrink: 0;  

    } 

    .sub-cat-circle:active { transform: scale(0.95); } 

    .sub-cat-circle::before { content:''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition:0.3s; } 

    .sub-cat-circle:hover::before { background: none; } 

    .sub-cat-text {  

        position: relative;  

        z-index: 2;  

        color: white;  

        font-family: var(--font-heading);  

        font-size: 14px;  

        letter-spacing: 1px;  

        text-align: center;  

        font-weight: 500;  

        text-shadow: 0 2px 4px rgba(0,0,0,0.5);  

    } 

    .sub-cat-circle:hover .sub-cat-text { transform: scale(1.1); } 

    .sub-cat-circle.selected { border: 3px solid white; box-shadow: 0 0 0 2px var(--charcoal); transform: scale(1.1); } 

 

    /* Filter Bar */ 

    .filter-bar { 

        display: flex; 

        justify-content: flex-start; 

        align-items: center; 

        padding: 0 20px 20px; 

        max-width: 1400px; 

        margin: 0 auto; 

    } 

    .filter-icon { 

        display: flex; 

        align-items: center; 

        justify-content: center; 

        cursor: pointer; 

        transition: 0.3s; 

    } 

    .filter-icon:hover { 

        color: var(--accent-pink); 

        transform: scale(1.1); 

    } 

    .filter-icon i { font-size: 25px; } 

 

    /* Products Grid */ 

    .grid {  

        display: grid;  

        grid-template-columns: repeat(2, 1fr);  

        gap: 15px;  

        padding: 0 20px;  

        max-width: 1400px;  

        margin: 0 auto;  

    } 

     

    /* Load More Button with V-Shaped Underline */ 

    .load-more-container { 

        display: flex; 

        justify-content: center; 

        padding: 40px 20px 60px; 

    } 

    .load-more-btn { 

        background: transparent; 

        border: none; 

        color: var(--charcoal); 

        font-family: var(--font-body); 

        font-size: 14px; 

        font-weight: 600; 

        text-transform: uppercase; 

        letter-spacing: 2px; 

        cursor: pointer; 

        padding: 0 0 8px 0; 

        position: relative; 

        transition: 0.3s; 

    } 

    .load-more-btn::after { 

        content: ''; 

        position: absolute; 

        bottom: 0; 

        left: 50%; 

        transform: translateX(-50%); 

        width: 110px; 

        height: 2px; 

        background: var(--charcoal); 

        transition: 0.3s; 

    } 

    .load-more-btn::before { 

        content: '▼'; 

        position: absolute; 

        bottom: -10px; 

        left: 50%; 

        transform: translateX(-50%) scaleY(0.6); 

        font-size: 12px; 

        color: var(--charcoal); 

        opacity: 0; 

        transition: 0.3s; 

    } 

    .load-more-btn:hover { 

        color: var(--accent-pink); 

    } 

    .load-more-btn:hover::after { 

        background: var(--accent-pink); 

        width: 50px; 

    } 

    .load-more-btn:hover::before { 

        opacity: 1; 

        bottom: -15px; 

        color: var(--accent-pink); 

    } 

    .load-more-btn.hidden { 

        display: none; 

    } 

 

