/* ==========================================
   LUXURY DESIGN SYSTEM VARIABLES & TOKENS
   ========================================== */
:root {
    /* Color Palette */
    --clr-gold-light: #f5d061;
    --clr-gold-theme: #cca450;
    --clr-gold-dark: #a98031;
    
    --clr-black: #0d0d0d;
    --clr-charcoal: #1c1a17;
    --clr-dark-bg: #090909;
    --clr-dark-card: #151311;
    
    --clr-cream: #fdfbf7;
    --clr-ivory: #FAF7F2;
    --clr-white: #ffffff;
    --clr-gray-light: #f7fafc;
    --clr-gray-text: #718096;
    --clr-gray-border: #e2e8f0;

    /* Gradients */
    --grad-gold: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold-theme) 50%, var(--clr-gold-dark) 100%);
    --grad-dark: linear-gradient(180deg, #151311 0%, #0d0d0d 100%);
    --grad-light: linear-gradient(180deg, var(--clr-cream) 0%, var(--clr-ivory) 100%);
    --grad-shimmer: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);

    /* Typography Hierarchy */
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Spacing Scale (rem) */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 3rem;     /* 48px */
    --space-xl: 5rem;     /* 80px */
    --space-xxl: 10rem;   /* 160px */

    /* Boundaries and Borders */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-round: 50%;
    
    --border-gold-soft: 1px solid rgba(204, 164, 80, 0.15);
    --border-white-soft: 1px solid rgba(255, 255, 255, 0.08);

    /* Shadows & Depths */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.02);
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 25px 60px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 10px 30px rgba(204, 164, 80, 0.15);

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
body {
    background-color: var(--clr-white);
    color: var(--clr-black);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--clr-black);
}
::-webkit-scrollbar-thumb {
    background: var(--clr-gold-theme);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold-light);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Luxury Sections Space */
section {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}
@media (min-width: 992px) {
    section {
        padding: 12rem 0;
    }
}

/* Alternate Backgrounds */
.bg-cream-gradient {
    background: var(--grad-light);
}
.bg-luxury-dark {
    background: var(--clr-black);
}
.bg-charcoal {
    background: var(--clr-charcoal);
}
.bg-ivory {
    background: var(--clr-ivory);
}

/* Section Header Mockup */
.section-title-mockup {
    margin-bottom: var(--space-lg);
}
.section-title-mockup h2 {
    font-size: clamp(2.88rem, 7.2vw, 6.48rem); /* 20% smaller than hero title */
    color: #dfaa43;
    text-transform: none;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}
.bg-luxury-dark .section-title-mockup h2 {
    color: #dfaa43;
    text-transform: none;
}
.subtitle-gray {
    font-family: var(--font-body);
    font-size: 1.52rem;
    letter-spacing: 0.05em;
    color: var(--clr-gray-text);
    max-width: 850px;
    margin: 0 auto;
}
.bg-luxury-dark .subtitle-gray {
    color: #a0aec0;
}

/* Diamond Divider */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 var(--space-md) 0;
}
.divider-line {
    width: 80px;
    height: 1px;
    background-color: var(--clr-gold-theme);
    opacity: 0.4;
}
.divider-icon {
    color: var(--clr-gold-theme);
    font-size: 11px;
    animation: goldPulse 3s infinite ease-in-out;
}

/* Global Micro-Interactions */
.shimmer-btn-container {
    position: relative;
    overflow: hidden;
}
.shimmer-btn-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: var(--grad-shimmer);
    transform: skewX(-25deg);
    transition: 0.75s;
}
.shimmer-btn-container:hover::after {
    left: 150%;
    transition: 0.75s;
}

/* Pointer Glow */
.custom-cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 164, 80, 0.06) 0%, rgba(204, 164, 80, 0) 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* ==========================================
   HEADER & FLOATING NAVBAR
   ========================================== */
.premium-navbar-wrapper {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    transition: var(--transition-smooth);
}

/* When header is scrolled */
.premium-navbar-wrapper.scrolled {
    top: 0;
}

.premium-navbar {
    background-color: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(25px) saturate(200%);
    border: var(--border-white-soft);
    border-radius: var(--radius-xl);
    padding: 18px var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1400px;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-smooth);
}

.premium-navbar-wrapper.scrolled .premium-navbar {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 15px 5%;
    background-color: rgba(10, 10, 10, 0.95);
}

.premium-navbar .navbar-logo img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}
.premium-navbar-wrapper.scrolled .navbar-logo img {
    height: 38px;
}

/* Links & Megamenu Dropdown */
.premium-navbar .navbar-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.premium-navbar .navbar-links li {
    position: relative;
    padding: 10px 0;
}

.premium-navbar .navbar-links a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: var(--transition-fast);
}

.premium-navbar .navbar-links a:hover,
.premium-navbar .navbar-links a.active {
    color: var(--clr-gold-light);
}

/* Luxury Dropdown */
.premium-navbar .navbar-links li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    border: var(--border-gold-soft);
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-smooth);
    display: block; /* Overrides bootstrap default flex behaviour */
    margin: 0;
}

.premium-navbar .navbar-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.premium-navbar .navbar-links li .dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.premium-navbar .navbar-links li .dropdown-menu a:hover {
    color: var(--clr-gold-light);
    background: rgba(204, 164, 80, 0.08);
    padding-left: 30px;
}

.premium-navbar .navbar-contact a {
    color: var(--clr-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}
.premium-navbar .navbar-contact a:hover {
    background: var(--grad-gold);
    color: var(--clr-black);
    border-color: var(--clr-gold-theme);
    box-shadow: var(--shadow-gold);
}
.premium-navbar .navbar-contact a i {
    margin-right: 8px;
    color: var(--clr-gold-light);
}
.premium-navbar .navbar-contact a:hover i {
    color: var(--clr-black);
}

/* Floating Action Buttons */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 35px;
    background-color: #25d366;
    color: var(--clr-white);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}
.fab-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    color: var(--clr-white);
}

.fab-tryon {
    position: fixed;
    bottom: 30px;
    right: 35px;
    background: var(--grad-gold);
    color: var(--clr-black);
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    transition: var(--transition-smooth);
    border: none;
}
.fab-tryon:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(204, 164, 80, 0.35);
    color: var(--clr-black);
}

/* Scroll to Top */
.scrolltotop {
    position: fixed;
    bottom: 30px;
    left: 35px;
    background-color: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    color: var(--clr-white);
    width: 45px;
    height: 45px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: var(--border-white-soft);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
}
.scrolltotop.show {
    opacity: 1;
    visibility: visible;
}
.scrolltotop:hover {
    background: var(--clr-gold-theme);
    color: var(--clr-black);
    border-color: var(--clr-gold-theme);
    transform: translateY(-5px);
}

/* ==========================================
   CINEMATIC HERO SECTION
   ========================================== */
#premium-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 850px;
    background-image: url('https://images.unsplash.com/photo-1601121141461-9d6647bca1ed?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: block; /* Changed from flex to block to fix centering */
    text-align: center;
    overflow: hidden;
}

#premium-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

/* Particles Container */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(245, 208, 97, 0.15);
    border-radius: 50%;
    animation: drift 15s infinite ease-in-out;
}

#premium-hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    color: var(--clr-white);
    padding: 0 10px;
    max-width: 1400px;
    width: 100%;
}

#premium-hero .hero-logo-box {
    margin-bottom: var(--space-sm);
    animation: float 6s infinite ease-in-out;
}
#premium-hero .hero-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(244, 202, 73, 0.2));
}

#premium-hero .hero-title {
    font-size: clamp(3.6rem, 9vw, 8.1rem); /* Responsive single line */
    line-height: 1.15;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
    text-transform: none;
    white-space: nowrap; /* Force single line */
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

#premium-hero .hero-subtitle {
    font-size: 2.07rem;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.95);
    text-transform: none;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#premium-hero .hero-btn {
    display: inline-block;
    background: #dfaa43;
    color: var(--clr-black);
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.05em;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(223, 170, 67, 0.3);
}
#premium-hero .hero-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(223, 170, 67, 0.5);
    background: #cca450;
}

/* Scroll Indicator */
.scroll-indicator-wrap {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.scroll-indicator-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--clr-gold-light);
    animation: scrollLine 2.2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

/* Statistics Bar */
.hero-stats-row {
    background: var(--clr-black);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: var(--border-gold-soft);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 10;
}
.stat-card {
    text-align: center;
    padding: 15px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-gold-theme);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ==========================================
   COLLECTIONS GRID
   ========================================== */
.category-tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: var(--space-lg);
    background: transparent;
    padding: 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.bg-luxury-dark .category-tabs-wrapper {
    background: transparent;
}

.category-tab-btn {
    background-color: #ffffff;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.category-tab-btn:hover {
    border-color: #dfaa43;
    color: #dfaa43;
}
.bg-luxury-dark .category-tab-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-luxury-dark .category-tab-btn:hover {
    border-color: #dfaa43;
    color: #dfaa43;
}

.category-tab-btn.active {
    background-color: #dfaa43 !important;
    color: var(--clr-white) !important;
    border-color: #dfaa43 !important;
    box-shadow: 0 4px 12px rgba(223, 170, 67, 0.3);
}

/* Luxury Product Card */
.mockup-product-card {
    background: linear-gradient(135deg, #fdfbf7 0%, #FAF7F2 100%);
    border-radius: 28px;
    border: 1px solid rgba(204, 164, 80, 0.12);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 480px;
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
}

.mockup-product-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1.5px solid var(--clr-gold-theme);
    opacity: 0;
    border-radius: 28px;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 5;
}

.mockup-product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(13, 13, 13, 0.07), 0 5px 20px rgba(204, 164, 80, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(204, 164, 80, 0.6);
}
.mockup-product-card:hover::before {
    opacity: 0.6;
}

.mockup-card-img-wrap {
    position: relative;
    height: 75%;
    flex-shrink: 0;
    overflow: hidden;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    background-color: #faf9f6;
}

.mockup-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.mockup-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.95);
}

.mockup-product-card:hover .mockup-card-img {
    transform: scale(1.08);
    filter: brightness(1.03);
}

/* Glass Badges with Gold Border */
.glass-badge-gold {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(204, 164, 80, 0.45);
    color: var(--clr-gold-light);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
    text-transform: uppercase;
    animation: badgeGlow 3s infinite ease-in-out;
}
@keyframes badgeGlow {
    0% { box-shadow: 0 0 8px rgba(204, 164, 80, 0.15); border-color: rgba(204, 164, 80, 0.4); }
    50% { box-shadow: 0 0 16px rgba(204, 164, 80, 0.45); border-color: rgba(204, 164, 80, 0.8); }
    100% { box-shadow: 0 0 8px rgba(204, 164, 80, 0.15); border-color: rgba(204, 164, 80, 0.4); }
}

/* Floating Glass Wishlist */
.card-wishlist-btn-glass {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-wishlist-btn-glass:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #e53e3e;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(229, 62, 62, 0.35);
}
.card-wishlist-btn-glass svg {
    transition: fill 0.4s ease, transform 0.4s ease;
}
.card-wishlist-btn-glass:hover svg {
    fill: #e53e3e;
    transform: scale(1.1);
}

/* Quick Actions Overlay (Framer Motion Staggered in Home.jsx) */
.quick-actions-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
    pointer-events: none;
}
.action-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(25px);
    opacity: 0;
}
.mockup-product-card:hover .action-btn-circle {
    transform: translateY(0);
    opacity: 1;
}
.mockup-product-card:hover .action-btn-circle:nth-child(1) { transition-delay: 0.04s; }
.mockup-product-card:hover .action-btn-circle:nth-child(2) { transition-delay: 0.08s; }
.mockup-product-card:hover .action-btn-circle:nth-child(3) { transition-delay: 0.12s; }
.mockup-product-card:hover .action-btn-circle:nth-child(4) { transition-delay: 0.16s; }

.action-btn-circle:hover {
    background: var(--grad-gold);
    color: var(--clr-black) !important;
    border-color: var(--clr-gold-theme);
    transform: scale(1.1) translateY(-2px) !important;
    box-shadow: var(--shadow-gold);
}

.mockup-card-info {
    padding: 28px 24px 24px 24px;
    background: transparent;
    z-index: 5;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mockup-product-card:hover .mockup-card-info {
    transform: translateY(-4px);
}

.mockup-card-rating {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-stars {
    color: var(--clr-gold-light);
    font-size: 12px;
}
.rating-val {
    color: var(--clr-gray-text);
    font-size: 11px;
    font-weight: 500;
}

.mockup-card-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 4px;
    line-height: 1.35;
    transition: var(--transition-fast);
}
.mockup-product-card:hover .mockup-card-name {
    color: var(--clr-gold-dark);
}

.card-info-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--clr-gold-theme);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-gold-separator {
    margin: 14px 0;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(204,164,80,0) 0%, rgba(204,164,80,0.2) 50%, rgba(204,164,80,0) 100%);
}

.mockup-card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
}

.price-details-box {
    display: flex;
    flex-direction: column;
}
.price-label {
    font-size: 9px;
    color: var(--clr-gray-text);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-amount-gold {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-gold-theme);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.price-original-strike {
    font-size: 12px;
    color: var(--clr-gray-text);
    text-decoration: line-through;
    font-weight: 500;
}

.card-cta-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--clr-black) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-cta-btn-circle:hover {
    transform: scale(1.1) rotate(-45deg);
    box-shadow: 0 0 22px rgba(204, 164, 80, 0.55);
    color: var(--clr-black) !important;
}

/* Luxury Card Shimmer Sweep */
.card-shimmer-glow {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(204,164,80,0) 0%, rgba(204,164,80,0.06) 50%, rgba(204,164,80,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 10;
    animation: cardSweep 7s infinite ease-in-out;
}
@keyframes cardSweep {
    0% { left: -150%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

.card-shine-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
    animation: shineSweep 6s infinite ease-in-out;
}
@keyframes shineSweep {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

/* Skeleton Loading Placeholder */
.skeleton-card {
    background: linear-gradient(135deg, #fcfbf9 0%, #f7f5f0 100%);
    border-radius: 28px;
    height: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(204, 164, 80, 0.08);
}
.skeleton-img {
    height: 340px;
    background: linear-gradient(90deg, #f7f6f2 25%, #edeae2 50%, #f7f6f2 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.6s infinite;
}
.skeleton-text {
    height: 15px;
    margin: 15px 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f7f6f2 25%, #edeae2 50%, #f7f6f2 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.6s infinite;
}
.skeleton-text.short {
    width: 50%;
}
@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Editorial Vertical Grid Offset */
@media (min-width: 992px) {
    .col-lg-3.mb-4:nth-child(even) {
        margin-top: 30px;
    }
    .col-lg-3.mb-4:nth-child(odd) {
        margin-top: 0px;
    }
}

.explore-all-btn-gold {
    display: inline-block;
    background: transparent;
    color: var(--clr-gold-theme);
    border: 1px solid var(--clr-gold-theme);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    text-decoration: none !important;
    transition: var(--transition-smooth);
}
.explore-all-btn-gold:hover {
    background: var(--grad-gold);
    color: var(--clr-black);
    border-color: var(--clr-gold-theme);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================
   3D CAROUSEL SECTION
   ========================================== */
.carousel-3d-wrapper {
    position: relative;
    height: 660px;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.carousel-3d-track {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d-card {
    position: absolute;
    width: 330px;
    height: 572px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    background-color: var(--clr-white);
    z-index: 1;
    cursor: grab;
}
.carousel-3d-card:active {
    cursor: grabbing;
}

.carousel-3d-card.active {
    transform: translateX(0) scale(1.1);
    opacity: 1;
    z-index: 10;
    filter: blur(0);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.carousel-3d-card.prev {
    transform: translateX(-300px) scale(0.85);
    opacity: 0.8;
    filter: blur(1px);
    z-index: 5;
}

.carousel-3d-card.next {
    transform: translateX(300px) scale(0.85);
    opacity: 0.8;
    filter: blur(1px);
    z-index: 5;
}

.carousel-3d-card.far-prev {
    transform: translateX(-520px) scale(0.7);
    opacity: 0.15;
    filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

.carousel-3d-card.far-next {
    transform: translateX(520px) scale(0.7);
    opacity: 0.15;
    filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

.carousel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--clr-white);
    z-index: 3;
}

.styling-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--clr-gold-light);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.styling-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.carousel-details-banner {
    background: rgba(13, 13, 13, 0.75);
    backdrop-filter: blur(10px);
    border: var(--border-white-soft);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.banner-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 2px;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.banner-text span {
    font-size: 9px;
    color: var(--clr-gold-light);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.banner-arrow-btn {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-round);
    background-color: var(--clr-white);
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: var(--transition-fast);
}
.banner-arrow-btn:hover {
    background-color: var(--clr-gold-theme);
    color: var(--clr-white) !important;
    transform: translateX(3px);
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    border: none;
    background-color: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.bg-luxury-dark .carousel-dot {
    background-color: rgba(255,255,255,0.15);
}
.carousel-dot.active {
    background-color: var(--clr-gold-theme);
    width: 32px;
    border-radius: 4px;
}

/* ==========================================
   BEST SELLERS (DARK Spotlight Section)
   ========================================== */
#best-sellers-section {
    position: relative;
    background: var(--clr-black);
}

/* Floating Gold Glow Elements */
.gold-glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 164, 80, 0.08) 0%, rgba(204, 164, 80, 0) 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}
.orb-left {
    top: 10%;
    left: -200px;
    animation: orbFloat 10s infinite alternate ease-in-out;
}
.orb-right {
    bottom: 10%;
    right: -200px;
    animation: orbFloat 12s infinite alternate-reverse ease-in-out;
}

#best-sellers-section .ruby-container {
    position: relative;
    z-index: 2;
}

.best-seller-card {
    background: rgba(21, 19, 17, 0.7);
    border-radius: var(--radius-lg);
    border: var(--border-white-soft);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: var(--transition-smooth);
    padding: 16px;
    backdrop-filter: blur(10px);
}
.best-seller-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-gold-theme);
    box-shadow: var(--shadow-luxury), 0 0 25px rgba(204,164,80,0.1);
}

.best-seller-img-wrap {
    position: relative;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #0f0f0f;
}

.best-seller-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.best-seller-card:hover .best-seller-img {
    transform: scale(1.08);
}

.best-seller-badge-hot {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e53e3e;
    color: var(--clr-white);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.best-seller-fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-white);
    z-index: 5;
    transition: var(--transition-fast);
}
.best-seller-fav-btn:hover {
    background-color: var(--clr-white);
    color: #e53e3e;
}

.best-seller-info {
    padding: 24px 10px 10px 10px;
    text-align: center;
}

.best-seller-meta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.best-seller-stars {
    color: var(--clr-gold-light);
    font-size: 11px;
}
.best-seller-sold {
    color: #a0aec0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.best-seller-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 6px;
}

.best-seller-cat {
    display: block;
    color: var(--clr-gold-theme);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.best-seller-price-box {
    background: rgba(13, 13, 13, 0.6);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: var(--border-white-soft);
    transition: var(--transition-smooth);
}
.best-seller-card:hover .best-seller-price-box {
    border-color: rgba(204,164,80,0.3);
    background: rgba(204,164,80,0.03);
}

.price-label-gray {
    font-size: 9px;
    color: #a0aec0;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: left;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
}
.price-val-white {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--clr-white);
    display: block;
    text-align: left;
}

.best-seller-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    background-color: var(--clr-gold-theme);
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none !important;
    transition: var(--transition-smooth);
}
.best-seller-card:hover .best-seller-arrow-btn {
    background-color: var(--clr-white);
    color: var(--clr-gold-theme) !important;
    transform: rotate(-45deg);
}

/* ==========================================
   NEW ARRIVALS (Staggered Masonry Layout)
   ========================================== */
.masonry-grid-container {
    column-count: 1;
    column-gap: 30px;
    width: 100%;
}
@media (min-width: 576px) {
    .masonry-grid-container {
        column-count: 2;
    }
}
@media (min-width: 992px) {
    .masonry-grid-container {
        column-count: 3;
    }
}

.new-arrival-masonry-item {
    break-inside: avoid;
    margin-bottom: 30px;
}

.new-arrival-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    padding: 12px;
}
.new-arrival-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--clr-gold-theme);
}

.new-arrival-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fafaf9;
}
/* Staggering card heights */
.height-tall {
    height: 420px;
}
.height-medium {
    height: 280px;
}

.new-arrival-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.new-arrival-card:hover .new-arrival-img {
    transform: scale(1.06);
}

.new-arrival-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--clr-black);
    color: var(--clr-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    z-index: 5;
}

.new-arrival-fav-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e53e3e;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.new-arrival-info {
    padding: 16px 8px 8px 8px;
}
.new-arrival-date {
    font-size: 9px;
    color: var(--clr-gray-text);
    font-weight: 600;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 4px;
}
.new-arrival-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 4px;
}
.new-arrival-cat {
    display: block;
    color: var(--clr-gold-theme);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.new-arrival-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 12px;
}
.new-arrival-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-black);
}

.new-arrival-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-round);
    background-color: var(--clr-gray-light);
    color: var(--clr-gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 1px solid var(--clr-gray-border);
    text-decoration: none !important;
    transition: var(--transition-fast);
}
.new-arrival-card:hover .new-arrival-arrow-btn {
    background-color: var(--clr-gold-theme);
    border-color: var(--clr-gold-theme);
    color: var(--clr-white);
    transform: rotate(-45deg);
}

/* ==========================================
   WHY CHOOSE US (Certified Luxury Badges)
   ========================================== */
.why-choose-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: var(--shadow-soft);
}
.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--clr-gold-theme);
}
.why-choose-icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-round);
    background: rgba(204, 164, 80, 0.06);
    color: var(--clr-gold-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition-smooth);
}
.why-choose-card:hover .why-choose-icon-box {
    background: var(--grad-gold);
    color: var(--clr-black);
    box-shadow: var(--shadow-gold);
    transform: rotateY(360deg);
}
.why-choose-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 12px;
}
.why-choose-card p {
    font-size: 13px;
    color: var(--clr-gray-text);
    margin-bottom: 0;
}

/* ==========================================
   CUSTOMER EXPERIENCE (Testimonials)
   ========================================== */
.testimonial-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.testimonial-card {
    background: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--shadow-luxury);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
}
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 2px solid var(--clr-gold-theme);
    box-shadow: var(--shadow-gold);
}
.testimonial-quote {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--clr-black);
    margin-bottom: 25px;
    line-height: 1.8;
}
.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-gold-theme);
    margin-bottom: 4px;
}
.testimonial-verify {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--clr-gray-text);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.testimonial-verify i {
    color: #2b6cb0;
}
.testimonial-stars {
    color: var(--clr-gold-light);
    margin-bottom: 15px;
    font-size: 14px;
}

/* ==========================================
   INSTAGRAM SHOPPING GALLERY
   ========================================== */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}
.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
    color: var(--clr-white);
}
.instagram-item:hover .instagram-overlay {
    opacity: 1;
}
.instagram-item:hover .instagram-img {
    transform: scale(1.1);
}
.instagram-overlay i {
    font-size: 24px;
    color: var(--clr-gold-light);
    margin-bottom: 12px;
}
.instagram-overlay h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.instagram-overlay span {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}
.instagram-shop-btn {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-black);
    background: var(--clr-gold-theme);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    text-decoration: none !important;
    transition: var(--transition-fast);
}
.instagram-shop-btn:hover {
    background: var(--clr-white);
    color: var(--clr-black);
}

/* ==========================================
   CONTACT SPLIT LAYOUT & FORM
   ========================================== */
.contact-info-card,
.contact-form-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.03);
    padding: 40px;
    box-shadow: var(--shadow-luxury);
    height: 100%;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-round);
    background-color: rgba(204, 164, 80, 0.08);
    color: var(--clr-gold-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.info-item:hover .info-icon {
    background-color: var(--clr-gold-theme);
    color: var(--clr-black);
    box-shadow: var(--shadow-gold);
}

.info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.info-text p {
    font-size: 13.5px;
    color: var(--clr-gray-text);
    margin-bottom: 0;
}

.store-hours-box {
    background-color: var(--clr-cream);
    border: var(--border-gold-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
}

.store-hours-box h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--clr-gray-text);
    margin-bottom: 8px;
}
.hours-row:last-child {
    margin-bottom: 0;
}

.map-iframe-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Elegant Floating Form Elements */
.form-group-custom {
    position: relative;
    margin-bottom: 30px;
}

.form-input-custom {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--clr-gray-border);
    border-radius: 0;
    padding: 18px 0;
    font-size: 15px;
    color: var(--clr-black);
    outline: none;
    background: transparent;
    transition: var(--transition-fast);
}

.form-input-custom:focus {
    border-bottom-color: var(--clr-gold-theme);
}

.form-label-custom {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-gray-text);
    pointer-events: none;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

/* Float label animations when input is focused or filled */
.form-input-custom:focus ~ .form-label-custom,
.form-input-custom:not(:placeholder-shown) ~ .form-label-custom {
    top: -10px;
    font-size: 10px;
    color: var(--clr-gold-theme);
}

.textarea-custom {
    resize: none;
}

.form-submit-btn-mockup {
    width: 100%;
    background: var(--grad-gold);
    color: var(--clr-black);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 30px;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-submit-btn-mockup:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 25px rgba(204,164,80,0.3);
}

/* ==========================================
   LUXURY FOOTER
   ========================================== */
.luxury-footer {
    background: var(--clr-black);
    color: var(--clr-white);
    padding: 120px 0 60px 0;
    border-top: var(--border-gold-soft);
    position: relative;
    z-index: 10;
}

.footer-col {
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 10px rgba(244, 202, 73, 0.1));
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}
.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    border: var(--border-white-soft);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-fast);
    text-decoration: none !important;
}
.social-icon-btn:hover {
    background: var(--clr-gold-theme);
    color: var(--clr-black);
    border-color: var(--clr-gold-theme);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-gold-theme);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: rgba(255,255,255,0.6);
    font-size: 13.5px;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}
.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-gold-theme);
    transition: var(--transition-fast);
}
.footer-links-list a:hover {
    color: var(--clr-white);
    padding-left: 5px;
}
.footer-links-list a:hover::after {
    width: 100%;
}

/* Newsletter Custom Styling */
.newsletter-form {
    position: relative;
    margin-top: 15px;
}
.newsletter-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: var(--border-white-soft);
    border-radius: var(--radius-xl);
    padding: 18px 70px 18px 24px;
    font-size: 14px;
    color: var(--clr-white);
    outline: none;
    transition: var(--transition-fast);
}
.newsletter-input:focus {
    border-color: var(--clr-gold-theme);
    background: rgba(255,255,255,0.05);
}
.newsletter-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: var(--radius-round);
    background: var(--grad-gold);
    border: none;
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Trust badges list */
.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}
.trust-badge-item {
    font-size: 9.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.02);
    border: var(--border-white-soft);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-badge-item i {
    color: var(--clr-gold-theme);
}

/* Animated Divider */
.footer-divider-container {
    width: 100%;
    margin: 40px 0;
}
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(204,164,80,0) 0%, rgba(204,164,80,0.4) 50%, rgba(204,164,80,0) 100%);
    width: 100%;
}

.footer-bottom-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
@media (min-width: 768px) {
    .footer-bottom-row {
        flex-direction: row;
    }
}
.copyright-text {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}
.footer-secondary-links {
    display: flex;
    gap: 20px;
}
.footer-secondary-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-secondary-links a:hover {
    color: var(--clr-white);
}

/* ==========================================
   PROMOTIONAL POPUP
   ========================================== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    backdrop-filter: blur(15px);
}

.promo-popup-content {
    position: relative;
    max-width: 480px;
    width: 90%;
    background: var(--clr-black);
    border: var(--border-gold-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.promo-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: var(--border-white-soft);
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-white);
    z-index: 10;
    transition: var(--transition-smooth);
}
.promo-popup-close:hover {
    background: var(--clr-gold-theme);
    color: var(--clr-black);
    transform: rotate(90deg);
}

.promo-popup-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes goldPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes drift {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-120px) translateX(50px) rotate(180deg); opacity: 0.7; }
    100% { transform: translateY(0px) translateX(0px) rotate(360deg); opacity: 0.3; }
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes scrollLine {
    0% { top: -20px; }
    100% { top: 60px; }
}

/* ==========================================
   STICKY SIDEBAR FOR SHOP PAGE
   ========================================== */
@media (min-width: 992px) {
    #sidebar-area-wrap {
        position: sticky;
        top: 140px; /* Aligns with the new top padding */
        height: calc(100vh - 160px);
        overflow-y: auto;
        padding-right: 15px; /* Space for custom scrollbar */
    }
    
    /* Custom Scrollbar for Sidebar */
    #sidebar-area-wrap::-webkit-scrollbar {
        width: 4px;
    }
    #sidebar-area-wrap::-webkit-scrollbar-track {
        background: transparent;
    }
    #sidebar-area-wrap::-webkit-scrollbar-thumb {
        background: var(--clr-gold-theme);
        border-radius: 4px;
    }
}

/* ==========================================
   LUXURY CATEGORY SIDEBAR LINKS
   ========================================== */
.sidebar-list li {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 6px !important;
}

.luxury-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px !important;
    color: var(--clr-text-main) !important;
    background-color: transparent;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    font-size: 15px !important;
    font-family: var(--font-body);
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.luxury-category-link:hover {
    color: var(--clr-gold-theme) !important;
    background-color: var(--clr-gray-light);
    transform: translateX(5px);
    border-color: var(--clr-gray-border);
}

.luxury-category-link.active {
    background: var(--grad-gold);
    color: var(--clr-white) !important;
    box-shadow: 0 4px 12px rgba(198, 168, 124, 0.35);
    border-color: transparent;
    transform: translateX(8px);
}

.luxury-category-link.active:hover {
    transform: translateX(8px);
    color: var(--clr-white) !important;
}

/* ==========================================
   HERO VIDEO BACKGROUND
   ========================================== */
#premium-hero {
    position: relative;
    overflow: hidden;
    background: #dfaa43 !important; /* Override any static image */
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%) scale(1.15); /* Zoom in to hide edges/controls */
    pointer-events: none;
}

.hero-overlay {
    z-index: 1 !important;
}

.hero-particles, .hero-content {
    z-index: 2;
    position: relative;
}

/* ==========================================
   ROUNDED EDGES TWEAKS
   ========================================== */
.premium-navbar-wrapper {
    border-bottom-left-radius: 35px !important;
    border-bottom-right-radius: 35px !important;
}

#premium-hero {
    border-bottom-left-radius: 35px !important;
    border-bottom-right-radius: 35px !important;
}

.luxury-footer {
    border-top-left-radius: 35px !important;
    border-top-right-radius: 35px !important;
}

/* ==========================================
   NEW ARRIVALS 5-COLUMN GRID
   ========================================== */
.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1400px) {
    .new-arrivals-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
    .new-arrivals-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .new-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .new-arrivals-grid { grid-template-columns: repeat(2, 1fr); }
}

html {
    scroll-behavior: smooth;
}

.custom-fluid-container {
    width: 85%;
    margin: 0 auto;
}

/* ==========================================
   MOBILE RESPONSIVENESS (Max Width: 991px)
   ========================================== */
.page-padding-top {
    padding-top: 190px !important;
}

@media (max-width: 991px) {
    .page-padding-top {
        padding-top: 120px !important;
    }

    /* Mobile Navbar */
    .premium-navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu-toggle {
        background: transparent;
        border: none;
        color: var(--clr-gold-theme);
        cursor: pointer;
        z-index: 1000;
        display: block;
        margin-left: auto;
    }
    
    .navbar-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 15, 25, 0.98);
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease-in-out;
        z-index: 999;
    }
    
    .navbar-links.mobile-open {
        left: 0;
    }
    
    .navbar-links ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0;
    }
    
    .navbar-links ul li a {
        font-size: 24px;
        color: #fff;
    }
    
    /* Hero Section */
    #premium-hero .hero-logo {
        height: 90px;
    }
    #premium-hero .hero-title {
        font-size: 4.5rem;
        white-space: normal; /* Allow wrapping on small screens */
        text-align: center;
    }
    #premium-hero .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 0.1em;
    }
    .section-title-mockup h2 {
        font-size: 3.6rem; /* 20% smaller than mobile hero title (4.5rem) */
    }
    .hero-video-wrapper iframe {
        transform: translate(-50%, -50%) scale(1.3); /* Ensure video fills screen on mobile */
    }

    /* Category Tabs */
    .category-tabs-wrapper {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    .category-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Footer Stacking */
    .footer-col {
        margin-bottom: 40px;
    }

    /* Product Grid */
    .product-card {
        margin-bottom: 20px;
    }
}

/* ==========================================
   AR TRY-ON INTERACTIVE CONTROLS
   ========================================== */

/* Smooth Accordion Panel */
.adjustments-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}
.adjustments-panel.expanded {
    max-height: 500px; /* Large enough to fit content */
    opacity: 1;
    margin-top: 1rem;
}

/* Luxury Range Sliders */
.luxury-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    transition: 0.2s;
}

.luxury-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--clr-gold-theme);
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--clr-gold-dark);
}

/* Luxury Reset Button */
.btn-luxury-reset {
    background: transparent;
    border: 1px solid var(--clr-gold-theme);
    color: var(--clr-gold-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-luxury-reset:hover {
    background: var(--clr-gold-theme);
    color: #fff;
    box-shadow: 0 4px 12px rgba(204, 164, 80, 0.3);
}

/* ==========================================
   SNAPCHAT-STYLE FULLSCREEN AR
   ========================================== */

/* Fullscreen Reset */
.snap-fullscreen-app {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Camera Container */
.snap-camera-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 1050; /* Above navbar */
    overflow: hidden;
}

/* Video & Canvas */
.snap-video, .snap-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlays */
.snap-overlay-state, .snap-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.snap-error {
    height: auto;
    background: #dc3545;
    color: #fff;
    padding: 15px;
    z-index: 100;
}

/* Top Navigation Bar */
.snap-top-bar {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    pointer-events: none; /* Let clicks pass through empty space */
}

.snap-icon-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.snap-icon-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--clr-gold-light);
    border-color: var(--clr-gold-theme);
}

/* Slide-in Adjustments Drawer */
.snap-adjustments-drawer {
    position: absolute;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 40;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.snap-adjustments-drawer.open {
    right: 0;
}

/* Bottom UI Wrapper */
.snap-bottom-ui {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

/* Categories Pill Scroll */
.snap-categories-scroll {
    display: flex;
    gap: 12px;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none; /* Firefox */
}
.snap-categories-scroll::-webkit-scrollbar {
    display: none;
}

.snap-category-pill {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.snap-category-pill.active {
    background: var(--clr-gold-theme);
    color: #000;
    border-color: var(--clr-gold-theme);
    box-shadow: 0 4px 15px rgba(204, 164, 80, 0.4);
}

/* Circular Lenses Carousel */
.snap-lenses-scroll {
    display: flex;
    gap: 18px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 20px;
    align-items: center;
    scrollbar-width: none;
}
.snap-lenses-scroll::-webkit-scrollbar {
    display: none;
}

.snap-lens {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    background-color: #fff;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.snap-lens.active {
    width: 85px;
    height: 85px;
    border-color: var(--clr-gold-theme);
    box-shadow: 0 0 25px rgba(204, 164, 80, 0.8), inset 0 0 10px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* ==========================================
   BREADCRUMB FIX
   ========================================== */
.breadcrumb-item + .breadcrumb-item::before {
    display: none !important;
    content: none !important;
}

/* ==========================================
   ACTIVE PRODUCT BADGE IN TRY-ON ROOM
   ========================================== */
.active-product-badge {
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(204, 164, 80, 0.4);
    backdrop-filter: blur(25px);
    padding: 8px 24px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.active-product-badge .product-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.active-product-badge .product-price {
    color: var(--clr-gold-theme);
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   LIVE RATE MARQUEE STRIP
   ========================================== */
.live-rate-marquee-strip {
    background-color: #dfaa43;
    color: #0d0d0d;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 10;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.marquee-content {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
    animation: marquee-scroll 45s linear infinite;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: var(--font-body);
}

.marquee-item strong {
    font-weight: 700;
}

/* ==========================================
   NEW PREMIUM JEWELRY CARD UI
   ========================================== */
.luxury-product-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.luxury-product-card:hover,
.luxury-product-card.active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Image Container */
.card-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1.15; /* Sizing to fit vertical portrait like screenshot */
    background-color: #faf9f6;
    margin-bottom: 15px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-product-card:hover .card-image {
    transform: scale(1.06);
}

/* Badges and Wishlist on Image */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #dfaa43;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-wishlist-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-wishlist-button:hover {
    background: #ffffff;
    transform: scale(1.05);
}

.card-wishlist-button svg {
    transition: transform 0.3s ease, fill 0.3s ease;
}

.card-wishlist-button:hover svg {
    transform: scale(1.1);
}

/* Hover Action Buttons Overlay */
.card-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Very light dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.luxury-product-card:hover .card-hover-actions {
    opacity: 1;
    pointer-events: auto;
}

.hover-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #0d0d0d;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.9);
}

.luxury-product-card:hover .hover-action-btn {
    transform: scale(1);
}

.hover-action-btn:hover {
    background: #dfaa43;
    color: #ffffff;
    transform: scale(1.08);
}

/* Info Area */
.card-info-container {
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars-gold {
    color: #dfaa43;
    font-size: 11px;
    display: inline-flex;
    gap: 2px;
}

.rating-value {
    color: #718096;
    font-size: 12px;
    font-weight: 500;
}

.card-title-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 14px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.luxury-product-card:hover .card-title-text,
.luxury-product-card.active .card-title-text {
    color: #dfaa43;
}

/* Bottom Row */
.card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.card-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 9px;
    font-weight: 700;
    color: #dfaa43;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.price-value-amount {
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    position: relative;
    padding-bottom: 4px;
}



.card-arrow-cta {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f7fafc;
    color: #4a5568;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.card-arrow-cta:hover,
.luxury-product-card:hover .card-arrow-cta,
.luxury-product-card.active .card-arrow-cta {
    background-color: #dfaa43;
    color: #ffffff;
    border-color: #dfaa43;
    box-shadow: 0 4px 12px rgba(223, 170, 67, 0.35);
}

/* Carousel Dots Navigation */
.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1; /* Inactive grey */
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot:hover {
    background-color: #dfaa43;
    transform: scale(1.2);
}

.carousel-dot.active {
    width: 28px; /* Elegant pill indicator */
    border-radius: 5px;
    background-color: #dfaa43; /* Theme gold-yellow */
    box-shadow: 0 2px 8px rgba(223, 170, 67, 0.4);
}

/* Bestsellers Section and Cards */
.bestsellers-section {
    background-color: #ffffff; /* White background for the section as requested */
    padding: 80px 0;
}

.bestseller-product-card {
    background: #18110f; /* Dark chocolate brown background */
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.bestseller-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(24, 17, 15, 0.25);
}

.bestseller-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #251c19;
    margin-bottom: 15px;
}

.bestseller-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bestseller-product-card:hover .bestseller-img {
    transform: scale(1.05);
}

.bestseller-badge-hot {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dfaa43;
    color: #18110f;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.bestseller-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bestseller-wishlist-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.bestseller-info {
    display: flex;
    flex-direction: column;
    text-align: center; /* Centered text layout like screenshot */
    padding: 0 5px;
}

.bestseller-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bestseller-stars {
    color: #dfaa43;
    font-size: 10px;
    display: inline-flex;
    gap: 2px;
}

.bestseller-sold-text {
    color: #a0aec0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bestseller-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bestseller-category {
    font-size: 9px;
    font-weight: 700;
    color: #dfaa43;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bestseller-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    width: 100%;
}

.bestseller-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.bestseller-price-label {
    font-size: 8px;
    font-weight: 700;
    color: #718096;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.bestseller-price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.bestseller-cta-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #dfaa43;
    color: #18110f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.bestseller-cta-btn:hover {
    background-color: #ffffff;
    color: #18110f;
    transform: scale(1.08);
}

/* Bestseller Hover Action Buttons Overlay */
.bestseller-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay on hover */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 4;
}

.bestseller-product-card:hover .bestseller-hover-actions {
    opacity: 1;
    pointer-events: auto;
}

.bestseller-hover-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #18110f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.9);
}

.bestseller-product-card:hover .bestseller-hover-action-btn {
    transform: scale(1);
}

.bestseller-hover-action-btn:hover {
    background: #dfaa43;
    color: #ffffff;
    transform: scale(1.08);
}

/* ==========================================
   CUSTOMIZATION SERVICES SECTION
   ========================================== */
.customization-section {
    background-color: #faf9f6; /* Ivory cream background */
    padding: 90px 0;
}

.customization-container {
    width: 80%;
    margin: 0 auto;
}

.journey-left-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    text-align: left;
}

.step-buttons-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-btn-item {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 16px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.step-btn-item .step-num {
    font-size: 13px;
    font-weight: 700;
    color: #718096;
    transition: all 0.3s ease;
}

.step-btn-item .step-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

/* Active Step Button State */
.step-btn-item.active {
    background: #ffffff;
    border-color: #dfaa43;
    box-shadow: 0 10px 25px rgba(223, 170, 67, 0.08);
}

.step-btn-item.active .step-num {
    background: #dfaa43;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-btn-item.active .step-text {
    color: #dfaa43;
}

/* Detail Card (Right Side) */
.journey-detail-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* Necklace Silhouette Pattern in Card Background */
.journey-detail-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 220px;
    height: 220px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="%23dfaa43" stroke-width="0.3" stroke-dasharray="1,1" opacity="0.12"><path d="M10,10 C40,40 60,40 90,10 M20,20 C45,45 55,45 80,20 M30,30 C48,48 52,48 70,30 M50,45 L50,65 M47,60 L50,65 L53,60 M50,65 L50,80"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.journey-icon-wrap {
    background: #fdfaf2;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.journey-step-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 16px 0;
}

.journey-step-desc {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.journey-step-quote {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    border-left: 3px solid #dfaa43;
    padding-left: 20px;
    margin: 0 0 28px 0;
    font-style: italic;
    color: #718096;
    line-height: 1.6;
    quotes: none;
}

.journey-step-quote::before,
.journey-step-quote::after {
    content: '';
    content: none;
}

.journey-step-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.journey-badge-icon {
    color: #dfaa43;
}

.journey-badge-text {
    font-size: 10px;
    font-weight: 700;
    color: #dfaa43;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================
   3D VIRTUAL TOUR SECTION
   ========================================== */
.virtual-tour-section {
    padding: 80px 0 0 0;
    width: 100%;
    overflow: hidden;
}

.virtual-tour-iframe-wrapper {
    width: calc(100% - 100px);
    margin: 0 50px;
    height: 850px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.virtual-tour-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 35px;
}

/* ==========================================
   TRY-ON CATEGORY POSE GUIDE POPUP
   ========================================== */
.tryon-guide-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-44% - 40px)) scale(0.95);
    width: 500px;
    max-width: 92vw;
    background: rgba(8, 8, 12, 0.93);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(223, 170, 67, 0.45);
    border-radius: 28px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(223,170,67,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.tryon-guide-popup.visible {
    opacity: 1;
    transform: translate(-50%, calc(-50% - 40px)) scale(1);
    pointer-events: all;
}

/* Backdrop */
.tryon-guide-popup.visible::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
    pointer-events: none;
}

.tryon-guide-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    border: none;
    color: #000;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}
.tryon-guide-close:hover {
    background: rgba(223, 170, 67, 0.45);
}

.tryon-guide-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(223,170,67,0.25);
}

.tryon-guide-body {
    padding: 20px 24px 24px;
}

.tryon-guide-title {
    font-family: 'Playfair Display', serif;
    color: #dfaa43;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 14px 0;
    letter-spacing: 0.02em;
}

.tryon-guide-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tryon-guide-tips li {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tryon-guide-tips li:last-child {
    border-bottom: none;
}

/* ==========================================
   ULTIMATE MOBILE RESPONSIVENESS (INTERACTIVE)
   ========================================== */
@media (max-width: 991px) {
    /* Navbar */
    .premium-navbar {
        width: 96%;
        padding: 12px 20px;
    }
    .premium-navbar .navbar-logo img {
        height: 38px;
    }
    .premium-navbar .navbar-links, .premium-navbar .navbar-contact {
        display: none; /* Can be replaced with a hamburger menu later if needed */
    }

    /* Hero Section */
    #premium-hero {
        min-height: 100vh; /* Allow dynamic viewport height */
        padding-top: 100px; /* Space for navbar */
    }
    #premium-hero .hero-logo {
        height: 100px;
    }
    #premium-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
        white-space: normal; /* Let it wrap on smaller screens */
    }
    #premium-hero .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    /* Stats Row */
    .hero-stats-row .row {
        flex-wrap: wrap;
    }
    .stat-card {
        padding: 10px 5px;
    }
    .stat-number {
        font-size: 1.8rem;
    }

    /* Category Stories (Mobile Only) */
    .category-stories-mobile {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding: 10px 15px 15px 15px;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }
    .category-stories-mobile::-webkit-scrollbar {
        display: none;
    }
    .category-story-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    .story-img-ring {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        padding: 3px;
        background: transparent;
        transition: all 0.3s ease;
    }
    .story-img-ring.active {
        background: linear-gradient(45deg, #dfaa43, #f5d061);
    }
    .story-img-ring img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff; /* Inner white border like IG */
    }
    .story-title {
        font-size: 11px;
        color: #4a5568;
        font-weight: 500;
        text-transform: capitalize;
    }
    .story-title.active {
        font-weight: 700;
        color: #dfaa43;
    }
    .section-title-mockup h2 {
        font-size: 2.2rem;
    }
    
    .custom-fluid-container {
        width: 96%;
    }
        
    /* Product Cards Mobile Refinement */
    .w-45-mobile {
        width: calc(50% - 6px) !important;
        flex: 0 0 calc(50% - 6px) !important;
        margin-left: 3px;
        margin-right: 3px;
        margin-bottom: 12px !important;
    }
    
    /* Instagram Grid Mobile Horizontal Scroll */
    .instagram-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .instagram-grid::-webkit-scrollbar {
        display: none;
    }
    .instagram-item {
        flex: 0 0 45%;
        scroll-snap-align: center;
        aspect-ratio: 1;
    }
    
    .mockup-product-card {
        height: auto;
        min-height: 320px;
    }
    
    .luxury-product-card {
        padding: 12px;
        border-radius: 20px;
    }
    
    .card-image-container {
        aspect-ratio: 1 / 1;
        margin-bottom: 8px;
        border-radius: 16px;
    }
    
    .card-rating {
        margin-bottom: 4px;
    }
    
    .card-title-text {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .price-value-amount {
        font-size: 1.15rem;
    }
    
    .price-label {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .mobile-action-buttons {
        gap: 8px !important;
        margin-top: 10px !important;
    }
    .mobile-action-buttons .btn {
        padding: 8px 0 !important;
        font-size: 11px !important;
    }

    /* Footer */
    .footer-col {
        margin-bottom: 40px;
        text-align: left;
    }
    .footer-col-title::after {
        left: 0;
        transform: none;
    }
    .footer-links-list li {
        justify-content: flex-start;
    }
    .footer-social-links {
        justify-content: center;
    }
    
    /* Live Rate Marquee */
    .live-rate-marquee-strip {
        padding: 8px 0;
    }
    .marquee-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    /* Further scaling for very small screens */
    #premium-hero .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .mockup-product-card {
        height: 380px; /* Give a bit more height on very narrow screens so image doesn't squish */
    }
    .fab-whatsapp, .fab-tryon, .scrolltotop {
        transform: scale(0.85); /* Smaller FABs */
    }
    .fab-whatsapp { right: 20px; bottom: 20px; }
    .fab-tryon { right: 20px; bottom: 85px; padding: 10px 20px; }
    .scrolltotop { left: 20px; bottom: 20px; }
}