/* =========================================
   Elite Sunbed Hire - Premium Design System
   ========================================= */

:root {
    --bg-dark: #020617;
    --bg-surface: rgba(255, 255, 255, 0.02);
    --bg-surface-hover: rgba(255, 255, 255, 0.04);

    --color-text: #f8fafc;
    --color-text-muted: #cbd5e1;
    /* Boosted for better contrast (was #94a3b8) */

    --color-gold: #c5a059;
    /* Modern Bronze */
    --color-gold-glow: rgba(197, 160, 89, 0.2);

    --color-blue: #35b2c9;
    /* Electric Cyan */
    --color-blue-glow: rgba(53, 178, 201, 0.25);

    --color-slate: #3a3d40;
    --color-slate-muted: rgba(58, 61, 64, 0.6);

    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-bright: 1px solid rgba(255, 255, 255, 0.1);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section {
    scroll-margin-top: 120px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

/* Global Reset/Safety */
img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    max-height: 100%;
}

#pageContent {
    width: 100%;
    overflow-x: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center top;
}

/* Hide scroll button when menu is open */
body.menu-open .scroll-top-btn {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Dim and blur ambient background for glassmorphic depth */
body.menu-open .ambient-bg {
    filter: blur(20px) brightness(0.2);
    transition: all 0.6s var(--ease-out-expo);
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Ambient Background (Mesh Gradients)
   ========================================= */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    /* Reduced from 120px for performance */
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
    will-change: transform;
    /* Hint to GPU for animation optimization */
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-blue-glow) 0%, transparent 70%);
    /* Cyber Cyan Glow */
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--color-gold-glow);
    /* Bronze Glow */
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: rgba(245, 158, 11, 0.1);
    /* Subtle Amber center */
    transform: translateX(-50%);
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* =========================================
   Typography & Utilities
   ========================================= */
.text-gradient-gold {
    background: linear-gradient(
        to right, 
        #bf953f 0%, 
        #fcf6ba 20%, 
        #b38728 40%, 
        #fcf6ba 60%, 
        #bf953f 80%, 
        #fcf6ba 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGold 8s linear infinite;
    display: inline-block;
}

@keyframes shimmerGold {
    to { background-position: 200% center; }
}

.text-gradient-blue {
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 45%, #b38728 70%, #fbf5b7 100%);
    /* Realistic Metallic Gold */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-block {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-block {
        display: block;
    }
}

.sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    /* Increased prominence */
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* =========================================
   Navigation & Logo
   ========================================= */
/* =========================================
   Elite Island Navigation (2026 Premium)
   ========================================= */
.elite-island {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    height: 120px;
    /* Increased for logo headroom */
    background: rgba(9, 16, 34, 0.4);
    backdrop-filter: blur(12px);
    /* Reduced from 24px for performance */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-island.scrolled {
    top: 12px;
    width: 92%;
    height: 80px;
    background: rgba(9, 16, 34, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
}

.nav-container {
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 160px;
    max-height: 90px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.elite-island.scrolled .logo-img {
    max-height: 50px;
    /* Compact on scroll */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.action-cluster {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.phone-link-nav:hover {
    color: var(--color-gold);
}

.btn-book-now {
    padding: 12px 28px;
    background: var(--color-gold);
    color: var(--bg-dark);
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 25px var(--color-gold-glow);
    border: 2px solid transparent;
}

.btn-book-now:hover {
    background: var(--bg-dark);
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px var(--color-gold-glow);
}

/* Mobile Toggle - Morphing Burger */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.burger-bar {
    width: 30px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.4s var(--ease-out-expo);
}

.mobile-toggle.active .top {
    transform: translateY(8px) rotate(45deg);
    background: white;
    width: 35px;
}

.mobile-toggle.active .mid {
    opacity: 0;
}

.mobile-toggle.active .bot {
    transform: translateY(-8px) rotate(-45deg);
    background: white;
    width: 35px;
}

/* Concierge Drawer Expansion (Absolute Peak Dominance - Barnsley Standard) */
.nav-expansion {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(6, 10, 22, 0.98) !important;
    /* Higher opacity fallback */
    /* Refined Glassmorphism */
    backdrop-filter: blur(15px);
    /* Reduced from 25px */
    -webkit-backdrop-filter: blur(15px);
    z-index: 9900 !important;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    /* Purge all detached-feel transforms */
}

.nav-expansion.active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Background Scaling Effect */
#pageContent {
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center top;
}

/* --- GLOBAL MENU-OPEN STATE HARDENING --- */
/* --- GLOBAL MENU-OPEN STATE HARDENING --- */
body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
    height: 100svh !important;
    /* Removed position: fixed to prevent anchor jump scroll reset */
}

body.menu-open .elite-island {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
    z-index: 10000;
    pointer-events: none;
}

body.menu-open .nav-container {
    background: transparent;
}

/* Ensure Logo in the navbar is hidden when expansion logo is visible to avoid double branding */
body.menu-open .nav-left,
body.menu-open .nav-center,
body.menu-open .nav-right {
    opacity: 0;
    pointer-events: none;
}

body.menu-open .mobile-toggle {
    position: fixed;
    top: 30px;
    right: 25px;
    z-index: 10001 !important;
    /* Above everything else */
    pointer-events: auto;
    opacity: 1 !important;
}

body.menu-open .burger-bar {
    background: white !important;
    /* High contrast on Onyx */
}

body.menu-open #pageContent {
    transform: scale(0.98);
    /* Less aggressive scaling */
    filter: blur(8px) brightness(0.2);
    /* Reduced from 20px for rendering speed */
    pointer-events: none;
    transition: all 0.6s var(--ease-out-expo);
}

.expansion-inner {
    display: flex;
    flex-direction: column;
    padding: 60px 8% env(safe-area-inset-bottom, 40px);
    /* Respect iOS home indicator */
    justify-content: center;
    /* Center the entire menu block vertically */
    align-items: center;
    gap: 0;
}

.menu-header-block {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.expansion-logo-fixed {
    width: 260px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
}

.menu-nav-links-refined {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
    /* Space from logo */
}

.menu-nav-links-refined a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    /* Balanced editorial typography */
    color: white;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.5) 50%, rgba(197, 160, 89, 0) 100%) bottom/100% 1px no-repeat;
    letter-spacing: 1.5px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

.menu-nav-links-refined a::after {
    content: '→';
    color: var(--color-gold);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Staggered Cascade Reveal */
.nav-expansion.active .menu-nav-links-refined a {
    opacity: 1;
    transform: translateY(0);
}

.nav-expansion.active .menu-nav-links-refined a:nth-child(1) {
    transition-delay: 0.10s;
}

.nav-expansion.active .menu-nav-links-refined a:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-expansion.active .menu-nav-links-refined a:nth-child(3) {
    transition-delay: 0.20s;
}

.nav-expansion.active .menu-nav-links-refined a:nth-child(4) {
    transition-delay: 0.25s;
}

/* Kinetic Touch State */
.menu-nav-links-refined a:hover,
.menu-nav-links-refined a:active {
    color: var(--color-gold);
}

.menu-nav-links-refined a:hover::after,
.menu-nav-links-refined a:active::after {
    opacity: 1;
    transform: translateX(0);
}



.menu-footer-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    /* Fixed spacing instead of bottom-pinning to fix gap issue */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo) 0.3s;
}

.nav-expansion.active .menu-footer-block {
    opacity: 1;
    transform: translateY(0);
}

/* Elite Master CTA */
.elite-master-cta {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.3);
    /* Subtle Gold Border */
    text-decoration: none;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(197, 160, 89, 0.05);
}

.elite-master-cta:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 160, 89, 0.6);
}

.cta-pulse-ring {
    position: absolute;
    top: 50%;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    animation: cta-breathe 3s infinite ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes cta-breathe {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-50%) scale(1.6);
        opacity: 0.8;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    z-index: 2;
    gap: 4px;
}

.cta-primary-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c5a059, #e5c079);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.cta-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.cta-secondary-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--color-gold);
}

.cta-icon svg {
    width: 24px;
    height: 24px;
}




/* =========================================
   Testimonials Carousel Section
   ========================================= */
.testimonials-section {
    padding: 100px 5%;
    position: relative;
    background: #020617;
}

.testimonials-masonry {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px;
    scrollbar-width: none;
    /* Hide scrollbar for Chrome/Safari */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.testimonials-masonry::-webkit-scrollbar {
    display: none;
}

/* Hidden Reviews for Load More */
.hidden-review {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.hidden-review.visible {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Load More Button */
.load-more-container {
    display: flex;
    justify-content: center;
    padding: 40px 0 20px;
}

.load-more-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.load-more-btn:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

.load-more-btn.hidden {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85vw;
    }
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-blue);
    transform: translateY(-5px);
}

.fb-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.fb-badge span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #1877F2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name {
    font-weight: 800;
    color: white;
}

.service-tag {
    font-size: 0.8rem;
    color: var(--color-gold);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .elite-island {
        height: 90px;
        top: 15px;
        border-radius: 24px;
    }

    .elite-island.scrolled {
        height: 75px;
        width: 95%;
    }

    .logo-img {
        max-height: 80px;
    }

    .elite-island.scrolled .logo-img {
        max-height: 45px;
    }
}

/* Unit Image Glows */
.blue-glow {
    background: radial-gradient(circle, var(--color-blue), transparent 70%);
}

.gold-glow {
    background: radial-gradient(circle, var(--color-gold), transparent 70%);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: var(--border-glass-bright);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top-btn:hover {
    background: rgba(14, 165, 233, 0.3);
    transform: translateY(-5px);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.floating-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-social-btn i {
    font-size: 26px;
}

.whatsapp-btn {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.3);
}

.messenger-btn {
    background: rgba(0, 132, 255, 0.15);
    border: 1px solid rgba(0, 132, 255, 0.3);
    color: #0084FF;
}

.messenger-btn:hover {
    background: rgba(0, 132, 255, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 132, 255, 0.3);
}

/* Hide floating icons when menu is open */
body.menu-open .floating-social-icons {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .floating-social-icons {
        bottom: 90px;
        right: 20px;
    }

    .floating-social-btn {
        width: 45px;
        height: 45px;
    }

    .floating-social-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================
   Hero Section Fix
   ========================================= */
.hero-section {
    min-height: 100svh;
    /* More reliable on mobile browsers than vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(140px, 20svh, 220px) 5% 80px;
    /* Respect fixed navbar (100px) and ensure CTA visibility */
    position: relative;
}

/* Replaced absolute positioning with a robust Grid */
.hero-grid-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: var(--border-glass);
    border-radius: 100px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .badge-premium {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 1.5rem;
    }
}

.dot-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: clamp(1.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.magnetic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: white;
    color: var(--bg-dark);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-display);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
}

/* Specific override for the primary gold button */
.magnetic-btn.primary-magnetic {
    background: var(--color-gold) !important;
    color: #020617 !important;
    box-shadow: 0 10px 30px var(--color-gold-glow);
}

.magnetic-btn.primary-magnetic .magnetic-text {
    color: #020617 !important;
}

@media (max-width: 768px) {
    .magnetic-btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

.magnetic-btn.w-full {
    display: flex !important;
    width: 100% !important;
}

.hero-service-tag {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
}

.magnetic-text {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.btn-flare {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(53, 178, 201, 0.5) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s var(--ease-out-expo);
    pointer-events: none;
    z-index: 1;
}

.magnetic-btn:hover .btn-flare {
    transform: translate(-50%, -50%) scale(1);
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.visual-glass-card {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(12px);
    /* Reduced from 40px for performance */
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 12px);
}

.visual-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border: var(--border-glass-bright);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   Infinite Marquee
   ========================================= */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.5);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    padding: 24px 0;
    backdrop-filter: blur(10px);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 40px;
    color: var(--color-text);
    white-space: nowrap;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================
   Trust Bar
   ========================================= */
.trust-bar {
    padding: 30px 5%;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon.gold {
    color: var(--color-gold);
}

.trust-icon.facebook-gold {
    color: #1877F2;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.05em;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .trust-bar-content {
        flex-direction: column;
        gap: 30px;
    }

    .trust-divider {
        display: none;
    }
}

/* =========================================
   Global Section Headings
   ========================================= */
.section-heading {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 5%;
}

.section-heading.text-left {
    text-align: left;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

/* =========================================
   Premium Unit Showcase (Editorial Layout)
   ========================================= */
.units-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.units-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 80px;
}

/* Kinetic Ticker (Marquee) */
.kinetic-ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    background: rgba(197, 160, 89, 0.03);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    margin: 40px 0;
}

.ticker-track {
    display: inline-block;
    animation: tickerLoop 30s linear infinite;
}

.ticker-track span {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(197, 160, 89, 0.4);
    text-stroke: 2px rgba(197, 160, 89, 0.4);
    text-transform: uppercase;
    padding: 0 40px;
    letter-spacing: 4px;
}

.ticker-track span strong {
    color: var(--color-gold);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    opacity: 1;
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .ticker-track span {
        font-size: 2.5rem;
    }
}

/* Legacy Showcase styles removed */

/* =========================================
   Premium Units Grid
   ========================================= */
.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.unit-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out-expo);
}

.unit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.unit-card-visual {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.2);
}

.unit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.unit-card:hover .unit-card-img {
    transform: scale(1.1);
}

.unit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-gold);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.unit-card-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Key for equal heights */
}

.unit-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.unit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

@media (max-width: 768px) {
    .unit-card h3 {
        font-size: 1.5rem;
    }
}

.unit-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.unit-card-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-spec {
    font-size: 0.85rem;
    color: var(--color-text);
}

.card-spec span {
    color: var(--color-gold);
    font-weight: 600;
    margin-right: 5px;
}

.unit-card .unit-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--color-gold);
    color: #020617 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.unit-card .unit-cta:hover {
    background: #d4b069;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile Unit Card Visual Adjustment */
@media (max-width: 768px) {
    .unit-card-visual {
        height: 420px;
    }
}

/* =========================================
   Advice & Legislation Section
   ========================================= */
.advice-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.advice-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.advice-text-block h3 {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.advice-text-block p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    /* Increased for better separation */
    line-height: 1.8;
}

.advice-text-block p:last-child {
    margin-bottom: 0;
}

.legislation-card {
    padding: 32px;
    /* Slightly reduced for mobile fit */
    border-radius: var(--radius-xl);
    border: var(--border-glass-bright);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.legislation-card p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legislation-card p:last-child {
    margin-bottom: 0;
}

.legislation-card h3 {
    color: var(--color-gold);
    /* Corrected from blue to gold */
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .advice-section {
        padding: 80px 5% 60px;
        /* Adjusted padding for mobile flow */
        scroll-margin-top: 140px;
        /* Higher offset specifically for mobile header */
    }

    .advice-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* Reduced gap for better flow */
    }

    .advice-text-block {
        padding: 0 10px;
        /* Prevent text from hitting edges */
    }
}

/* =========================================
   Skin Type Guide Section
   ========================================= */
.skin-guide-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.skin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

/* Skin Guide Overhaul */
.skin-card {
    padding: 0;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.skin-visual-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    /* Reduced from 180px for tighter mobile cards */
    overflow: hidden;
}

.skin-tone-preview {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s var(--ease-out-expo);
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.25), transparent 80%), var(--skin-color);
}

.skin-card:hover .skin-tone-preview {
    transform: scale(1.05);
}

.type-1 {
    --skin-color: #f9e8e6;
}

.type-2 {
    --skin-color: #f0d6d0;
}

.type-3 {
    --skin-color: #e9d1c5;
}

.type-4 {
    --skin-color: #d4b8a2;
}

.skin-tone-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    /* Increased noise for skin texture */
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.skin-number {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 2px;
    display: block;
    margin: 20px 24px 8px;
    /* Reduced margins */
}

.skin-card h3 {
    font-size: 1.3rem;
    margin: 0 24px 12px;
    color: white;
}

.skin-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 24px 20px;
    line-height: 1.5;
}

.skin-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 24px 20px;
    margin-top: auto;
}

.skin-stat {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.skin-stat strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: visible;
    /* Ensure nothing is clipped */
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    max-height: 850px;
    /* Increased slightly for safety */
    overflow-y: hidden;
    overflow-x: visible;
    transition: max-height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: visible;
    /* Never clip testimonials */
}

.testimonials-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.testimonials-masonry.expanded {
    max-height: 3000px;
    /* Large enough to show all */
}

.testimonials-masonry.expanded+.testimonials-fade {
    opacity: 0;
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 20;
}

.carousel-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-gold);
    display: none;
    /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:hover {
    background: var(--color-gold);
    color: var(--bg-dark);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev {
    left: -28px;
}

.carousel-nav-btn.next {
    right: -28px;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        width: 44px;
        height: 44px;
        display: flex;
    }

    .carousel-nav-btn.prev {
        left: 5px;
    }

    .carousel-nav-btn.next {
        right: 5px;
    }
}

.load-more-btn.hidden {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-masonry {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        column-count: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        max-height: none;
        padding: 0 20px 40px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-masonry::after {
        content: '';
        flex: 0 0 20px;
        /* Padding at the end of scroll */
    }

    .testimonials-masonry::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        margin-bottom: 0;
        display: block;
    }

    .testimonials-fade,
    .load-more-container {
        display: none !important;
    }
}

.testimonial-card {
    background: var(--color-slate);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    /* Grid gap handles this */
    transition: transform 0.3s ease, border-color 0.3s ease;
    /* Reduced animation complexity to fix choppiness */
}

.testimonial-card:hover {
    background: #1e293b;
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.fb-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1877F2;
    /* Facebook Blue */
    background: rgba(24, 119, 242, 0.05);
    padding: 6px 12px;
    border-radius: 100px;
    width: fit-content;
}

.fb-badge svg {
    flex-shrink: 0;
}

.card-stars {
    color: #fbbf24;
    /* gold */
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f8fafc;
    /* slate-50 */
    margin-bottom: 24px;
    position: relative;
    font-weight: 400;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.service-tag {
    font-size: 0.85rem;
    color: #94a3b8;
    /* slate-400 */
    font-weight: 500;
}

.testimonial-hidden {
    display: none;
    opacity: 0;
}

.testimonial-hidden.visible {
    display: inline-block;
    animation: fadeIn 0.6s forwards;
}

.testimonials-footer {
    text-align: center;
    margin-top: 40px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .testimonials-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-masonry {
        grid-template-columns: 1fr;
    }
}

.facebook-rating-scene {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.scene-stars {
    font-size: clamp(2rem, 5vw, 4rem) !important;
}

.scene-stars-container {
    font-size: 2rem;
    color: #fbbf24;
    letter-spacing: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-number {
    font-size: 1rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0;
}

.scene-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
}

.price-match-badge {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--bg-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px;
}

.badge-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* =========================================
   Results (Why Us) Section
   ========================================= */
.results-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.results-text h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 24px;
}

.results-text p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.premium-list {
    list-style: none;
}

.premium-list li {
    font-size: 1.15rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.list-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-gold-glow);
}

.glass-frame {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    padding: 16px;
    border-radius: var(--radius-xl);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s var(--ease-out-expo);
}

.glass-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.transformation-img {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 16px);
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(30, 40, 60, 0.9);
    backdrop-filter: blur(20px);
    border: var(--border-glass-bright);
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   Gallery Section
   ========================================= */




/* =========================================
   Contact Section Fix
   ========================================= */
/* =========================================
   Elite Concierge (Drastic Redesign)
   ========================================= */
.contact-section {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.concierge-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.concierge-info {
    position: sticky;
    top: 150px;
}

.concierge-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1;
}

.concierge-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.method-jewel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.method-jewel {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.method-jewel:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: var(--color-gold);
}

.jewel-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.jewel-icon svg {
    width: 22px;
    height: 22px;
}

.jewel-data {
    display: flex;
    flex-direction: column;
}

.jewel-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 2px;
    font-weight: 700;
}

.jewel-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
}

/* Floating Glass Form */
.elite-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.elite-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.form-field-group label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding-left: 4px;
    transition: all 0.3s ease;
}

.form-field-group input,
.form-field-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out-expo);
}

.form-field-group select option {
    background: var(--bg-dark);
    color: white;
    padding: 12px;
}

.form-field-group input:focus,
.form-field-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-gold);
    box-shadow: 0 0 25px var(--color-gold-glow);
}

.form-field-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.elite-submit-btn {
    margin-top: 20px;
    padding: 18px 32px;
    background: var(--color-gold);
    color: #020617 !important;
    border: none;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 15px 35px var(--color-gold-glow);
    position: relative;
    overflow: hidden;
}

.elite-submit-btn span {
    color: #020617 !important;
}

@media (max-width: 768px) {
    .elite-submit-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .concierge-info h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

.elite-submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px var(--color-gold-glow);
    background: #d4b069;
}

.elite-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.elite-submit-btn span {
    position: relative;
    z-index: 2;
    color: inherit;
}

.elite-submit-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.elite-submit-btn:hover svg {
    transform: translateX(8px);
}

.form-status-msg {
    margin-top: 20px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

@media (max-width: 1024px) {
    .concierge-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .concierge-info {
        position: static;
    }
    
    .elite-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .form-row-dual {
        grid-template-columns: 1fr;
    }
    
    .jewel-value {
        font-size: 1.25rem;
    }
}

/* =========================================
   Footer Premium Overhaul
   ========================================= */
.premium-footer {
    position: relative;
    background: #091022;
    /* Exact match for new logo background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 5% 40px;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: radial-gradient(circle, var(--color-blue) 0%, transparent 100%);
    box-shadow: 0 0 40px 2px var(--color-blue);
    opacity: 0.5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo-wrap {
    display: inline-flex;
    margin-bottom: 24px;
    box-shadow: none;
    /* Removed shadow since it's a blended background */
}

.footer-logo {
    height: 100px;
    width: auto;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.premium-footer h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    color: var(--color-text);
    font-weight: 500;
}

.footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 160, 89, 0.3);
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact-link i {
    font-size: 20px;
    flex-shrink: 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.area-col strong {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.area-col span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    display: block;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-gold);
    margin-left: 10px;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.footer-phone {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 12px 0;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--color-blue);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(14, 165, 233, 0.15);
    color: var(--color-blue);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
}

.dot-pulse-small {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.alternative-contacts {
    margin-top: 30px;
    width: 100%;
}

.alt-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.alt-separator::before,
.alt-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.alt-separator span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.alt-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.alt-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.alt-btn.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

.alt-btn.ms:hover {
    border-color: #00B2FF;
    color: #00B2FF;
}

.alt-btn svg,
.alt-btn img {
    flex-shrink: 0;
}

.alt-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.alt-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.alt-btn.wa:hover {
    border-color: #25D366;
    color: #25D366;
}

.alt-btn.ms:hover {
    border-color: #00B2FF;
    color: #00B2FF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: var(--border-glass);
    color: var(--color-text-muted);
    /* Boosted for accessibility */
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.footer-watermark {
    position: absolute;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   3D Reveal Animations
   ========================================= */
.reveal-3d {
    opacity: 0;
    transform: perspective(1000px) rotateX(10deg) translateY(40px);
    transition: opacity 1s, transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal-3d.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
}

.kinetic-row {
    display: block;
    overflow: hidden;
    line-height: 1.1;
}

.kinetic-word {
    display: inline-block;
    transform: translateY(110%) rotateX(-20deg);
    opacity: 0;
    transition: transform 1.4s var(--ease-out-expo), opacity 1.4s var(--ease-out-expo);
    transform-origin: top;
    will-change: transform, opacity;
}

.kinetic-word.active {
    transform: translateY(0) rotateX(0);
    opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* =========================================
   Before/After Slider Section
   ========================================= */
.slider-section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .slider-grid {
        grid-template-columns: 1fr;
    }
}

.comparison-container {
    background: var(--bg-surface);
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 12px;
    backdrop-filter: blur(20px);
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    /* Wider landscape ratio to prevent side-cropping */
    border-radius: calc(var(--radius-xl) - 12px);
    overflow: hidden;
    cursor: ew-resize;
}

.image-after,
.image-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.image-after {
    z-index: 1;
}

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.slider-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    z-index: 10;
    cursor: ew-resize;
    margin: 0;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

/* Hardening hit area for mobile/iOS */
.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    /* Large invisible hit area for fingers */
    height: 1000px;
    /* Ensure it covers the height */
    background: transparent;
    cursor: ew-resize;
}

.slider-range::-moz-range-thumb {
    width: 60px;
    height: 1000px;
    background: transparent;
    border: none;
    cursor: ew-resize;
}

.slider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 4;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: var(--bg-dark);
}

.slider-button svg {
    width: 14px;
    height: 14px;
}

.comparison-label {
    padding: 20px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.label-tags {
    display: flex;
    gap: 12px;
}

.label-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
}

.label-tags span:first-child {
    color: var(--color-gold);
}

.label-tags span:last-child {
    color: var(--color-blue);
}

@media (max-width: 1024px) {
    .slider-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .slider-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================
   Mobile Optimization (Media Queries)
   ========================================= */
@media (max-width: 1200px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .visual-stats {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .results-section {
        grid-template-columns: 1fr;
    }

    .container-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .nav-content {
        justify-content: flex-start;
        position: relative;
    }

    .nav-left {
        flex: 1;
        width: auto;
        justify-content: flex-start;
    }

    .logo-main {
        font-size: 1.6rem;
        /* Slightly smaller for the longer text */
    }

    .logo-sub {
        font-size: 0.75rem;
        /* Proportionally adjusted */
        letter-spacing: 0.2em;
        /* Tighter letter spacing for better fit */
    }

    .units-section,
    .results-section,
    .contact-section {
        padding: 60px 5%;
    }

    .hero-section {
        padding-top: 130px;
    }

    /* Redundant mobile contact styles removed */

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 3.2rem);
        /* Slightly reduced for safer fit */
        line-height: 1.2;
        /* Increased for readability */
    }

    .mobile-toggle {
        display: flex;
        z-index: 3000;
    }

    .logo-img {
        max-height: 50px;
    }

    #pageContent {
        padding-bottom: 40px;
        /* OS Bar safety */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-wrap {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    /* Trust Bar Mobile */
    .trust-bar {
        padding: 40px 5%;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 40px;
    }

    .trust-item {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    section {
        scroll-margin-top: 120px;
        /* Increased for sticky header safety */
    }

    .trust-icon {
        margin-bottom: 10px;
    }

    /* Rating Scene Mobile */
    .scene-stars {
        font-size: 2.2rem !important;
    }

    .facebook-logo-large svg {
        width: 32px;
        height: 32px;
    }

    .scene-stars-container {
        font-size: 1.5rem;
    }

    .scene-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Price Match Badge Mobile */
    .price-match-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px 15px;
        gap: 15px;
    }

    .badge-icon {
        margin: 0 auto;
    }
}

/* =========================================
   Elite Glow Boutique (Upsell)
   ========================================= */
.boutique-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.boutique-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: var(--border-glass-bright);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.boutique-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.boutique-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.boutique-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.boutique-text p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.lotion-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.lotion-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lotion-feature svg {
    width: 20px;
    height: 20px;
}

.lotion-feature span {
    font-weight: 600;
    color: white;
}

.boutique-note {
    font-style: italic;
    opacity: 0.8;
    font-size: 0.95rem !important;
}

.boutique-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lotion-bottle-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.creams-image-container {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.creams-img {
    width: 100%;
    height: auto;
    display: block;
}

.lotion-card-mini {
    position: absolute;
    background: rgba(15, 20, 35, 0.85);
    /* Darker, more stable glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 20px;
    border-radius: var(--radius-lg);
    width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s var(--ease-out-expo);
}

.lotion-card-mini:nth-child(1) {
    top: 20px;
    left: 40px;
    z-index: 2;
}

.lotion-card-mini:nth-child(2) {
    bottom: 20px;
    right: 40px;
    z-index: 1;
}

.lotion-card-mini:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 5;
    border-color: var(--color-gold);
}

.lotion-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--color-gold-glow), transparent 70%);
    opacity: 0.3;
}

.lotion-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.lotion-card-mini h4 {
    margin-bottom: 4px;
    color: white;
}

.lotion-card-mini p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

.lotion-image-container {
    width: 100%;
    height: 120px;
    /* Adjusted for the mini card */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

/* Critical Mobile Layout Fixes */
@media (max-width: 768px) {
    .units-section .units-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
}
