/* ========================================================================
   AR PETS â€” PROFESSIONAL PINK THEME CSS STYLESHEET
   Production-ready with enhanced pink theme
   ======================================================================== */

/* ========================================================================
   1. ROOT VARIABLES - PINK THEME (FULLY ADVANCED)
   ======================================================================== */
:root {
    /* Primary Pink Theme Colors */
    --theme-primary: #d62b75;
    --theme-primary-rgb: 214, 43, 117;
    --theme-secondary: #4c1433;
    --theme-secondary-rgb: 76, 20, 51;




    /* Extended Pink Palette */
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: var(--theme-primary);
    --pink-700: #be185d;
    --pink-800: #9d174d;
    --pink-900: #831843;
    --pink-950: #500724;

    /* Extended Theme Palette - Pink Enhanced */
    --ar-ink: #20111a;
    --ar-plum: var(--theme-secondary);
    --ar-berry: var(--theme-primary);
    --ar-coral: #ff7a87;
    --ar-rose: #f9a8d4;
    --ar-pink-light: #fce7f3;
    --ar-pink-glow: rgba(var(--theme-primary-rgb), 0.15);
    --ar-mint: #15a39a;
    --ar-leaf: #2f8c5f;
    --ar-honey: #f3b64e;
    --ar-cream: #fff8ee;
    --ar-paper: #fffdf8;
    --ar-line: rgba(var(--theme-primary-rgb), 0.13);
    --ar-shadow: 0 24px 70px rgba(var(--theme-primary-rgb), 0.14);
    --ar-text-soft: #9b7a8a;
    --ar-soft: rgba(var(--theme-primary-rgb), 0.08);
    --ar-serif: 'Cormorant Garamond', Georgia, serif;

    /* Semantic Colors */
    --primary: var(--theme-primary);
    --secondary: var(--theme-secondary);
    --danger: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --dark: #20111a;
    --light: #f8f9fa;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fff9f2;
    --mid-gray: #6f4458;
    --light-gray: #e0e0e0;
    --border-color: rgba(var(--theme-primary-rgb), 0.10);

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows - Pink Enhanced */
    --shadow-sm: 0 2px 8px rgba(var(--theme-primary-rgb), 0.06);
    --shadow-md: 0 8px 24px rgba(var(--theme-primary-rgb), 0.10);
    --shadow-lg: 0 16px 48px rgba(var(--theme-primary-rgb), 0.14);
    --shadow-xl: 0 24px 70px rgba(var(--theme-primary-rgb), 0.18);
    --shadow-pink-glow: 0 0 40px rgba(var(--theme-primary-rgb), 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    /* --ap- aliases (used in views) - Pink Theme */
    --ap-berry: var(--theme-primary);
    --ap-plum: var(--theme-secondary);
    --ap-rose: #ff7a87;
    --ap-pink: #f9a8d4;
    --ap-pink-light: #fce7f3;
    --ap-mint: #15a39a;
    --ap-paper: #fffdf8;
    --ap-line: rgba(var(--theme-primary-rgb), 0.13);
    --ap-text-soft: #9b7a8a;
    --ap-soft: rgba(var(--theme-primary-rgb), 0.08);
    --ap-serif: 'Cormorant Garamond', Georgia, serif;

    /* --p- aliases for product page (Pink Theme) */
    --p-primary: var(--theme-primary);
    --p-accent: #15a39a;
    --p-line: rgba(var(--theme-primary-rgb), 0.12);
    --p-text-light: rgba(255, 255, 255, 0.45);
    --p-bg-light: rgba(255, 255, 255, 0.8);
    --p-shadow: 0 8px 32px rgba(var(--theme-primary-rgb), 0.12);

    /* Z-index layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
}

/* ========================================================================
   2. CSS RESET
   ======================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ar-ink);
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 50%, #f6fffb 100%);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 0;
}

/* ========================================================================
   3. TYPOGRAPHY
   ======================================================================== */
.display-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ar-berry);
    margin-bottom: var(--spacing-sm);
}

/* ========================================================================
   4. LAYOUT UTILITIES
   ======================================================================== */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    max-width: 1400px !important;
    margin: 0 auto;
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.section {
    padding: var(--spacing-3xl) 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ========================================================================
   5. HEADER & NAVIGATION
   ======================================================================== */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 1rem 0;
    transition: var(--transition);
}




/* --- CUSTOMER SIDE CHAT PANEL MOBILE UI FIX --- */
@media (max-width: 767px) {
    /* Pure page ko horizontal overflow se har haal mein lock karein */
    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* 1. Chat window wrapper ko fit aur constraint karein */
    .ar-chat-window, 
    .support-chat-wrapper, 
    .customer-support-widget,
    [class*="chat-panel"] {
        position: fixed !important;
        right: 16px !important;
        bottom: 80px !important;
        width: calc(100% - 32px) !important;
        max-width: 380px !important;
        left: auto !important;
        transform: none !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
        z-index: 999999 !important;
        overflow: hidden !important; /* White border/background leak rokne ke liye */
    }

    /* 2. Chat bar ki white space ya extra elements ko full-width karein */
    .ar-chat-body,
    .chat-body-class,
    [class*="chat-container"] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
        right: 0 !important;
    }

    /* 3. Target any random leaking layout panel breaking the right screen width */
    [class*="chat-inner-wrapper"] {
        width: 100% !important;
        right: 0 !important;
        position: relative !important;
    }
}


#mainNav .nav-shell {
    position: relative;
    padding: 0.58rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.70);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,241,248,0.58)),
                linear-gradient(90deg, rgba(21,163,154,0.10), rgba(214,43,117,0.10));
    box-shadow: 0 20px 52px rgba(76, 20, 51, 0.12);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

#mainNav.scrolled,
#mainNav.navbar-scrolled {
    background: transparent;
    box-shadow: none;
    padding: 0.65rem 0;
}

#mainNav.scrolled .nav-shell,
#mainNav.navbar-scrolled .nav-shell {
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,245,249,0.80)),
                linear-gradient(90deg, rgba(21,163,154,0.10), rgba(214,43,117,0.10));
    box-shadow: 0 18px 50px rgba(32, 17, 26, 0.16);
}

/* Brand */
.nav-brand-system {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 174px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #ffe9f3);
    border: 2px solid rgba(214, 43, 117, 0.18);
    box-shadow: 0 16px 40px rgba(214, 43, 117, 0.12);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-mark:hover {
    background: linear-gradient(145deg, #ffe9f3, #ffd4ea);
    box-shadow: 0 20px 52px rgba(214, 43, 117, 0.18);
    transform: translateY(-2px);
}

.brand-mark .navbar-logo-img {
    height: 38px;
    transition: transform 0.35s ease;
}

.brand-mark:hover .navbar-logo-img {
    transform: scale(1.08);
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--theme-primary);
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand-copy small {
    margin-top: 0.24rem;
    color: #8a5770;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Nav Links */
#mainNav .navbar-nav {
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid rgba(214, 43, 117, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,248,250,0.4));
    backdrop-filter: blur(10px);
}

#mainNav .navbar-nav .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--theme-secondary) !important;
    padding: 0.75rem 1.1rem !important;
    border-radius: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

#mainNav .navbar-nav .nav-link::after {
    display: none;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 50%, #f07fa3 100%);
    box-shadow: 0 12px 28px rgba(214, 43, 117, 0.32);
    transform: translateY(-2px);
}

/* Nav Link Inner with animated underline */
.nav-link-inner {
    position: relative;
    display: inline-block;
}

.nav-link-inner::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ar-mint), var(--ar-berry));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

#mainNav .navbar-nav .nav-link:hover .nav-link-inner::after,
#mainNav .navbar-nav .nav-link.active .nav-link-inner::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Chevron on Shop link */
.nav-chevron {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.nav-item-mega:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Nav Actions */
.nav-actions {
    padding-left: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-quick-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1.1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 100%);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(214, 43, 117, 0.28);
}

.nav-quick-link:hover {
    background: linear-gradient(135deg, #e85a92 0%, #f07fa3 100%);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(214, 43, 117, 0.40);
    border-color: rgba(255,255,255,0.6);
}

.nav-cart-btn {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff !important;
    background: linear-gradient(145deg, #d62b75, #e85a92);
    box-shadow: 0 12px 32px rgba(214, 43, 117, 0.28);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 1.1rem;
}

.nav-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(214, 43, 117, 0.40);
    background: linear-gradient(145deg, #e85a92, #f07fa3);
}

.nav-cart-btn.cart-pulse {
    animation: cartPulse 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ar-coral);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-count.count-pop {
    transform: scale(1.32);
    box-shadow: 0 0 0 8px rgba(228, 63, 134, 0.14);
}

/* Mobile Toggler */
.navbar-toggler {
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.12), rgba(214, 43, 117, 0.06));
    border: 1px solid rgba(214, 43, 117, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.18), rgba(214, 43, 117, 0.10));
    box-shadow: 0 8px 20px rgba(214, 43, 117, 0.16);
    transform: scale(1.05);
}

.navbar-toggler.collapsed span {
    background: var(--theme-primary);
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d62b75, #e85a92);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Logo Images */
.navbar-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

/* ========================================================================
   6. MEGA MENU
   ======================================================================== */
.nav-item-mega {
    position: static;
}

.nav-mega-panel {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(-16px) rotateX(-12deg);
    transform-origin: top center;
    width: min(760px, 94vw);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 250, 0.96));
    border: 2px solid rgba(214, 43, 117, 0.14);
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(214, 43, 117, 0.22), 0 0 0 1px rgba(255,255,255,0.9) inset;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.42s cubic-bezier(0.23,1,0.32,1), visibility 0.4s ease;
    z-index: var(--z-dropdown);
    perspective: 1000px;
}

.nav-item-mega:hover .nav-mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) rotateX(0deg);
}

.nav-mega-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    gap: 0;
    padding: 1.5rem;
}

.nav-mega-col {
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    border-right: 1px solid rgba(76, 20, 51, 0.07);
}

.nav-mega-col:last-of-type {
    border-right: none;
}

.nav-mega-label {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--theme-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(214, 43, 117, 0.16);
}

.nav-mega-col a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    color: var(--theme-secondary) !important;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.28s cubic-bezier(0.23,1,0.32,1);
    margin-bottom: 0.2rem;
}

.nav-mega-col a i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.12), rgba(214, 43, 117, 0.06));
    color: var(--theme-primary);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.28s cubic-bezier(0.23,1,0.32,1);
}

.nav-mega-col a:hover {
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.08), rgba(214, 43, 117, 0.04));
    transform: translateX(6px);
    color: var(--theme-primary) !important;
}

.nav-mega-col a:hover i {
    background: linear-gradient(135deg, #d62b75, #e85a92);
    color: #fff;
    transform: scale(1.18) rotate(-8deg);
    box-shadow: 0 6px 14px rgba(214, 43, 117, 0.24);
}

/* Mega Featured Card */
.nav-mega-featured {
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
}

.nav-mega-card {
    padding: 1.4rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 50%, #f07fa3 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 24px 56px rgba(214, 43, 117, 0.32);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.nav-mega-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.nav-mega-card:hover {
    transform: translateY(-6px) rotateX(4deg);
    box-shadow: 0 32px 72px rgba(214, 43, 117, 0.40);
}

.nav-mega-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.28s ease;
}

.nav-mega-card:hover .nav-mega-card-icon {
    background: rgba(255, 255, 255, 0.32);
    transform: scale(1.1) rotate(8deg);
}

.nav-mega-card strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
}

.nav-mega-card span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
}

.nav-mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff !important;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: fit-content;
    transition: background 0.22s ease;
}

.nav-mega-cta:hover {
    background: rgba(255, 255, 255, 0.30);
}

/* ========================================================================
   7. SEARCH OVERLAY
   ======================================================================== */
.nav-search-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.08), rgba(214, 43, 117, 0.04));
    color: var(--theme-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(214, 43, 117, 0.12);
}

.nav-search-toggle:hover {
    background: linear-gradient(135deg, var(--theme-primary), #e85a92);
    color: #fff;
    transform: scale(1.1) rotate(-8deg);
    box-shadow: 0 8px 20px rgba(214, 43, 117, 0.24);
}

.nav-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(32, 17, 26, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-search-overlay-inner {
    width: min(680px, 90vw);
    text-align: center;
    transform: translateY(24px);
    transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-search-overlay.is-open .nav-search-overlay-inner {
    transform: translateY(0);
}

.nav-search-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-search-close:hover {
    background: var(--ar-berry);
    transform: rotate(90deg);
}

.nav-search-eyebrow {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ar-coral, #ff7a87);
    margin-bottom: 1.5rem;
}

.nav-search-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-search-form:focus-within {
    border-color: rgba(214, 43, 117, 0.50);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(214, 43, 117, 0.12);
}

.nav-search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-primary);
    padding: 1.1rem 1.4rem;
}

.nav-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.nav-search-form button {
    border: 0;
    width: 60px;
    background: linear-gradient(135deg, var(--ar-plum, #4c1433), var(--ar-berry, #d62b75));
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: filter 0.25s ease;
}

.nav-search-form button:hover {
    filter: brightness(1.12);
}

.nav-search-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.nav-search-tags span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.nav-search-tags a {
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.72rem;
    font-weight: 700;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.nav-search-tags a:hover {
    background: var(--ar-berry, #d62b75);
    border-color: var(--ar-berry, #d62b75);
    color: #fff !important;
}

/* ========================================================================
   8. HERO SECTION
   ======================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 8rem;
    background: linear-gradient(115deg, rgba(255,255,255,0.86) 0%, rgba(255,242,248,0.78) 46%, rgba(235,255,250,0.84) 100%),
                repeating-linear-gradient(135deg, rgba(214,43,117,0.035) 0 1px, transparent 1px 18px);
}

.hero::after {
    content: '';
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 20, 51, 0.20), transparent);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 82% 38%, rgba(21,163,154,0.18), transparent 36rem),
                radial-gradient(ellipse at 16% 75%, rgba(243,182,78,0.16), transparent 30rem),
                linear-gradient(180deg, rgba(214, 43, 117, 0.08), transparent 45%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--theme-secondary) !important;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(214,43,117,0.14);
    border-radius: var(--radius-full);
    box-shadow: 0 14px 34px rgba(76, 20, 51, 0.08);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--ar-mint), var(--ar-honey));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--ar-ink);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: var(--spacing-md) 0;
}

.hero-title em {
    color: #e43f86 !important;
    font-style: italic;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #6d5167 !important;
    line-height: 1.8;
    max-width: 620px;
    font-weight: 500;
    font-family: var(--font-primary) !important;
    letter-spacing: -0.01em;
}

.hero-title-large {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6.5vw, 4.2rem);
    font-weight: 700;
    color: #2d1a24 !important;
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin: var(--spacing-md) 0;
}

.hero-title-large em {
    color: #e43f86 !important;
    font-style: italic;
    font-weight: 700;
}

.page-description {
    font-size: 1.08rem !important;
    color: #6d5167 !important;
    line-height: 1.85 !important;
    font-weight: 500 !important;
    font-family: var(--font-primary) !important;
    letter-spacing: -0.01em !important;
}

.text-theme {
    color: #2d1a24 !important;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(255,244,248,0.58)),
                linear-gradient(90deg, rgba(21,163,154,0.08), rgba(243,182,78,0.08));
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: var(--radius-xl);
    box-shadow: var(--ar-shadow);
}

.hero-stat {
    flex: 1;
    padding: var(--spacing-md);
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76, 20, 51, 0.07);
    border-radius: var(--radius-lg);
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--theme-secondary);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a5770;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hero Category Dock */
.hero-category-dock {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.hero-category-dock a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76, 20, 51, 0.10);
    color: var(--theme-secondary);
    font-size: 0.74rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(76, 20, 51, 0.08);
    transition: var(--transition);
}

.hero-category-dock a:hover {
    transform: translateY(-3px);
    background: var(--ar-mint);
    color: #fff;
}

/* ========================================================================
   9. 3D HERO SCENE
   ======================================================================== */
.hero-3d-scene {
    position: relative;
    width: 440px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 900px;
    perspective-origin: 50% 45%;
    transform-style: preserve-3d;
}

.hero-3d-scene::before {
    content: '';
    position: absolute;
    inset: 5% 2%;
    border: 1px solid rgba(76, 20, 51, 0.10);
    border-radius: 34px;
    background: linear-gradient(90deg, rgba(255,255,255,0.50) 1px, transparent 1px),
                linear-gradient(rgba(255,255,255,0.42) 1px, transparent 1px);
    background-size: 28px 28px;
    transform: rotate(-4deg) translateZ(-80px);
}

.hero-3d-scene.is-tilting .h3d-card {
    transition-duration: 0.08s;
}

/* Ambient Glow */
.h3d-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.h3d-glow-1 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(214, 43, 117, 0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.h3d-glow-2 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(184,151,106,0.14) 0%, transparent 70%);
    top: 15%; right: 8%;
}

/* Static Tilted Rings */
.h3d-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(214, 43, 117, 0.15);
    pointer-events: none;
    z-index: 1;
}

.h3d-ring-1 {
    width: 360px; height: 360px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotateX(70deg) rotateZ(15deg);
}

.h3d-ring-2 {
    width: 420px; height: 420px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotateX(70deg) rotateZ(-25deg);
    border-color: rgba(214, 43, 117, 0.08);
}

.h3d-ring-3 {
    width: 290px; height: 290px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) rotateX(70deg) rotateZ(55deg);
    border-color: rgba(255,255,255,0.07);
}

/* Accent Dots */
.h3d-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-gold, #e43f86);
    z-index: 2;
    pointer-events: none;
}

.h3d-dot-1 { width: 9px;  height: 9px;  top: 10%;  left: 16%;  opacity: 0.65; }
.h3d-dot-2 { width: 5px;  height: 5px;  top: 78%;  left: 12%;  opacity: 0.40; }
.h3d-dot-3 { width: 7px;  height: 7px;  top: 18%;  right: 10%; opacity: 0.55; }
.h3d-dot-4 { width: 4px;  height: 4px;  bottom: 16%; right: 18%; opacity: 0.35; }

/* Main 3D Card */
.h3d-card {
    position: relative;
    z-index: 5;
    transform: rotateY(-8deg) rotateX(5deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
    will-change: transform;
}

.h3d-card:hover {
    transform: rotateY(-4deg) rotateX(2deg) translateZ(20px);
}

/* Ground Shadow */
.h3d-card-shadow {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%) rotateX(90deg);
    width: 70%;
    height: 24px;
    background: radial-gradient(ellipse, rgba(138,23,72,0.30) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
}

/* Card Face */
.h3d-card-inner {
    position: relative;
    width: 270px;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,229,241,0.64)),
                linear-gradient(135deg, rgba(21,163,154,0.12), rgba(243,182,78,0.10));
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 44px 90px rgba(76, 20, 51, 0.20);
}

.h3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.h3d-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.h3d-card:hover .h3d-img {
    transform: scale(1.04);
}

/* Shine Layer */
.h3d-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 40%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.h3d-shine::after {
    content: '';
    position: absolute;
    inset: -35% -55%;
    background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.28), transparent 62%);
    transform: translateX(-60%);
}

/* Glass Widgets */
.h3d-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(214, 43, 117, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 8;
    box-shadow: 0 12px 36px rgba(76, 23, 72, 0.14);
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.h3d-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(76, 23, 72, 0.20);
}

.h3d-widget-top  { top: 6%;    right: -14px; }
.h3d-widget-bottom { bottom: 10%; left: -14px; }

.h3d-widget-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--ar-mint), var(--ar-leaf));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(214, 43, 117, 0.30);
}

.h3d-widget-text strong {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    color: #2b1021;
    line-height: 1.2;
}

.h3d-widget-text span {
    font-size: 0.63rem;
    color: #81556d;
}

/* Rating Badge */
.h3d-badge {
    position: absolute;
    top: 36%;
    left: -20px;
    background: linear-gradient(135deg, var(--ar-honey), var(--ar-berry));
    color: #fff;
    border-radius: 14px;
    padding: 0.55rem 0.9rem;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 28px rgba(214, 43, 117, 0.35);
    transition: transform 0.3s ease;
}

.h3d-badge:hover { transform: scale(1.06); }
.h3d-badge span  { font-size: 0.85rem; font-weight: 800; line-height: 1; }
.h3d-badge small {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.80;
    margin-top: 2px;
}

/* ========================================================================
   10. BUTTONS
   ======================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-sm-nav {
    min-height: 44px;
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(214, 43, 117, 0.10), rgba(214, 43, 117, 0.06));
    border: 1px solid rgba(214, 43, 117, 0.16);
    color: var(--theme-primary) !important;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-sm-nav:hover {
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 100%);
    border-color: rgba(214, 43, 117, 0.32);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(214, 43, 117, 0.28);
    transform: translateY(-2px);
}

/* Brand Buttons */
.btn-WingsFeed,
.btn-ARPets,
.btn-arpets {
    border-radius: 16px;
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 50%, #f07fa3 100%);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 20px 44px rgba(214, 43, 117, 0.28);
    color: #fff !important;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-WingsFeed:hover,
.btn-ARPets:hover,
.btn-arpets:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(214, 43, 117, 0.40);
    filter: brightness(1.08);
    border-color: rgba(255,255,255,0.5);
}

/* Outline Buttons */
.btn-outline-WingsFeed,
.btn-outline-arpets,
.btn-outline-AR Pets {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,248,250,0.7));
    border: 2px solid rgba(214, 43, 117, 0.24);
    color: var(--theme-primary) !important;
    box-shadow: 0 18px 40px rgba(214, 43, 117, 0.10);
    font-weight: 700;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline-WingsFeed:hover,
.btn-outline-arpets:hover,
.btn-outline-AR Pets:hover {
    background: linear-gradient(135deg, #d62b75 0%, #e85a92 100%);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(214, 43, 117, 0.32);
}

/* ========================================================================
   11. INTELLIGENCE STRIP
   ======================================================================== */
.home-intelligence-strip {
    position: relative;
    margin-top: -1px;
    padding: 3.5rem 0 1.5rem;
    background: linear-gradient(180deg, #fff9f2, #fff7fb);
}

.intelligence-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.intelligence-card {
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(76, 20, 51, 0.10);
    background: linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,244,248,0.72));
    box-shadow: 0 18px 45px rgba(76, 20, 51, 0.09);
    transition: var(--transition);
}

.intelligence-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(76, 20, 51, 0.14);
}

.intelligence-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--ar-mint), var(--ar-leaf));
    box-shadow: 0 14px 28px rgba(21,163,154,0.20);
}

.intelligence-card span,
.intel-kicker {
    color: var(--ar-berry);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.intelligence-card strong {
    color: var(--theme-secondary);
    font-size: 0.98rem;
    line-height: 1.48;
}

.intelligence-card small {
    color: var(--theme-secondary);
    font-weight: 900;
}

.intelligence-card-feature {
    color: #fff;
    background: linear-gradient(135deg, rgba(76, 20, 51, 0.96), rgba(214, 43, 117, 0.92)),
                repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px);
}

.intelligence-card-feature span,
.intelligence-card-feature strong,
.intelligence-card-feature small {
    color: #fff;
}

/* ========================================================================
   12. EXPERIENCE SECTION
   ======================================================================== */
.experience-widgets {
    padding-top: 2rem;
    background: linear-gradient(180deg, #fff7fb, #fffdf8);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
    align-items: stretch;
}

.experience-card {
    padding: var(--spacing-xl);
    border-radius: 22px;
    border: 1px solid rgba(76, 20, 51, 0.10);
    background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(240,255,251,0.72));
    box-shadow: var(--shadow-md);
}

/* ========================================================================
   13. PRODUCT CARDS
   ======================================================================== */
.section-featured {
    background: linear-gradient(180deg, #fffdf8 0%, #fff4f8 100%) !important;
}

.section-reviews {
    background: linear-gradient(135deg, #20111a 0%, var(--theme-secondary) 54%, #116f68 100%);
    padding: var(--spacing-3xl) 0;
    color: #fff;
}
.section-reviews .section-title { color: #fff !important; }
.section-reviews .eyebrow { color: var(--ar-coral) !important; }
.section-reviews .section-header p { color: rgba(255,255,255,0.72) !important; }

.section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.48);
    border: 1px solid rgba(76, 20, 51, 0.08);
}

.section-header p {
    color: #7c5467;
}

.product-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(228, 63, 134, 0.12) !important;
    box-shadow: 0 18px 48px rgba(76, 20, 51, 0.09) !important;
    background: #ffffff !important;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 30px 76px rgba(76,20,51,0.18), 0 0 0 1px rgba(21,163,154,0.16);
    transform: translateY(-4px);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(145deg, #ffffff, #fff1f7),
                repeating-linear-gradient(135deg, rgba(76, 20, 51, 0.035) 0 1px, transparent 1px 18px);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: var(--spacing-md);
    background: #fffdf8;
}

.product-brand {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #15a39a !important;
    margin-bottom: 0.4rem;
    opacity: 0.92;
}

.product-name {
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--font-primary) !important;
    color: #2d1a24 !important;
    margin-bottom: 0.65rem;
    line-height: 1.45;
    letter-spacing: -0.01em;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800 !important;
    color: #2d1a24 !important;
    font-family: var(--font-primary) !important;
    letter-spacing: -0.01em;
}

.product-price-original {
    font-size: 0.88rem;
    color: #9a7085 !important;
    text-decoration: line-through;
    margin-left: 0.6rem;
    opacity: 0.78;
}

/* ========================================================================
   14. SHOWCASE SECTION
   ======================================================================== */
.section-showcase {
    background: linear-gradient(135deg, #20111a 0%, var(--theme-secondary) 54%, #116f68 100%);
    color: #fff;
    padding: var(--spacing-3xl) 0;
}

.section-showcase .section-title,
.section-showcase .eyebrow {
    color: #fff !important;
}

.showcase-shell {
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.20);
    background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
    box-shadow: 0 30px 90px rgba(0,0,0,0.22);
    padding: var(--spacing-xl);
}

.showcase-copy p {
    color: rgba(255,255,255,0.76);
    font-size: 1.05rem;
    line-height: 1.7;
}

.showcase-dashboard {
    background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08)),
                repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
}

.sdb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.sdb-dots {
    display: flex;
    gap: 0.35rem;
}

.sdb-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.sdb-dots span:first-child { background: #ff5f57; }
.sdb-dots span:nth-child(2) { background: #febc2e; }
.sdb-dots span:nth-child(3) { background: #28c840; }

.sdb-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.sdb-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: end;
}

.sdb-metric strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sdb-metric span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.sdb-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.65rem;
    min-height: 120px;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sdb-bar {
    flex: 1;
    min-height: 24px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #f3b64e 0%, #e43f86 100%);
    box-shadow: 0 10px 24px rgba(228, 63, 134, 0.28);
}

.sdb-bar:nth-child(1) { height: 60%; }
.sdb-bar:nth-child(2) { height: 80%; }
.sdb-bar:nth-child(3) { height: 95%; }

.nature-video-wrap video,
.cinematic-video-section video,
.section-story video,
.nature-video-section video {
    width: 100%;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-banner {
    padding-left: clamp(1rem, 2.5vw, 2.5rem);
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
}

.section-banner .banner-img-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================================================
   15. STORY SECTION
   ======================================================================== */
.section-story {
    background: linear-gradient(180deg, #fff7fb 0%, #f3fffb 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.story-grid-main,
.story-grid-sm,
.story-grid-bottom img {
    border-radius: 24px;
    border: 1px solid rgba(76, 20, 51, 0.12);
    background: #fff;
    box-shadow: 0 22px 58px rgba(76, 20, 51, 0.12);
}

.story-signature {
    color: var(--ar-berry);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

/* ========================================================================
   16. BANNER SECTION
   ======================================================================== */
.section-banner {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f3fffb, #fff9f2);
}

.banner-img-wrap {
    border-radius: 32px;
    border: 1px solid rgba(76, 20, 51, 0.10);
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(76, 23, 72, 0.16);
}

.banner-overlay {
    background: linear-gradient(90deg, rgba(32, 17, 26, 0.88), rgba(76, 20, 51, 0.62), rgba(17,111,104,0.54)) !important;
    padding: var(--spacing-2xl);
}

/* ========================================================================
   17. MARQUEE STRIP
   ======================================================================== */
.marquee-strip {
    background: linear-gradient(90deg, var(--theme-secondary), var(--theme-primary), var(--ar-mint));
    color: #fff;
    padding: 0.75rem 0;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
}

.marquee-item {
    display: inline-block;
    color: rgba(255,255,255,0.92);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 2rem;
}

/* ========================================================================
   18. FOOTER
   ======================================================================== */
.site-footer,
.site-footer-v2 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #20111a 0%, var(--theme-secondary) 58%, #0d6d67 100%);
    color: #fff;
    padding-top: 2rem;
}

/* Footer Ambient Orbs */
.footer-orb,
.sfv2-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.footer-orb-1,
.sfv2-orb-a {
    width: 500px; height: 500px;
    top: -120px; left: -100px;
    background: radial-gradient(circle, rgba(214,43,117,0.18), transparent 70%);
    animation: footerOrbDrift 12s ease-in-out infinite;
}

.footer-orb-2,
.sfv2-orb-b {
    width: 380px; height: 380px;
    bottom: 60px; right: -80px;
    background: radial-gradient(circle, rgba(21,163,154,0.14), transparent 70%);
    animation: footerOrbDrift 16s ease-in-out infinite reverse;
}

@keyframes footerOrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.06); }
    66%       { transform: translate(-20px, 18px) scale(0.96); }
}
@keyframes sfv2OrbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.06); }
    66%       { transform: translate(-20px, 18px) scale(0.96); }
}

/* Footer Command Bar */
.footer-command-bar,
.sfv2-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    flex-wrap: wrap;
}

.footer-command-text span,
.sfv2-cta-eyebrow {
    display: block;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffd6e6;
}

.footer-command-text span i {
    margin-right: 0.4rem;
    color: var(--ar-honey);
}

.footer-command-bar strong,
.sfv2-cta-title {
    margin-top: 0.2rem;
    color: #fff;
    font-size: 1rem;
}

.footer-command-actions,
.sfv2-cta-btns {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.footer-command-link,
.sfv2-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.25rem;
    border-radius: 999px;
    background: #fff;
    color: var(--theme-secondary) !important;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}

.footer-command-link:hover,
.sfv2-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--ar-honey);
}

.footer-command-link-ghost,
.sfv2-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.80) !important;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.footer-command-link-ghost:hover,
.sfv2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

/* Footer Proof Grid */
.footer-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 1.25rem 0;
}

.footer-proof-item {
    padding: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-proof-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
}

.footer-proof-item strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
}

.footer-proof-item span {
    display: block;
    margin-top: 0.18rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
}

/* Footer Social Buttons */
.footer-socials,
.sfv2-socials {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-socials a,
.sfv2-social {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover,
.sfv2-social:hover {
    transform: translateY(-5px) scale(1.08);
}

.footer-social-ig:hover, .sfv2-ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; box-shadow: 0 14px 30px rgba(220,39,67,0.35); }
.footer-social-fb:hover, .sfv2-fb:hover { background: #1877f2; border-color: transparent; box-shadow: 0 14px 30px rgba(24,119,242,0.35); }
.footer-social-wa:hover, .sfv2-wa:hover { background: #25d366; border-color: transparent; box-shadow: 0 14px 30px rgba(37,211,102,0.35); }
.footer-social-tt:hover, .sfv2-tt:hover { background: #010101; border-color: transparent; box-shadow: 0 14px 30px rgba(0,0,0,0.40); }

/* Footer Heading */
.footer-heading,
.sfv2-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.footer-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), transparent);
}

.sfv2-heading::before {
    content: '';
    width: 18px; height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d62b75, #15a39a);
    flex-shrink: 0;
}

/* Footer Links */
.footer-links,
.sfv2-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links a,
.sfv2-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.88) !important;
    font-size: 0.83rem;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
    text-decoration: none;
}

.footer-links a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ar-mint);
    opacity: 0;
    transform: scale(0) translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.footer-links a:hover,
.sfv2-links a:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.sfv2-links a::before {
    content: '';
    width: 0; height: 5px;
    border-radius: 999px;
    background: #15a39a;
    margin-right: 0;
    transition: width 0.25s ease, margin-right 0.25s ease;
    flex-shrink: 0;
}

.sfv2-links a:hover::before {
    width: 6px;
    margin-right: 0.5rem;
}

/* Footer Contact Strip */
.footer-contact-strip,
.sfv2-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

.footer-contact-strip a,
.sfv2-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.footer-contact-strip a:hover,
.sfv2-contact a:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.footer-contact-icon,
.sfv2-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ar-honey);
    font-size: 0.72rem;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.footer-contact-strip a:hover .footer-contact-icon,
.sfv2-contact a:hover .sfv2-contact-icon {
    background: var(--ar-mint);
    color: #fff;
    transform: scale(1.1) rotate(-6deg);
}

/* Footer Bottom */
.footer-bottom,
.sfv2-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.sfv2-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.footer-bottom-badges,
.sfv2-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-badges span,
.sfv2-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.25s ease;
}

.footer-bottom-badges span i,
.sfv2-trust span i {
    color: var(--ar-mint);
    font-size: 0.72rem;
}

.footer-bottom-badges span:hover,
.sfv2-trust span:hover {
    color: rgba(255, 255, 255, 0.72);
}

/* Footer Newsletter */
.footer-newsletter,
.sfv2-nl-form {
    display: grid;
    grid-template-columns: 1fr 48px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter:focus-within,
.sfv2-nl-form:focus-within {
    border-color: rgba(214,43,117,0.50);
    box-shadow: 0 0 0 3px rgba(214,43,117,0.12);
}

.footer-newsletter input,
.sfv2-nl-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 0.84rem;
    padding: 0.86rem 1rem;
}

.footer-newsletter input::placeholder,
.sfv2-nl-form input::placeholder {
    color: rgba(255,255,255,0.38);
}

.footer-newsletter button,
.sfv2-nl-form button {
    border: 0;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    color: #fff;
    font-size: 0.88rem;
    cursor: pointer;
    transition: filter 0.25s ease;
}

.footer-newsletter button:hover,
.sfv2-nl-form button:hover {
    filter: brightness(1.12);
}

.footer-newsletter-status,
.sfv2-nl-status {
    min-height: 1.35rem;
    margin-top: 0.7rem;
    color: #ffd7e7;
    font-size: 0.76rem;
}

/* Footer Brand Badge */
.footer-brand-badge,
.sfv2-vet-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(21,163,154,0.18);
    border: 1px solid rgba(21,163,154,0.30);
    color: #7ffff4;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Footer Brand Block */
.footer-brand-block {
    display: flex;
    align-items: center; gap: 1rem; margin-bottom: 1rem;
}

.sfv2-logo-row {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}

.sfv2-logo {
    height: 60px; width: auto; object-fit: contain; filter: brightness(1.1);
}

.sfv2-tagline {
    color: rgba(255,255,255,0.90); font-size: 0.82rem; line-height: 1.8; margin-bottom: 1.25rem; font-weight: 500;
}

/* Footer Stats */
.sfv2-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 0.55rem; margin-bottom: 1.5rem;
}

.sfv2-stat {
    padding: 0.7rem 0.5rem; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: rgba(255,255,255,0.06); text-align: center; transition: background 0.25s ease, transform 0.25s ease;
}

.sfv2-stat:hover {
    background: rgba(255,255,255,0.12); transform: translateY(-3px);
}

.sfv2-stat strong {
    display: block; color: #fff; font-size: 1rem; font-weight: 900; line-height: 1.2;
}

.sfv2-stat span {
    display: block; color: rgba(255,255,255,0.50); font-size: 0.6rem; letter-spacing: 0.06em; margin-top: 0.15rem;
}

/* ========================================================================
   19. CART TOAST
   ======================================================================== */
.cart-toast {
    position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 1500; width: min(430px, calc(100vw - 2rem)); min-height: 112px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 0.9rem; align-items: center; padding: 1rem; color: #2b1021; background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,232,241,0.88)), radial-gradient(circle at 12% 18%, rgba(19,167,157,0.16), transparent 9rem); border: 1px solid rgba(214, 43, 117, 0.20); border-radius: 18px; box-shadow: 0 26px 70px rgba(43, 16, 33, 0.22); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); transform: translate3d(0, 24px, 0) rotateX(8deg) scale(0.96); opacity: 0; visibility: hidden; pointer-events: none; transform-origin: 80% 100%; transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.28s ease;
}

.cart-toast.is-visible {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
}

.cart-toast-visual {
    position: relative; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(135deg, var(--theme-primary, #d62b75), var(--theme-secondary, #b21d58)); box-shadow: 0 14px 30px rgba(214, 43, 117, 0.28); transform-style: preserve-3d;
}

.cart-toast-ring {
    position: absolute; inset: -8px; border: 1px solid rgba(214, 43, 117, 0.24); border-radius: inherit; transform: rotateX(62deg) rotateZ(-16deg); animation: cartToastOrbit 2.8s linear infinite;
}

.cart-toast-visual i {
    position: relative; z-index: 1; font-size: 1.25rem; transform: translateZ(18px);
}

.cart-toast-copy span, .cart-toast-copy strong, .cart-toast-copy small {
    display: block; line-height: 1.35;
}

.cart-toast-copy span {
    color: var(--pink-700, #b21d58); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
}

.cart-toast-copy strong {
    margin-top: 0.18rem; font-size: 0.95rem; color: #2b1021;
}

.cart-toast-copy small {
    margin-top: 0.2rem; color: #81556d; font-size: 0.74rem;
}

.cart-toast-link, .cart-toast-close {
    border: 0; display: inline-flex; align-items: center; justify-content: center; height: 38px; border-radius: 999px;
}

.cart-toast-link {
    padding: 0 0.9rem; background: #2b1021; color: #fff !important; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}

.cart-toast-link:hover { background: #b21d58; }

.cart-toast-close {
    width: 38px; background: rgba(43, 16, 33, 0.08); color: #2b1021;
}

.cart-toast-close:hover { background: rgba(43, 16, 33, 0.14); }

/* ========================================================================
   20. ANIMATIONS
   ======================================================================== */
@keyframes cartPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-2px) scale(1.12); }
}

@keyframes cartToastOrbit { to { transform: rotateX(62deg) rotateZ(344deg); } }
@keyframes spinSoft { to { transform: translateZ(-30px) rotate(360deg); } }
@keyframes orbitPulse { 0%, 100% { opacity: 0.44; filter: blur(0); } 50% { opacity: 0.9; filter: blur(0.3px); } }
@keyframes widgetFloat { 0%, 100% { margin-top: 0; } 50% { margin-top: -14px; } }

/* 3D Hero Animations */
@keyframes h3dFloat { 0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translate3d(0, 0, 0); } 50% { transform: rotateY(-5deg) rotateX(3deg) translate3d(0, -14px, 22px); } }
@keyframes h3dRingDrift { to { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(375deg); } }
@keyframes h3dRingPulse { 0%, 100% { opacity: 0.55; transform: translate(-50%,-50%) rotateX(70deg) rotateZ(55deg) scale(1); } 50% { opacity: 0.95; transform: translate(-50%,-50%) rotateX(70deg) rotateZ(70deg) scale(1.04); } }
@keyframes h3dDotFloat { 0%, 100% { transform: translate3d(0, 0, 18px); } 50% { transform: translate3d(8px, -12px, 38px); } }
@keyframes h3dWidgetFloat { 0%, 100% { transform: translate3d(0, 0, 80px); } 50% { transform: translate3d(0, -12px, 112px); } }
@keyframes h3dBadgePop { 0%, 100% { transform: translateZ(80px) scale(1); } 50% { transform: translateZ(110px) scale(1.055); } }
@keyframes h3dShineSweep { 0%, 45% { transform: translateX(-70%); opacity: 0; } 55% { opacity: 1; } 100% { transform: translateX(70%); opacity: 0; } }

/* Apply animations to 3D elements */
.h3d-card { animation: h3dFloat 6.5s ease-in-out infinite; }
.h3d-ring-1 { animation: h3dRingDrift 11s linear infinite; }
.h3d-ring-2 { animation: h3dRingDrift 15s linear infinite reverse; }
.h3d-ring-3 { animation: h3dRingPulse 5.8s ease-in-out infinite; }
.h3d-dot { animation: h3dDotFloat 5.5s ease-in-out infinite; }
.h3d-dot-2, .h3d-dot-4 { animation-delay: -2.2s; }
.h3d-widget-top { animation: h3dWidgetFloat 5.8s ease-in-out infinite; }
.h3d-widget-bottom { animation: h3dWidgetFloat 6.6s ease-in-out infinite reverse; }
.h3d-badge { animation: h3dBadgePop 4.8s ease-in-out infinite; }
.h3d-shine::after { animation: h3dShineSweep 4.8s ease-in-out infinite; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .nav-cart-btn.cart-pulse, .cart-count.count-pop, .cart-toast-ring, .h3d-card, .h3d-ring, .h3d-dot, .h3d-widget, .h3d-badge, .h3d-shine::after { animation: none !important; }
}

/* ========================================================================
   21. AUTH GATE
   ======================================================================== */
.cart-guest-gate { text-align: center; padding: 5rem 1rem; max-width: 480px; margin: 0 auto; }
.cart-guest-icon { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, rgba(76, 20, 51, 0.12), rgba(214, 43, 117, 0.08)); border: 1px solid rgba(214, 43, 117, 0.20); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--theme-primary); margin: 0 auto 1.5rem; }
.cart-guest-gate h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--ar-ink); }
.cart-guest-gate p { color: var(--mid-gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.cart-guest-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* Product page inline auth gate */
.auth-cart-gate { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; border: 1px solid rgba(214, 43, 117, 0.20); border-radius: 16px; background: rgba(214, 43, 117, 0.04); margin: 1.5rem 0; }
.auth-cart-gate-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.auth-cart-gate strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.auth-cart-gate p { margin: 0; font-size: 0.78rem; color: var(--mid-gray); line-height: 1.6; }
.auth-cart-gate-btns { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* Login page auth notice */
.auth-alert-notice { background: rgba(214,43,117,0.08) !important; border-color: rgba(214,43,117,0.25) !important; color: #ff8fbc !important; }

/* ========================================================================
   22. UTILITY CLASSES
   ======================================================================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -40px; left: 0; background: var(--theme-primary); color: #fff; padding: 8px; z-index: 9999; transition: top 0.3s; }
.skip-link:focus { top: 0; }

/* ========================================================================
   23. RESPONSIVE MEDIA QUERIES
   ======================================================================== */
@media (max-width: 1199px) {
    .sfv2-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .sfv2-col-brand { grid-column: 1 / -1; }
    .sfv2-stats { grid-template-columns: repeat(3,1fr); max-width: 360px; }
    .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .experience-grid, .showcase-shell { grid-template-columns: 1fr; }
    .hero-3d-scene { width: 340px; height: 400px; margin: 0 auto; }
    .h3d-card-inner { width: 210px; height: 255px; }
    #mainNav .navbar-collapse { margin-top: 0.75rem; padding: 0.85rem; border-radius: 18px; background: rgba(255,255,255,0.86) !important; border: 1px solid rgba(76, 20, 51, 0.10); }
    .nav-mega-panel { position: static; transform: none !important; opacity: 1; visibility: visible; pointer-events: auto; width: 100%; border-radius: 16px; box-shadow: none; border: 1px solid rgba(76, 20, 51, 0.10); margin-top: 0.5rem; display: none; }
    .nav-item-mega:hover .nav-mega-panel { display: block; }
    .nav-mega-inner { grid-template-columns: 1fr; padding: 1rem; }
    .intelligence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .hero-stats { display: grid; grid-template-columns: 1fr; }
    .showcase-shell { padding: 1rem; border-radius: 20px; }
    .hero-3d-scene { width: 290px; height: 350px; }
    .h3d-card-inner { width: 180px; height: 220px; }
    .h3d-widget, .h3d-badge { display: none; }
    .footer-bottom, .sfv2-bottom { flex-direction: column; text-align: center; }
    .sfv2-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .container { padding: 0 1rem; }
    .hero-title { font-size: clamp(1.85rem, 8vw, 2.8rem); }
    .hero-title-large { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-subtitle, .page-description { font-size: 0.98rem; line-height: 1.75; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .shop-search-bar { margin: 1.25rem 0 1rem; }
    .shop-toolbar { padding: 0.9rem; }
    .shop-filter-tabs { gap: 0.4rem; }
    .filter-tab { padding: 0.48rem 0.8rem; font-size: 0.7rem; }
    .product-card { border-radius: 18px; }
    .product-info { padding: 1rem; }
    .product-ingredients { white-space: normal; overflow: visible; text-overflow: unset; }
    .product-actions { opacity: 1; transform: none; pointer-events: auto; }
    .product-overlay { opacity: 1; }
    .footer-command-bar, .sfv2-cta-bar { padding: 1rem; }
    .footer-links a, .sfv2-links a, .footer-contact-strip a, .sfv2-contact a { font-size: 0.78rem; }
}

/* ========================================================================
   24. SHOP PAGE
   ======================================================================== */

.shop-search-bar {
    display: flex;
    border: 1px solid rgba(76,20,51,0.12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.80);
    box-shadow: 0 8px 28px rgba(76,20,51,0.08);
    margin: 2rem 0 1.5rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.shop-search-bar:focus-within {
    border-color: rgba(214,43,117,0.40);
    box-shadow: 0 8px 28px rgba(76,20,51,0.08), 0 0 0 4px rgba(214,43,117,0.08);
}
.shop-search-bar input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.95rem;
    font-family: var(--font-primary) !important;
    padding: 0.95rem 1.4rem;
    color: #2d1a24 !important;
    font-weight: 500;
}
.shop-search-bar input::placeholder { color: rgba(76,20,51,0.38); }
.shop-search-bar button {
    border: 0; width: 56px;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    color: #fff; font-size: 0.9rem; cursor: pointer;
    transition: filter 0.2s ease;
}
.shop-search-bar button:hover { filter: brightness(1.1); }

.shop-toolbar {
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.08);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(76,20,51,0.06);
}

.shop-filter-tabs {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(76,20,51,0.14);
    background: rgba(255,255,255,0.8) !important;
    color: #4c1433 !important;
    font-size: 0.76rem;
    font-weight: 700;
    font-family: var(--font-primary) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
}
.filter-tab:hover {
    background: rgba(214,43,117,0.06);
    border-color: rgba(214,43,117,0.25);
    color: var(--ar-berry);
}
.filter-tab.active {
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(214,43,117,0.22);
}

/* Product card extras */
.product-img-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-img-placeholder img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-placeholder img { transform: scale(1.06); }

.product-badges {
    position: absolute; top: 0.75rem; left: 0.75rem;
    display: flex; flex-direction: column; gap: 0.35rem; z-index: 2;
}
.product-badges span {
    display: inline-block; padding: 0.28rem 0.65rem;
    border-radius: 999px; font-size: 0.6rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-new, .badge-new\ arrival {
    background: linear-gradient(135deg,#15a39a,#0d6d67); color:#fff;
}
.badge-sale {
    background: linear-gradient(135deg,#e05c5c,#c0392b); color:#fff;
}
.badge-exclusive {
    background: linear-gradient(135deg,var(--theme-secondary),var(--theme-primary)); color:#fff;
}
.badge-bestseller {
    background: linear-gradient(135deg,#f3b64e,#d4890a); color:#fff;
}

.product-actions {
    position: absolute; top: 0.75rem; right: 0.75rem;
    display: flex; flex-direction: column; gap: 0.4rem;
    z-index: 10; opacity: 0; transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); pointer-events: auto; }

.product-action-btn {
    width: 36px; height: 36px; border-radius: 12px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(76,20,51,0.10);
    color: var(--ar-plum); font-size: 0.78rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
}
.product-action-btn:hover {
    background: var(--theme-primary); color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(214,43,117,0.28);
}

.product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(32,17,26,0.82), transparent 55%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 1.25rem; opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 3;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-ingredients {
    font-size: 0.85rem;
    color: #6d5167 !important;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.stock-status {
    font-size: 0.68rem; color: #e05c5c;
    margin-top: 0.3rem; letter-spacing: 0.1em;
    text-transform: uppercase; font-weight: 700;
}

.product-price-old {
    font-size: 0.8rem; color: var(--mid-gray);
    text-decoration: line-through;
}

/* ========================================================================
   25. HOME PAGE EXTRAS
   ======================================================================== */

.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background:
        linear-gradient(90deg, rgba(76,20,51,0.04) 1px, transparent 1px),
        linear-gradient(rgba(76,20,51,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
}

.hero-particle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(214,43,117,0.18), transparent 70%);
    pointer-events: none; animation: particleDrift 8s ease-in-out infinite;
}
.hero-particle:nth-child(1) { width:180px; height:180px; top:10%; left:5%; animation-delay:0s; }
.hero-particle:nth-child(2) { width:120px; height:120px; top:60%; left:80%; animation-delay:-3s; }
.hero-particle:nth-child(3) { width:80px;  height:80px;  top:80%; left:20%; animation-delay:-5s; }
.hero-particle:nth-child(4) { width:60px;  height:60px;  top:30%; left:70%; animation-delay:-2s; }
@keyframes particleDrift {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(20px,-20px) scale(1.1); }
}

.hero-scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(76,20,51,0.45); font-size: 0.58rem;
    font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase;
}
.hsi-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(76,20,51,0.35), transparent);
    animation: hsiPulse 2s ease-in-out infinite;
}
@keyframes hsiPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

.marquee-content {
    display: flex; width: max-content;
    animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

.h3d-perspective-card {
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.h3d-perspective-card:hover {
    transform: translateY(-4px) perspective(800px) rotateX(2deg);
}

.experience-icon {
    width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--ar-mint), var(--ar-leaf));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem;
    box-shadow: 0 10px 24px rgba(21,163,154,0.25);
}
.experience-card {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: var(--spacing-xl); border-radius: 22px;
    border: 1px solid rgba(76,20,51,0.10);
    background: linear-gradient(145deg,rgba(255,255,255,0.94),rgba(240,255,251,0.72));
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.experience-card span {
    display: block; font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--ar-berry); margin-bottom: 0.35rem;
}
.experience-card strong {
    display: block; font-size: 0.9rem; font-weight: 600;
    color: var(--ar-ink); line-height: 1.5;
}

/* Dashboard showcase */
.dashboard-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.care-meter {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 1rem; border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 1rem;
}
.care-meter-ring {
    width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
    background: conic-gradient(var(--ar-mint) 0% 98%, rgba(255,255,255,0.12) 98%);
    display: flex; align-items: center; justify-content: center;
}
.care-meter-ring span { font-size: 0.78rem; font-weight: 800; color: #fff; }
.care-meter strong { display: block; color: #fff; font-size: 0.88rem; font-weight: 700; }
.care-meter p { color: rgba(255,255,255,0.6); font-size: 0.72rem; margin: 0.2rem 0 0; }
.dashboard-list { display: flex; flex-direction: column; gap: 0.55rem; }
.dashboard-list div {
    display: flex; align-items: center; gap: 0.65rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.72);
}
.dashboard-list div i { color: var(--ar-mint); font-size: 0.7rem; }

/* Home alerts */
.home-alert-success {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.25rem; margin-bottom: 1.5rem;
    background: rgba(76,175,125,0.08);
    border: 1px solid rgba(76,175,125,0.22);
    border-radius: 12px; color: #4caf7d; font-size: 0.82rem;
}
.home-empty-state {
    text-align: center; padding: 4rem 1rem;
    color: var(--mid-gray); font-size: 0.9rem;
}
.home-empty-state a { color: var(--ar-berry); text-decoration: underline; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem; margin-top: 2rem;
}
.review-card {
    padding: 1.75rem; border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.review-card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(214,43,117,0.20);
    transform: translateY(-4px);
}
.review-card-top {
    display: flex; align-items: center;
    justify-content: space-between; margin-bottom: 1rem;
}
.review-stars { color: #ffb800; font-size: 0.85rem; }
.review-verified {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--ar-mint);
    display: flex; align-items: center; gap: 0.3rem;
}
.review-title {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin-bottom: 0.6rem; line-height: 1.3;
}
.review-body {
    font-size: 0.82rem; color: rgba(255,255,255,0.62);
    line-height: 1.75; margin-bottom: 1rem;
}
.review-product {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; color: var(--ar-mint);
    font-weight: 600; margin-bottom: 1rem;
}
.review-author {
    display: flex; align-items: center; gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.review-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    color: #fff; font-size: 0.88rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-author strong { display: block; color: #fff; font-size: 0.82rem; font-weight: 700; }
.review-author span { color: rgba(255,255,255,0.45); font-size: 0.7rem; }

/* Section variants */
.section-featured-alt {
    background: linear-gradient(180deg, #12050d 0%, #1a0a14 100%) !important;
}
.section-gallery {
    background: linear-gradient(180deg, #0d0509 0%, #12050d 100%) !important;
    padding: var(--spacing-3xl) 0;
}
.gallery-dynamic-grid { margin-top: 2rem; }

/* Banner overlay */
.banner-img-wrap { position: relative; }
.banner-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.banner-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: var(--spacing-2xl);
}
.banner-overlay-content { max-width: 480px; }
.banner-title {
    font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem);
    font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.15;
}

/* ========================================================================
   26. MISSING COMPONENT STYLES
   ======================================================================== */

/* Gallery Card */
.gallery-card {
    position: relative; border-radius: 24px; overflow: hidden;
    background: #1a0a14; border: 1px solid rgba(214,43,117,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(214,43,117,0.18); }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 1.5rem; background: linear-gradient(to top, rgba(18,5,13,0.9), transparent);
    color: #fff;
}
.gallery-card-overlay span { display: block; font-weight: 700; font-size: 1rem; }
.gallery-card-overlay small { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

/* Cinematic Video Section */
.cinematic-video-section { padding: 120px 0; background: #0d0509; }
.video-3d-container { position: relative; }
.v3d-glow {
    position: absolute; inset: -40px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(214,43,117,0.25), transparent 70%);
    pointer-events: none;
}
.v3d-frame {
    position: relative; border-radius: 32px; overflow: hidden;
    border: 1px solid rgba(214,43,117,0.2); box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.v3d-video { width: 100%; height: 420px; object-fit: cover; display: block; }
.v3d-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(76,20,51,0.3), transparent);
    pointer-events: none;
}

/* Story Section */
.story-visual { position: relative; }
.story-visual-glow {
    position: absolute; inset: -60px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(214,43,117,0.15), transparent 70%);
    pointer-events: none;
}
.story-main-card {
    border-radius: 32px; overflow: hidden;
    border: 1px solid rgba(214,43,117,0.15);
    box-shadow: 0 24px 70px rgba(0,0,0,0.4);
}
.story-main-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-float-card {
    position: absolute; bottom: -20px; right: -20px;
    background: rgba(43,16,33,0.9); backdrop-filter: blur(12px);
    border: 1px solid rgba(214,43,117,0.2); border-radius: 20px;
    padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.sfc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; flex-shrink: 0;
}
.story-float-card strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 700; }
.story-float-card span { color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.story-content { padding-left: 1rem; }
.story-body { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; }
.story-footer { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(214,43,117,0.15); }
.story-signature { font-family: var(--font-display); font-size: 1.6rem; color: #fff; font-style: italic; }
.story-role { color: var(--theme-primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.25rem; }

/* Logout Modal */
.lm-backdrop {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(10,3,8,0.75); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lm-backdrop.lm-visible { opacity: 1; visibility: visible; }
.lm-card {
    background: #1e0d18; border: 1px solid rgba(214,43,117,0.2);
    border-radius: 28px; padding: 2.5rem 2rem; max-width: 420px; width: 90%;
    text-align: center; position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.lm-backdrop.lm-visible .lm-card { transform: translateY(0) scale(1); }
.lm-icon-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.lm-icon-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 1px solid rgba(214,43,117,0.3);
    animation: lmRingPulse 2.4s ease-in-out infinite;
}
.lm-icon-ring-2 { inset: -12px; animation-delay: -1.2s; }
@keyframes lmRingPulse { 0%,100% { opacity:0.4; transform:scale(1); } 50% { opacity:0.9; transform:scale(1.08); } }
.lm-icon-core {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem;
}
.lm-title { color: #fff !important; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.lm-body { color: rgba(255,255,255,0.7) !important; font-size: 0.88rem; line-height: 1.7; margin-bottom: 2rem; }
.lm-body strong { color: #fff !important; }
.lm-actions { display: flex; gap: 0.75rem; justify-content: center; }
.lm-btn-cancel, .lm-btn-confirm {
    border: 0; border-radius: 999px; padding: 0.7rem 1.6rem;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
    cursor: pointer; transition: all 0.25s ease;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.lm-btn-cancel { background: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.85) !important; }
.lm-btn-cancel:hover { background: rgba(255,255,255,0.16) !important; color: #fff !important; }
.lm-btn-confirm {
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary)) !important;
    color: #fff !important; box-shadow: 0 8px 20px rgba(214,43,117,0.3);
}
.lm-btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,43,117,0.45); }
.lm-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.06) !important; border: 0; color: rgba(255,255,255,0.5) !important;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s ease;
}
.lm-close:hover { background: rgba(255,255,255,0.12) !important; color: #fff !important; }

/* ========================================================================
   27. CONTACT PAGE
   ======================================================================== */

.contact-page {
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    min-height: 60vh;
}
.contact-page .form-control,
.contact-page .form-select {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 12px !important;
    padding: 0.78rem 1rem;
    font-size: 0.88rem;
}
.contact-page .form-control:focus,
.contact-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.contact-page .form-control::placeholder { color: rgba(76,20,51,0.35) !important; }
.contact-page .form-label {
    font-size: 0.75rem; font-weight: 600;
    color: var(--ar-plum); margin-bottom: 0.5rem;
}

.map-placeholder {
    display: flex; align-items: center; justify-content: center;
    border-radius: 24px; overflow: hidden;
}
.map-marker {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.map-marker i { font-size: 2.5rem; }
.map-marker p { font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* ========================================================================
   28. FOOTER GRID LAYOUT
   ======================================================================== */

.sfv2-container { position: relative; z-index: 1; padding: 3rem 0 0; }

.sfv2-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.sfv2-col-brand {}
.sfv2-col-links {}
.sfv2-col-newsletter {}
.sfv2-nl-desc {
    color: rgba(255,255,255,0.52);
    font-size: 0.78rem; line-height: 1.7;
    margin-bottom: 1rem;
}

/* ========================================================================
   29. CART PAGE
   ======================================================================== */

:root {
    --accent-gold: #b8976a;
    --black: #20111a;
}

.cart-page {
    padding: 8rem 0 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    min-height: 80vh;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--mid-gray);
    border-bottom: 1px solid rgba(76,20,51,0.08);
    margin-bottom: 0.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    gap: 1rem; align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(76,20,51,0.07);
    border-radius: 16px;
    transition: background 0.25s ease;
}
.cart-item:hover { background: rgba(214,43,117,0.03); }

.cart-item-info { display: flex; align-items: center; gap: 1rem; }

.cart-item-img {
    width: 72px; height: 80px; flex-shrink: 0;
    border-radius: 14px; overflow: hidden;
    background: linear-gradient(145deg,#fbfaf8,#f3f0eb);
    border: 1px solid rgba(255,255,255,0.08);
}

.cart-item-name {
    font-size: 0.88rem; font-weight: 600; color: var(--ar-ink);
    line-height: 1.4; margin-bottom: 0.25rem;
}
.cart-item-variant {
    font-size: 0.7rem; color: var(--mid-gray);
    letter-spacing: 0.06em;
}

.cart-item-remove {
    width: 32px; height: 32px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(224,92,92,0.08);
    color: rgba(224,92,92,0.65); font-size: 0.72rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.cart-item-remove:hover {
    background: rgba(224,92,92,0.18);
    color: #e05c5c; border-color: rgba(224,92,92,0.25);
}

.qty-selector {
    display: flex; align-items: center;
    border: 1px solid rgba(76,20,51,0.12);
    border-radius: 12px; overflow: hidden;
    background: rgba(255,255,255,0.80);
    width: fit-content;
}
.qty-btn {
    width: 34px; height: 34px; border: 0;
    background: transparent; color: var(--mid-gray);
    font-size: 1rem; cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(214,43,117,0.08); color: var(--theme-primary); }
.qty-input {
    width: 40px; border: 0; outline: 0;
    background: transparent; color: var(--ar-ink);
    font-size: 0.88rem; font-weight: 700;
    text-align: center;
}
/* Remove number input arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input[type=number] { -moz-appearance: textfield; }

.order-summary {
    padding: 2rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(76,20,51,0.10);
}
.order-summary-title {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700; color: var(--ar-ink);
    margin-bottom: 1.5rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(76,20,51,0.08);
}
.summary-row {
    display: flex; justify-content: space-between;
    align-items: center; padding: 0.65rem 0;
    font-size: 0.85rem; color: var(--ar-ink);
}
.summary-row .label { color: var(--mid-gray); }
.summary-divider {
    border: 0; border-top: 1px solid rgba(76,20,51,0.08);
    margin: 0.75rem 0;
}
.summary-total {
    font-size: 1.1rem; font-weight: 800; color: var(--ar-ink);
    padding: 0.75rem 0;
}

/* ========================================================================
   30. PRODUCT DETAIL PAGE
   ======================================================================== */

/* --p- variable aliases used in product.blade.php */
:root {
    --p-primary:    #d62b75;
    --p-accent:     #15a39a;
    --p-line:       rgba(76,20,51,0.12);
    --p-text-light: rgba(255,255,255,0.45);
}

.premium-product-page {
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 50%, #f3fffb 100%);
    min-height: 80vh;
}

/* Gallery stack */
.gallery-stack {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: start;
}
.thumbnail-track {
    display: flex; flex-direction: column; gap: 0.6rem;
}
.thumb-item {
    width: 72px; height: 72px; border-radius: 12px; overflow: hidden;
    border: 2px solid rgba(76,20,51,0.10);
    cursor: pointer; transition: border-color 0.25s ease;
    background: #fff;
}
.thumb-item.active { border-color: var(--theme-primary); }
.thumb-item img { width:100%; height:100%; object-fit:cover; }
.thumb-item:hover { border-color: rgba(214,43,117,0.40); }

.main-stage {
    position: relative; border-radius: 24px; overflow: hidden;
    background: linear-gradient(145deg,#fff,#fff1f7);
    border: 1px solid rgba(76,20,51,0.10);
    box-shadow: 0 24px 70px rgba(76,20,51,0.12);
    aspect-ratio: 1;
}
.stage-img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 1.5rem; display: block;
    transition: transform 0.5s ease;
}
.main-stage:hover .stage-img { transform: scale(1.04); }

/* Product meta */
.product-meta-header { margin-bottom: 1.5rem; }
.category-badge {
    display: inline-block; padding: 0.3rem 0.85rem;
    border-radius: 999px; font-size: 0.62rem; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    background: rgba(21,163,154,0.12);
    border: 1px solid rgba(21,163,154,0.25);
    color: #0d6d67; margin-bottom: 0.85rem;
}
.product-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem,3.5vw,2.4rem);
    font-weight: 700; color: var(--ar-ink);
    line-height: 1.15; margin-bottom: 0.5rem;
}
.price-display {
    display: flex; align-items: baseline; gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.current-price {
    font-size: 2rem; font-weight: 800;
    color: var(--theme-secondary);
}
.old-price {
    font-size: 1rem; color: var(--mid-gray);
    text-decoration: line-through;
}
.discount-tag {
    padding: 0.25rem 0.65rem; border-radius: 999px;
    background: rgba(224,92,92,0.12);
    border: 1px solid rgba(224,92,92,0.22);
    color: #e05c5c; font-size: 0.7rem; font-weight: 800;
}

/* Nutrition dashboard */
.nutrition-dashboard {
    margin-top: 2.5rem; padding: 2rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}
.nutrition-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.nutrient-card { padding: 0.75rem 0; }
.nutrient-label {
    display: flex; justify-content: space-between;
    font-size: 0.78rem; font-weight: 600;
    color: var(--ar-ink); margin-bottom: 0.4rem;
}
.nutrient-label .text-primary { color: var(--theme-primary); }
.progress-track {
    height: 6px; border-radius: 999px;
    background: rgba(76,20,51,0.08); overflow: hidden;
}
.progress-fill {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--ar-mint), var(--ar-berry));
    width: 0; transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
}

/* Feeding guide */
.feeding-guide-panel {
    padding: 1.75rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}
.guide-calculator {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 1.25rem;
}
.calc-input {
    width: 100%; padding: 0.72rem 1rem;
    border: 1px solid rgba(76,20,51,0.12);
    border-radius: 12px; font-size: 0.85rem;
    background: rgba(255,255,255,0.80);
    color: var(--ar-ink); outline: 0;
    transition: border-color 0.25s ease;
}
.calc-input:focus { border-color: rgba(214,43,117,0.40); }
.calc-result {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(21,163,154,0.08), rgba(214,43,117,0.06));
    border: 1px solid rgba(21,163,154,0.18);
    border-radius: 14px; text-align: center;
}
.result-value {
    font-size: 2rem; font-weight: 800;
    color: var(--theme-secondary); line-height: 1;
}

/* Comparison table */
.comparison-table {
    width: 100%; border-collapse: collapse;
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-md);
}
.comparison-table th, .comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left; font-size: 0.85rem;
    border-bottom: 1px solid rgba(76,20,51,0.08);
}
.comparison-table th {
    background: rgba(76,20,51,0.06);
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ar-plum);
}
.comparison-table td { background: #fff; color: var(--ar-ink); }
.comparison-table tr:last-child td { border-bottom: 0; }
.highlight-row {
    background: rgba(214,43,117,0.04) !important;
    font-weight: 600;
}

/* Order timeline */
.order-timeline {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin: 3rem 0; flex-wrap: wrap;
}
.timeline-step {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; flex: 1; min-width: 100px;
    position: relative;
}
.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute; top: 18px; left: 60%;
    width: 80%; height: 2px;
    background: linear-gradient(90deg, var(--ar-mint), rgba(21,163,154,0.2));
}
.step-dot {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--ar-mint), var(--ar-leaf));
    color: #fff; font-size: 0.72rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(21,163,154,0.28);
    position: relative; z-index: 1;
}
.step-label {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ar-plum); text-align: center;
}

/* Bundle section */
.bundle-section {
    padding: 3rem;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 24px;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}
.bundle-grid {
    display: flex; align-items: center;
    gap: 1.5rem; flex-wrap: wrap;
}
.bundle-product {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem; text-align: center;
}
.bundle-product img {
    width: 90px; height: 90px; object-fit: contain;
    border-radius: 16px; border: 1px solid rgba(76,20,51,0.10);
    background: #fff; padding: 6px;
}
.bundle-plus {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(76,20,51,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--ar-plum); font-size: 0.9rem;
}
.bundle-cta {
    flex: 1; min-width: 200px;
    padding: 1.25rem;
    background: rgba(76,20,51,0.04);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 16px;
}

/* Sticky purchase bar */
.sticky-purchase-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 500;
    padding: 1rem 0;
    background: rgba(255,255,255,0.95);
    border-top: 1px solid rgba(76,20,51,0.10);
    backdrop-filter: blur(20px);
    box-shadow: 0 -8px 32px rgba(76,20,51,0.12);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.sticky-purchase-bar.visible { transform: translateY(0); }

/* ========================================================================
   31. CHECKOUT PAGE
   ======================================================================== */

.checkout-page {
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    min-height: 80vh;
}

.payment-method-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.72);
    cursor: pointer; margin-bottom: 0.65rem;
    transition: var(--transition);
}
.payment-method-card:hover {
    background: rgba(255,255,255,0.92);
    border-color: rgba(214,43,117,0.25);
    transform: translateY(-2px);
}
.payment-method-card.selected {
    background: rgba(184,151,106,0.06);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(184,151,106,0.10);
}

.payment-radio {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid rgba(76,20,51,0.25);
    flex-shrink: 0; position: relative;
    transition: border-color 0.2s ease;
}
.payment-method-card.selected .payment-radio {
    border-color: var(--accent-gold);
}
.payment-method-card.selected .payment-radio::after {
    content: ''; position: absolute;
    inset: 3px; border-radius: 50%;
    background: var(--accent-gold);
}

.payment-method-name {
    font-size: 0.88rem; font-weight: 700; color: var(--ar-ink);
    line-height: 1.2;
}
.payment-method-desc {
    font-size: 0.7rem; color: var(--mid-gray);
    margin-top: 0.15rem;
}

/* ========================================================================
   32. DARK MODE
   ======================================================================== */

body.dark-mode {
    background: linear-gradient(180deg, #12050d 0%, #1a0a14 50%, #0d0509 100%) !important;
    color: rgba(255,255,255,0.85);
}
body.dark-mode #mainNav .nav-shell {
    background: linear-gradient(135deg, rgba(30,10,22,0.92), rgba(20,8,16,0.88)) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode #mainNav .navbar-nav {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode #mainNav .navbar-nav .nav-link {
    color: rgba(255,255,255,0.65) !important;
}
body.dark-mode .brand-copy strong { color: #fff !important; }
body.dark-mode .brand-copy small  { color: rgba(255,255,255,0.45) !important; }
body.dark-mode .hero {
    background: linear-gradient(115deg, rgba(18,5,13,0.95), rgba(26,10,20,0.90)) !important;
}
body.dark-mode .hero-title { color: #fff !important; }
body.dark-mode .hero-subtitle { color: rgba(255,255,255,0.65) !important; }
body.dark-mode .hero-eyebrow {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.10) !important;
    color: rgba(255,255,255,0.75) !important;
}
body.dark-mode .hero-stat {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .hero-stat-number { color: #fff !important; }
body.dark-mode .hero-stat-label  { color: rgba(255,255,255,0.45) !important; }
body.dark-mode .product-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .product-info { background: rgba(255,255,255,0.03) !important; }
body.dark-mode .product-name { color: #fff !important; }
body.dark-mode .section-featured {
    background: linear-gradient(180deg,#12050d,#1a0a14) !important;
}
body.dark-mode .section-header {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.06) !important;
}
body.dark-mode .section-title { color: #fff !important; }
body.dark-mode .eyebrow { color: var(--ar-berry) !important; }
body.dark-mode .experience-widgets {
    background: linear-gradient(180deg,#1a0a14,#12050d) !important;
}
body.dark-mode .experience-card {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .experience-card strong { color: #fff !important; }
body.dark-mode .shop-search-bar {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.10) !important;
}
body.dark-mode .shop-search-bar input { color: #fff !important; }
body.dark-mode .shop-toolbar {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .filter-tab {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.10) !important;
    color: rgba(255,255,255,0.72) !important;
}
body.dark-mode .filter-tab.active {
    background: linear-gradient(135deg,var(--theme-secondary),var(--theme-primary)) !important;
    color: #fff !important;
}
body.dark-mode .order-summary {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .nutrition-dashboard,
body.dark-mode .feeding-guide-panel,
body.dark-mode .bundle-section {
    background: rgba(255,255,255,0.04) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .nutrient-label { color: rgba(255,255,255,0.75) !important; }
body.dark-mode .comparison-table td {
    background: rgba(255,255,255,0.03) !important;
    color: rgba(255,255,255,0.75) !important;
    border-color: rgba(255,255,255,0.06) !important;
}
body.dark-mode .comparison-table th {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.55) !important;
}
body.dark-mode .sticky-purchase-bar {
    background: rgba(18,5,13,0.96) !important;
    border-color: rgba(255,255,255,0.08) !important;
}
body.dark-mode .calc-input {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

/* ========================================================================
   33. BTN-BIRDSELLA ALIAS
   ======================================================================== */
.btn-ARPets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-lg);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary) 54%, var(--ar-coral));
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(214, 43, 117, 0.24);
}
.btn-ARPets:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(214, 43, 117, 0.32);
    filter: brightness(1.05);
    color: #fff !important;
}
.btn-ARPets:disabled,
.btn-ARPets.opacity-50 {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ========================================================================
   34. PRODUCT PAGE LIGHT THEME
   ======================================================================== */
.premium-product-page {
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 50%, #f3fffb 100%);
    min-height: 80vh;
}

.premium-product-page .glass-card {
    background: rgba(255,255,255,0.80) !important;
    border: 1px solid rgba(76,20,51,0.10) !important;
    color: var(--ar-ink) !important;
}

.premium-product-page .form-control,
.premium-product-page .form-select {
    background: rgba(255,255,255,0.90) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 10px !important;
}

.premium-product-page .form-control:focus,
.premium-product-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}

.premium-product-page .form-label {
    color: var(--ar-plum) !important;
    font-weight: 600 !important;
    font-size: 0.78rem;
}

.premium-product-page .breadcrumb-item a { color: var(--ar-plum); }
.premium-product-page .breadcrumb-item.active { color: var(--mid-gray); }
.premium-product-page .text-muted { color: var(--mid-gray) !important; }
.premium-product-page .lead { color: var(--mid-gray) !important; }

.size-btn {
    background: rgba(255,255,255,0.80);
    color: var(--ar-ink);
    transition: var(--transition);
}
.size-btn.active {
    border-color: var(--theme-primary) !important;
    background: rgba(214,43,117,0.06) !important;
    color: var(--theme-primary) !important;
}

/* ========================================================================
   35. MOBILE RESPONSIVE ADDITIONS
   ======================================================================== */
@media (max-width: 991px) {
    .gallery-stack { grid-template-columns: 1fr; }
    .thumbnail-track { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
    .thumb-item { flex-shrink: 0; }
    .cart-table-header { display: none !important; }
    .cart-item { grid-template-columns: 2fr auto 40px; }
    .cart-item > div:nth-child(2),
    .cart-item > div:nth-child(4) { display: none !important; }
    .order-timeline { gap: 0.5rem; }
    .timeline-step:not(:last-child)::after { width: 60%; }
}

@media (max-width: 575px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-WingsFeed,
    .hero-actions .btn-outline-WingsFeed,
    .hero-actions .btn-ARPets { width: 100%; justify-content: center; }
    .order-summary { padding: 1.25rem; }
    .cart-page { padding: 6rem 0 4rem; }
    .checkout-page { padding: 6rem 0 4rem; }
    .guide-calculator { grid-template-columns: 1fr; }
    .nutrition-grid { grid-template-columns: 1fr; }
    .bundle-grid { flex-direction: column; align-items: flex-start; }
    .sfv2-cta-bar { flex-direction: column; text-align: center; }
    .sfv2-cta-btns { justify-content: center; }
    .footer-proof-grid { grid-template-columns: 1fr 1fr; }
    .intelligence-grid { grid-template-columns: 1fr; }
    .pm-account-row { grid-template-columns: 1fr; }
    .auth-trust-row { grid-template-columns: 1fr 1fr; }
    .sfv2-stats { grid-template-columns: 1fr 1fr 1fr; }
    .section-header { padding: 0.75rem; }
    .banner-img-wrap img { height: 280px; }
    .v3d-video { height: 260px; }
    .sticky-purchase-bar { padding: 0.75rem 0; }
}

/* ========================================================================
   END OF STYLESHEET
   ======================================================================== */

/* ========================================================================
   36. ACCOUNT / PROFILE PAGE â€” LIGHT THEME
   ======================================================================== */
.account-page {
    min-height: 80vh;
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
}

.account-page h1 { color: var(--ar-ink); }
.account-page .eyebrow { color: var(--ar-berry); }

/* Account section cards */
.account-page [style*="background:rgba(255,255,255,0.02)"],
.account-page [style*="background: rgba(255,255,255,0.02)"] {
    background: rgba(255,255,255,0.88) !important;
    border-color: rgba(76,20,51,0.10) !important;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(76,20,51,0.08);
}

.account-page .form-control,
.account-page .form-select {
    background: rgba(255,255,255,0.90) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 10px !important;
}
.account-page .form-control:focus,
.account-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.account-page .form-label {
    color: var(--ar-plum) !important;
    font-weight: 600 !important;
}
.account-page [style*="font-family:var(--font-display)"] { color: var(--ar-ink) !important; }
.account-page [style*="color:var(--mid-gray)"] { color: var(--mid-gray) !important; }

/* ========================================================================
   37. BLOG PAGE â€” LIGHT THEME
   ======================================================================== */
.section-blog-page {
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    padding: 100px 0 5rem;
}

/* Blog hero override â€” keep dark for contrast with the hero section */
.blog-hero {
    background: linear-gradient(180deg, #20111a 0%, #4c1433 100%);
    padding: 140px 0 60px;
}

/* Blog search form on light bg */
.blog-search-form .form-control {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
}
.blog-search-form .form-select {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
}

/* Blog article cards on light bg */
.blog-article-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}
.blog-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(76,20,51,0.14);
    border-color: rgba(214,43,117,0.22);
}
.blog-article-card h3 { color: var(--ar-ink) !important; }
.blog-article-card p { color: var(--mid-gray) !important; }

/* ========================================================================
   38. HOME PAGE DARK SECTIONS â€” KEEP DARK (intentional design)
   ======================================================================== */
/* These sections are intentionally dark for visual contrast */
.cinematic-video-section { background: #0d0509; }
.section-featured-alt    { background: linear-gradient(180deg, #12050d 0%, #1a0a14 100%) !important; }
.section-gallery         { background: linear-gradient(180deg, #0d0509 0%, #12050d 100%) !important; }

/* Nature video section */
.nature-video-section { background: #1a0a14; }
.nature-video-wrap { position: relative; }

/* ========================================================================
   39. CHECKOUT PAGE FORM OVERRIDES (light theme)
   ======================================================================== */
.checkout-page .form-control,
.checkout-page .form-select {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 10px !important;
}
.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.checkout-page .form-control::placeholder { color: rgba(76,20,51,0.35) !important; }
.checkout-page .form-label {
    font-size: 0.75rem; font-weight: 600;
    color: var(--ar-plum); margin-bottom: 0.6rem;
}
.checkout-page h1 { color: var(--ar-ink); }
.checkout-page .eyebrow { color: var(--ar-berry); }

/* Checkout form section cards */
.checkout-page .form-section {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(76,20,51,0.06);
}
.checkout-page .form-section-title {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ar-ink);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.checkout-page .form-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(76,20,51,0.12), transparent);
}

/* Payment method cards on light bg */
.checkout-page .pm-glow-card {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.checkout-page .pm-brand { color: var(--ar-ink) !important; }
.checkout-page .pm-brand-sub { color: var(--mid-gray) !important; }
.checkout-page .pm-step { color: var(--mid-gray) !important; }
.checkout-page .pm-account-value { color: var(--ar-ink) !important; }
.checkout-page .pm-account-label { color: var(--mid-gray) !important; }
.checkout-page .pm-account-item {
    background: rgba(76,20,51,0.04);
    border: 1px solid rgba(76,20,51,0.08);
}
.checkout-page .manual-details-card {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(76,20,51,0.10);
}
.checkout-page .manual-proof-panel {
    background: rgba(214,43,117,0.03);
    border: 1px dashed rgba(214,43,117,0.25);
}

/* ========================================================================
   40. MOBILE RESPONSIVE ADDITIONS
   ======================================================================== */
@media (max-width: 991px) {
    .gallery-stack { grid-template-columns: 1fr; }
    .thumbnail-track { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
    .thumb-item { flex-shrink: 0; }
    .cart-table-header { display: none !important; }
    .cart-item { grid-template-columns: 2fr auto 40px; }
    .cart-item > div:nth-child(2),
    .cart-item > div:nth-child(4) { display: none !important; }
    .order-timeline { gap: 0.5rem; }
    .timeline-step:not(:last-child)::after { width: 60%; }
    .sfv2-grid { grid-template-columns: 1fr 1fr; }
    .sfv2-col-brand { grid-column: 1 / -1; }
}

@media (max-width: 575px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-WingsFeed,
    .hero-actions .btn-outline-WingsFeed,
    .hero-actions .btn-ARPets { width: 100%; justify-content: center; }
    .order-summary { padding: 1.25rem; }
    .cart-page { padding: 6rem 0 4rem; }
    .checkout-page { padding: 6rem 0 4rem; }
    .guide-calculator { grid-template-columns: 1fr; }
    .nutrition-grid { grid-template-columns: 1fr; }
    .bundle-grid { flex-direction: column; align-items: flex-start; }
    .sfv2-cta-bar { flex-direction: column; text-align: center; }
    .sfv2-cta-btns { justify-content: center; }
    .footer-proof-grid { grid-template-columns: 1fr 1fr; }
    .intelligence-grid { grid-template-columns: 1fr; }
    .pm-account-row { grid-template-columns: 1fr; }
    .sfv2-stats { grid-template-columns: 1fr 1fr 1fr; }
    .section-header { padding: 0.75rem; }
    .banner-img-wrap img { height: 280px; }
    .v3d-video { height: 260px; }
    .sticky-purchase-bar { padding: 0.75rem 0; }
    .sfv2-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .account-page { padding: 7rem 0 3rem; }
}

/* ========================================================================
   END OF STYLESHEET
   ======================================================================== */

/* ========================================================================
   36. ACCOUNT / PROFILE PAGE â€” LIGHT THEME
   ======================================================================== */
.account-page {
    min-height: 80vh;
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
}
.account-page h1 { color: var(--ar-ink); }

.account-page .form-control,
.account-page .form-select {
    background: rgba(255,255,255,0.90) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 10px !important;
}
.account-page .form-control:focus,
.account-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.account-page .form-label {
    color: var(--ar-plum) !important;
    font-weight: 600 !important;
}

/* Account section cards â€” override dark inline styles */
.account-section-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(76,20,51,0.08);
}
.account-section-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(76,20,51,0.08);
}
.account-section-icon {
    width: 48px; height: 48px;
    background: rgba(214,43,117,0.08);
    border: 1px solid rgba(214,43,117,0.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--theme-primary); font-size: 1.1rem;
}
.account-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--ar-ink);
}
.account-section-subtitle {
    font-size: 0.75rem; color: var(--mid-gray);
}

/* ========================================================================
   37. CHECKOUT PAGE â€” LIGHT THEME FORM OVERRIDES
   ======================================================================== */
.checkout-page .form-control,
.checkout-page .form-select {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 10px !important;
}
.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.checkout-page .form-control::placeholder { color: rgba(76,20,51,0.35) !important; }
.checkout-page .form-label {
    font-size: 0.75rem; font-weight: 600;
    color: var(--ar-plum); margin-bottom: 0.6rem;
}
.checkout-page h1 { color: var(--ar-ink); }

/* Checkout form section cards */
.checkout-page .form-section {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.10) !important;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(76,20,51,0.06);
}
.checkout-page .form-section-title {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ar-ink) !important;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.checkout-page .form-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(76,20,51,0.12), transparent);
}

/* Payment glow cards on light bg */
.checkout-page .pm-glow-card {
    background: rgba(255,255,255,0.80) !important;
    border: 1px solid rgba(76,20,51,0.10) !important;
}
.checkout-page .pm-brand { color: var(--ar-ink) !important; }
.checkout-page .pm-brand-sub { color: var(--mid-gray) !important; }
.checkout-page .pm-step { color: var(--mid-gray) !important; }
.checkout-page .pm-account-value { color: var(--ar-ink) !important; }
.checkout-page .pm-account-label { color: var(--mid-gray) !important; }
.checkout-page .pm-account-item {
    background: rgba(76,20,51,0.04) !important;
    border: 1px solid rgba(76,20,51,0.08) !important;
}
.checkout-page .manual-details-card {
    background: rgba(255,255,255,0.72) !important;
    border: 1px solid rgba(76,20,51,0.10) !important;
}
.checkout-page .manual-proof-panel {
    background: rgba(214,43,117,0.03) !important;
    border: 1px dashed rgba(214,43,117,0.25) !important;
}

/* ========================================================================
   38. CONTACT PAGE â€” LIGHT THEME
   ======================================================================== */
.contact-page {
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    min-height: 60vh;
}
.contact-page .form-control,
.contact-page .form-select {
    background: rgba(255,255,255,0.88) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
    border-radius: 12px !important;
    padding: 0.78rem 1rem;
    font-size: 0.88rem;
}
.contact-page .form-control:focus,
.contact-page .form-select:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
    background: #fff !important;
}
.contact-page .form-control::placeholder { color: rgba(76,20,51,0.35) !important; }
.contact-page .form-label {
    font-size: 0.75rem; font-weight: 600;
    color: var(--ar-plum); margin-bottom: 0.5rem;
}

/* Contact form card */
.contact-form-card {
    padding: 2.75rem !important;
    background: #ffffff !important;
    border: 1px solid rgba(228, 63, 134, 0.12) !important;
    border-radius: 28px !important;
    box-shadow: 0 18px 48px rgba(61,10,40,0.08) !important;
}
.contact-form-card h2 {
    color: #2d1a24 !important;
    font-family: var(--font-display) !important;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em !important;
}
.contact-form-card p {
    color: #6d5167 !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1.8rem !important;
    font-weight: 500 !important;
    font-family: var(--font-primary) !important;
}

/* Contact info cards */
.contact-info-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 16px rgba(76,20,51,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(76,20,51,0.10);
    border-color: rgba(214,43,117,0.20);
}

/* ========================================================================
   39. BLOG PAGE â€” LIGHT THEME
   ======================================================================== */
.blog-index-section {
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    padding: 100px 0 5rem;
}

/* Blog search bar on light bg */
.blog-search-wrap {
    padding: 1.5rem;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(76,20,51,0.06);
    margin-bottom: 3rem;
}
.blog-search-wrap .form-control {
    background: rgba(255,255,255,0.90) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
}
.blog-search-wrap .form-select {
    background: rgba(255,255,255,0.90) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
}

/* Blog article cards */
.blog-card {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(76,20,51,0.14);
    border-color: rgba(214,43,117,0.22);
}
.blog-card h3 { color: var(--ar-ink) !important; }
.blog-card p { color: var(--mid-gray) !important; }
.blog-card .read-more { color: var(--ar-berry) !important; }

/* ========================================================================
   40. HOME PAGE â€” DARK SECTIONS (intentional contrast sections)
   ======================================================================== */
.cinematic-video-section { background: #0d0509; }
.section-featured-alt    { background: linear-gradient(180deg, #12050d 0%, #1a0a14 100%) !important; }
.section-gallery         { background: linear-gradient(180deg, #0d0509 0%, #12050d 100%) !important; }
.nature-video-section    { background: #1a0a14; }
.nature-video-wrap       { position: relative; }

/* ========================================================================
   41. ORDERS PAGE â€” LIGHT THEME
   ======================================================================== */
.orders-page {
    padding: 150px 0 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    color: var(--ar-ink);
}
.orders-page .op-header h1 { color: var(--ar-ink); }
.orders-page .op-header p { color: var(--mid-gray); }
.orders-page .order-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(76,20,51,0.10);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 32px rgba(76,20,51,0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.orders-page .order-card:hover {
    transform: translateY(-2px);
    border-color: rgba(214,43,117,0.22);
    box-shadow: 0 16px 48px rgba(76,20,51,0.12);
}
.orders-page .order-number { color: var(--ar-ink); }
.orders-page .order-date { color: var(--mid-gray); }
.orders-page .order-total { color: var(--ar-ink); }
.orders-page .empty-state {
    background: rgba(255,255,255,0.90);
    border: 1px dashed rgba(76,20,51,0.18);
}
.orders-page .empty-state h3 { color: var(--ar-ink); }
.orders-page .empty-state p { color: var(--mid-gray); }

/* ========================================================================
   42. CHECKOUT SUCCESS PAGE â€” LIGHT THEME
   ======================================================================== */
.checkout-success-page {
    min-height: 80vh;
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%);
    padding: 8rem 0;
    color: var(--ar-ink);
}

/* ========================================================================
   43. RESPONSIVE â€” FINAL
   ======================================================================== */
@media (max-width: 991px) {
    .gallery-stack { grid-template-columns: 1fr; }
    .thumbnail-track { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
    .thumb-item { flex-shrink: 0; }
    .cart-table-header { display: none !important; }
    .cart-item { grid-template-columns: 2fr auto 40px; }
    .cart-item > div:nth-child(2),
    .cart-item > div:nth-child(4) { display: none !important; }
    .order-timeline { gap: 0.5rem; }
    .timeline-step:not(:last-child)::after { width: 60%; }
    .sfv2-grid { grid-template-columns: 1fr 1fr; }
    .sfv2-col-brand { grid-column: 1 / -1; }
    .contact-form-card { padding: 1.5rem; }
}

@media (max-width: 575px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-WingsFeed,
    .hero-actions .btn-outline-WingsFeed,
    .hero-actions .btn-ARPets { width: 100%; justify-content: center; }
    .order-summary { padding: 1.25rem; }
    .cart-page { padding: 6rem 0 4rem; }
    .checkout-page { padding: 6rem 0 4rem; }
    .account-page { padding: 7rem 0 3rem; }
    .orders-page { padding: 120px 0 3rem; }
    .guide-calculator { grid-template-columns: 1fr; }
    .nutrition-grid { grid-template-columns: 1fr; }
    .bundle-grid { flex-direction: column; align-items: flex-start; }
    .sfv2-cta-bar { flex-direction: column; text-align: center; }
    .sfv2-cta-btns { justify-content: center; }
    .footer-proof-grid { grid-template-columns: 1fr 1fr; }
    .intelligence-grid { grid-template-columns: 1fr; }
    .pm-account-row { grid-template-columns: 1fr; }
    .sfv2-stats { grid-template-columns: 1fr 1fr 1fr; }
    .section-header { padding: 0.75rem; }
    .banner-img-wrap img { height: 280px; }
    .v3d-video { height: 260px; }
    .sticky-purchase-bar { padding: 0.75rem 0; }
    .sfv2-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .contact-form-card { padding: 1.25rem; border-radius: 16px; }
    .bundle-section { padding: 1.5rem; }
    .hero-3d-scene { width: 100%; max-width: 320px; }
}

/* ========================================================================
   END OF STYLESHEET
   ======================================================================== */

/* ========================================================================
   UNIVERSAL PINK THEME â€” FORCE ALL PAGES LIGHT
   This overrides any remaining dark inline styles on page wrappers
   ======================================================================== */

/* Force every main page wrapper to light pink */
.cart-page,
.checkout-page,
.contact-page,
.account-page,
.orders-page,
.premium-product-page,
.checkout-success-page { background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%) !important; color: var(--ar-ink) !important; }

/* Force all section backgrounds that were dark */
section[style*="background: #000"],
section[style*="background:#000"],
section[style*="background: linear-gradient(to bottom, #000"],
section[style*="background: #1a0a14"],
section[style*="background:#1a0a14"],
section[style*="background: linear-gradient(180deg, #12050d"],
section[style*="background:linear-gradient(180deg, #12050d"] {
    background: linear-gradient(180deg, #fff9f2 0%, #fff3f8 100%) !important;
    color: var(--ar-ink) !important;
}

/* Force all div wrappers with dark backgrounds */
div[style*="background:rgba(255,255,255,0.02)"],
div[style*="background: rgba(255,255,255,0.02)"],
div[style*="background:rgba(255,255,255,0.03)"],
div[style*="background: rgba(255,255,255,0.03)"],
div[style*="background:rgba(255,255,255,0.04)"],
div[style*="background: rgba(255,255,255,0.04)"] {
    background: rgba(255,255,255,0.88) !important;
    border-color: rgba(76,20,51,0.10) !important;
}

/* Force dark text in all inline-styled elements on light pages */
.cart-page h1, .cart-page h2, .cart-page h3,
.checkout-page h1, .checkout-page h2, .checkout-page h3,
.contact-page h1, .contact-page h2, .contact-page h3,
.account-page h1, .account-page h2, .account-page h3,
.orders-page h1, .orders-page h2, .orders-page h3,
.premium-product-page h1, .premium-product-page h2, .premium-product-page h3 {
    color: var(--ar-ink) !important;
}

/* Fix any white text on light backgrounds */
.cart-page [style*="color:#fff"],
.cart-page [style*="color: #fff"],
.checkout-page [style*="color:#fff"],
.checkout-page [style*="color: #fff"],
.account-page [style*="color:#fff"],
.account-page [style*="color: #fff"],
.contact-page [style*="color:#fff"],
.contact-page [style*="color: #fff"],
.orders-page [style*="color:#fff"],
.orders-page [style*="color: #fff"] {
    color: var(--ar-ink) !important;
}

/* Exception: keep white text inside pink/dark buttons and badges */
.cart-page .btn-WingsFeed [style*="color:#fff"],
.cart-page .btn-ARPets [style*="color:#fff"],
.checkout-page .btn-WingsFeed,
.checkout-page .btn-ARPets,
.account-page .btn-WingsFeed,
.account-page .btn-ARPets { color: #fff !important; }

/* Fix form controls globally on light pages */
.cart-page .form-control,
.cart-page .form-select,
.checkout-page .form-control,
.checkout-page .form-select,
.contact-page .form-control,
.contact-page .form-select,
.account-page .form-control,
.account-page .form-select,
.orders-page .form-control,
.orders-page .form-select {
    background: #fff !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: var(--ar-ink) !important;
}
.cart-page .form-control:focus,
.checkout-page .form-control:focus,
.contact-page .form-control:focus,
.account-page .form-control:focus {
    border-color: rgba(214,43,117,0.45) !important;
    box-shadow: 0 0 0 4px rgba(214,43,117,0.10) !important;
}

/* Fix border colors on light pages */
.cart-page [style*="border-bottom:1px solid rgba(255,255,255"],
.cart-page [style*="border-top:1px solid rgba(255,255,255"],
.checkout-page [style*="border-bottom:1px solid rgba(255,255,255"],
.account-page [style*="border-bottom:1px solid rgba(255,255,255"] {
    border-color: rgba(76,20,51,0.08) !important;
}

/* About page dark sections â€” keep dark (intentional) */
.about-dark-section { background: linear-gradient(135deg, #20111a 0%, var(--theme-secondary) 54%, #116f68 100%) !important; }

/* Home page intentional dark sections */
.cinematic-video-section,
.section-featured-alt,
.section-gallery,
.nature-video-section,
.section-showcase,
.section-reviews { /* keep their own backgrounds */ }

/* ========================================================================
   END UNIVERSAL OVERRIDE
   ==========================================================


/* ============================================================
   AR PETS — PINK THEME + TEXT VISIBILITY
   Single source of truth. Loaded last = wins all conflicts.
   ============================================================ */

/* ── Variables ── */
:root {
    --pk-deep:  #3d0a28;
    --pk-mid:   #8b1a4a;
    --pk-rose:  #e43f86;
    --pk-teal:  #15a39a;
    --pk-gold:  #f3b64e;
    --pk-ink:   #2d1a24;
    --pk-muted: #9a7085;
    --pk-soft:  #fff5f9;
}

/* ── Body ── */
body {
    background:
        radial-gradient(circle at 12% 8%, rgba(228,63,134,0.10), transparent 28rem),
        radial-gradient(circle at 88% 18%, rgba(21,163,154,0.07), transparent 24rem),
        linear-gradient(180deg, #fff9fb 0%, #fff0f6 40%, #f3fffb 70%, #fff9fb 100%) !important;
    color: #2d1a24 !important;
}

/* ── Navbar ── */
#mainNav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
#mainNav.scrolled,
#mainNav.navbar-scrolled {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
#mainNav .nav-shell {
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,241,248,0.72)) !important;
    border: 1px solid rgba(255,255,255,0.72) !important;
    box-shadow: 0 20px 52px rgba(61,10,40,0.12) !important;
}
#mainNav.scrolled .nav-shell,
#mainNav.navbar-scrolled .nav-shell {
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,245,249,0.92)) !important;
}
#mainNav .navbar-nav .nav-link {
    color: rgba(61, 10, 40, 0.75) !important;
    border-radius: 12px;
}
#mainNav .navbar-nav .nav-link:hover {
    color: var(--theme-primary, #d62b75) !important;
    background: rgba(214, 43, 117, 0.05) !important;
    box-shadow: none !important;
}
#mainNav .navbar-nav .nav-link.active {
    color: var(--theme-primary, #d62b75) !important;
    background: rgba(214, 43, 117, 0.08) !important;
    box-shadow: none !important;
}
body.dark-mode #mainNav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
}
body.dark-mode #mainNav .navbar-nav .nav-link:hover {
    color: #ff7a87 !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode #mainNav .navbar-nav .nav-link.active {
    color: #ff7a87 !important;
    background: rgba(255, 255, 255, 0.12) !important;
}
.brand-copy strong { color: #3d0a28 !important; }
.brand-copy small  { color: #8a5770 !important; }
.nav-cart-btn { background: linear-gradient(145deg, #3d0a28, #e43f86) !important; color: #fff !important; }

/* Hamburger Line Animations */
.navbar-toggler span {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Responsive Navigation Improvements */
@media (max-width: 991px) {
    #mainNav .nav-shell {
        flex-wrap: wrap !important;
        padding: 0.75rem 1rem !important;
    }
    #mainNav .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        margin-top: 0.75rem;
        padding: 0.85rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96) !important;
        border: 1px solid rgba(76, 20, 51, 0.10);
        box-shadow: 0 10px 30px rgba(76, 20, 51, 0.08);
    }
    body.dark-mode #mainNav .navbar-collapse {
        background: rgba(20, 8, 16, 0.98) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }
    #mainNav .navbar-nav {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 0.25rem !important;
        backdrop-filter: none !important;
    }
    #mainNav .navbar-nav .nav-link {
        width: 100%;
        padding: 0.65rem 1rem !important;
        justify-content: flex-start;
    }
    #mainNav .nav-actions {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(76, 20, 51, 0.08);
        justify-content: center;
    }
    body.dark-mode #mainNav .nav-actions {
        border-top-color: rgba(255, 255, 255, 0.08) !important;
    }
    #mainNav .nav-actions .btn-sm-nav {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }
}

/* Mega Menu Dark Mode Enhancements */
body.dark-mode .nav-mega-panel {
    background: linear-gradient(180deg, rgba(26, 10, 20, 0.98), rgba(20, 8, 16, 0.96)) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset !important;
}
body.dark-mode .nav-mega-label {
    color: rgba(255, 255, 255, 0.4) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode .nav-mega-col {
    border-right-color: rgba(255, 255, 255, 0.08) !important;
}
body.dark-mode .nav-mega-col a {
    color: rgba(255, 255, 255, 0.8) !important;
}
body.dark-mode .nav-mega-col a i {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04)) !important;
    color: #ff7a87 !important;
}
body.dark-mode .nav-mega-col a:hover {
    color: #ff7a87 !important;
    background: rgba(255, 255, 255, 0.05) !important;
}
body.dark-mode .nav-mega-col a:hover i {
    background: linear-gradient(135deg, #d62b75, #ff7a87) !important;
    color: #fff !important;
}
body.dark-mode .nav-mega-card {
    background: linear-gradient(135deg, #3d0a28 0%, #8b1a4a 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 24px 56px rgba(0,0,0,0.3) !important;
}
body.dark-mode .nav-mega-card-icon {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* ── Hero — dark left, light right ── */
.hero {
    background:
        radial-gradient(ellipse at 80% 30%, rgba(228,63,134,0.18), transparent 45rem),
        radial-gradient(ellipse at 10% 80%, rgba(21,163,154,0.12), transparent 35rem),
        linear-gradient(135deg, #2d0a24 0%, #4c1433 50%, #68153e 100%) !important;
}
/* Compact & Secondary Heroes Height and Padding Polish */
.hero-compact,
.shop-hero,
.about-hero {
    min-height: unset !important;
    padding-top: 10rem !important;
    padding-bottom: 5rem !important;
}
.hero-compact .hero-content,
.shop-hero .hero-content,
.about-hero .hero-content {
    padding-top: 0 !important;
}
@media (max-width: 767px) {
    .hero-compact,
    .shop-hero,
    .about-hero {
        padding-top: 8rem !important;
        padding-bottom: 3.5rem !important;
    }
}
.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-eyebrow,
.hero .hero-stat-number,
.hero .hero-stat-label { color: #ffffff !important; }
.hero .hero-title em   { color: #f3b64e !important; }
.hero .hero-eyebrow    { color: #f3b64e !important; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 0.5rem 1rem; width: fit-content; }
.hero .hero-subtitle {
    color: #ebdbe3 !important; /* Premium warm rose-cream */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.hero .hero-subtitle strong {
    color: #ffcbdc !important; /* Soft blushing pink highlight */
    font-weight: 700 !important;
}
.hero .hero-eyebrow,
.hero .eyebrow {
    color: #f3b64e !important;
}
.hero .eyebrow::before,
.hero .eyebrow::after {
    background: #f3b64e !important;
}
.hero .hero-stat-number { color: #ffffff !important; }
.hero .hero-stat-label  { color: rgba(255,255,255,0.72) !important; }
.hero .post-meta-author { color: #ffffff !important; }
.hero .post-meta-date   { color: rgba(255, 255, 255, 0.72) !important; }
.hero .hero-stats { background: rgba(255,255,255,0.14) !important; border: 1px solid rgba(255,255,255,0.22) !important; }
.hero .hero-stat  { background: rgba(255,255,255,0.12) !important; border: 1px solid rgba(255,255,255,0.16) !important; }

/* ── Marquee ── */
.marquee-strip { background: linear-gradient(90deg, #3d0a28, #8b1a4a, #e43f86) !important; }
.marquee-item  { color: rgba(255,255,255,0.92) !important; }

/* ── Experience widgets ── */
.experience-widgets { background: linear-gradient(180deg, #fff7fb, #fffdf8) !important; }
.experience-card { background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,232,241,0.72)) !important; border: 1px solid rgba(228,63,134,0.14) !important; border-radius: 22px !important; }
.experience-card span   { color: #8b1a4a !important; }
.experience-card strong { color: #2d1a24 !important; }
.experience-icon { background: linear-gradient(135deg, #e43f86, #8b1a4a) !important; color: #fff !important; }

/* ── Section globals on light bg ── */
.section-featured,
.section-featured-alt { background: linear-gradient(180deg, #fffdf8, #fff4f8) !important; }
.section-header { background: rgba(255,255,255,0.65) !important; border: 1px solid rgba(228,63,134,0.10) !important; border-radius: 24px !important; }
.section-header p { color: #7c5467 !important; }
.section-title    { color: #2d1a24 !important; }
.eyebrow          { color: #e43f86 !important; }
.eyebrow::before,
.eyebrow::after   { background: #e43f86 !important; }

/* ── Product cards ── */
.product-card { background: #fff !important; border: 1px solid rgba(228,63,134,0.12) !important; border-radius: 22px !important; box-shadow: 0 16px 40px rgba(61,10,40,0.10) !important; }
.product-img-wrapper { background: linear-gradient(145deg, #ffffff, #fff1f7) !important; }
.product-info { background: #fffdf8 !important; }
.product-name,
.product-name a     { color: #2d1a24 !important; }
.product-name a:hover { color: #e43f86 !important; }
.product-brand      { color: #15a39a !important; }
.product-price,
.product-pricing    { color: #8b1a4a !important; font-weight: 700; }
.product-price-old  { color: #9a7085 !important; }
.product-scent,
.product-ingredients { color: #7c5467 !important; }

/* ── Cinematic video section ── */
.cinematic-video-section { background: linear-gradient(180deg, #fff4f8, #fff9f2) !important; padding: 6rem 0; }
.cinematic-video-section .section-title    { color: #2d1a24 !important; }
.cinematic-video-section .section-title em { color: #e43f86 !important; }
.cinematic-video-section p { color: #7c5467 !important; }

/* ── Showcase — dark bg ── */
.section-showcase { background: linear-gradient(135deg, #3d0a28 0%, #8b1a4a 54%, #116f68 100%) !important; color: #fff !important; }
.section-showcase .section-title  { color: #ffffff !important; }
.section-showcase .eyebrow        { color: #f3b64e !important; }
.section-showcase p,
.section-showcase .showcase-copy p { color: rgba(255,255,255,0.80) !important; }
.showcase-shell { background: rgba(255,255,255,0.10) !important; border: 1px solid rgba(255,255,255,0.20) !important; border-radius: 30px !important; }
.showcase-dashboard { background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)) !important; border: 1px solid rgba(255,255,255,0.16) !important; border-radius: 22px !important; color: #fff !important; }
.dashboard-header,
.care-meter,
.dashboard-list div { background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.12) !important; color: #fff !important; }

/* ── Story section ── */
.section-story { background: linear-gradient(180deg, #fff7fb, #f3fffb) !important; }
.section-story .section-title     { color: #2d1a24 !important; }
.section-story .section-title em  { color: #e43f86 !important; }
.story-body                        { color: #7c5467 !important; }
.story-signature                   { color: #e43f86 !important; }
.story-role                        { color: #8b1a4a !important; }
.story-float-card                  { background: rgba(255,255,255,0.96) !important; border: 1px solid rgba(228,63,134,0.18) !important; border-radius: 18px !important; }
.story-float-card strong           { color: #2d1a24 !important; }
.story-float-card span             { color: #9a7085 !important; }
.sfc-icon { background: linear-gradient(135deg, #e43f86, #8b1a4a) !important; color: #fff !important; }
.story-visual-glow { background: radial-gradient(circle, rgba(228,63,134,0.20), transparent 68%) !important; }
.story-main-card { background: linear-gradient(135deg, #fff3f8, #f3fffb) !important; border: 1px solid rgba(228,63,134,0.14) !important; border-radius: 32px !important; padding: 2rem !important; }

/* ── Reviews section ── */
.section-reviews { background: linear-gradient(180deg, #fff4f8, #fffdf8) !important; padding: 6rem 0; }
.section-reviews .section-header { background: rgba(255,255,255,0.96) !important; border-color: rgba(228,63,134,0.12) !important; box-shadow: 0 18px 40px rgba(61,10,40,0.06) !important; padding: 2rem 2.5rem !important; }
.section-reviews .section-title   { color: #2d1a24 !important; font-family: var(--font-display) !important; font-size: clamp(2.25rem, 4vw, 3.4rem) !important; line-height: 1.05 !important; letter-spacing: -0.03em !important; margin-bottom: 1rem !important; }
.section-reviews .eyebrow         { color: #e43f86 !important; letter-spacing: 0.18em !important; }
.section-reviews .section-header p { color: #6d5167 !important; font-size: 1rem !important; line-height: 1.9 !important; max-width: 680px; margin: 0 auto !important; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.review-card { background: #ffffff !important; border: 1px solid rgba(228,63,134,0.12) !important; border-radius: 28px !important; padding: 2rem !important; box-shadow: 0 18px 48px rgba(61,10,40,0.08) !important; min-height: 100%; transition: transform 0.35s ease, box-shadow 0.35s ease !important; display: flex; flex-direction: column; }
.review-card:hover { transform: translateY(-5px); box-shadow: 0 28px 68px rgba(61,10,40,0.12) !important; }
.review-card .review-title         { color: #2d1a24 !important; font-size: 1.05rem !important; font-weight: 700 !important; line-height: 1.35 !important; margin-bottom: 0.75rem !important; }
.review-card .review-body          { color: #6d5167 !important; font-size: 1rem !important; line-height: 1.9 !important; margin-bottom: 1.2rem !important; }
.review-card .review-stars         { color: #e43f86 !important; font-size: 1rem !important; margin-bottom: 0.85rem !important; display: inline-flex; gap: 0.25rem; }
.review-card .review-author strong { color: #2d1a24 !important; font-size: 0.95rem !important; }
.review-card .review-author span   { color: #8d6b83 !important; font-size: 0.78rem !important; }
.review-card .review-product       { color: #15a39a !important; font-size: 0.78rem !important; margin: 0.9rem 0; display: inline-flex; align-items: center; gap: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #e43f86, #8b1a4a) !important; color: #fff !important; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-verified { font-size: 0.72rem !important; font-weight: 700 !important; color: #15a39a !important; background: rgba(21,163,154,0.12) !important; border: 1px solid rgba(21,163,154,0.22) !important; padding: 0.25rem 0.75rem !important; border-radius: 999px !important; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem !important; }
.review-author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(228,63,134,0.10) !important; }

/* ── Gallery section ── */
.section-gallery { background: linear-gradient(180deg, #fffdf8, #fff4f8) !important; }
.section-gallery .section-title    { color: #2d1a24 !important; }
.section-gallery .section-header p { color: #7c5467 !important; }
.gallery-card { position: relative; border-radius: 24px !important; overflow: hidden; border: 1px solid rgba(228,63,134,0.12) !important; box-shadow: 0 16px 40px rgba(61,10,40,0.10) !important; cursor: pointer; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.gallery-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(61,10,40,0.18) !important; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(61,10,40,0.82), transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.35s ease; }
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay span  { color: #fff; font-weight: 700; font-size: 0.95rem; }
.gallery-card-overlay small { color: rgba(255,255,255,0.72); font-size: 0.72rem; margin-top: 0.25rem; }

/* ── Blog section — dark ── */
.section-blog { background: linear-gradient(180deg, #1a0a14, #2b1021) !important; }

/* ── Banner section ── */
.section-banner { background: linear-gradient(180deg, #f3fffb, #fff9f2) !important; padding: 5rem 0 !important; }
.banner-img-wrap { border-radius: 32px !important; overflow: hidden; box-shadow: 0 28px 80px rgba(61,10,40,0.18) !important; border: 1px solid rgba(228,63,134,0.12) !important; }
.banner-overlay  { background: linear-gradient(90deg, rgba(61,10,40,0.88), rgba(139,26,74,0.62), rgba(17,111,104,0.50)) !important; }
.banner-title    { color: #fff !important; font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-bottom: 1.5rem; }

/* ── Nature video — dark ── */
.nature-video-section { background: linear-gradient(180deg, #1a0a14, #2b1021) !important; }

/* ── About page inline sections ── */
.about-page section { color: #2d1a24; }

/* ── Contact page ── */
.contact-page { background: linear-gradient(180deg, #fff9f2, #fff3f8) !important; }
.contact-form-card { background: #ffffff !important; border: 1px solid rgba(228,63,134,0.14) !important; border-radius: 28px !important; padding: 2.75rem !important; box-shadow: 0 18px 48px rgba(61,10,40,0.08) !important; }
.contact-form-card h2 { color: #2d1a24 !important; font-family: var(--font-display) !important; font-size: 1.85rem !important; font-weight: 700 !important; margin-bottom: 0.6rem !important; letter-spacing: -0.02em !important; }
.contact-form-card p  { color: #6d5167 !important; font-size: 1rem !important; line-height: 1.75 !important; margin-bottom: 1.8rem !important; font-weight: 500 !important; font-family: var(--font-primary) !important; }
.contact-form-card .form-label { color: #2d1a24 !important; font-size: 0.76rem !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; font-family: var(--font-primary) !important; }
.contact-form-card .form-control,
.contact-form-card .form-select { background: #ffffff !important; border: 1px solid rgba(228,63,134,0.14) !important; color: #2d1a24 !important; border-radius: 12px !important; font-size: 0.95rem !important; font-weight: 500 !important; font-family: var(--font-primary) !important; }
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus { border-color: #e43f86 !important; box-shadow: 0 0 0 3px rgba(228,63,134,0.12) !important; background: #fff !important; }
.contact-form-card .form-control::placeholder { color: rgba(139,26,74,0.38) !important; }
.contact-info-card { background: rgba(255,255,255,0.94) !important; border: 1px solid rgba(228,63,134,0.14) !important; border-radius: 18px !important; padding: 1.25rem 1.5rem !important; margin-bottom: 1rem !important; box-shadow: 0 8px 28px rgba(61,10,40,0.08) !important; display: flex !important; align-items: center !important; gap: 1rem !important; color: #2d1a24 !important; transition: transform 0.25s ease; }
.contact-info-card:hover { transform: translateY(-3px); }
.contact-info-card .eyebrow { color: #9a7085 !important; }

/* ── 3D widgets ── */
.h3d-widget { background: rgba(255,255,255,0.90) !important; border: 1px solid rgba(228,63,134,0.18) !important; box-shadow: 0 12px 36px rgba(61,10,40,0.14) !important; }
.h3d-widget-icon { background: linear-gradient(135deg, #15a39a, #0d6d67) !important; color: #fff !important; }
.h3d-widget-text strong { color: #2d1a24 !important; }
.h3d-widget-text span   { color: #9a7085 !important; }
.h3d-badge { background: linear-gradient(135deg, #e43f86, #8b1a4a) !important; color: #fff !important; }
.h3d-card-inner { background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,229,241,0.64)) !important; border: 1px solid rgba(255,255,255,0.78) !important; border-radius: 30px !important; }
.h3d-ring-1, .h3d-ring-2, .h3d-ring-3 { border-color: rgba(228,63,134,0.18) !important; }

/* ── Buttons ── */
.btn-WingsFeed, .btn-ARPets, .btn-arpets { background: linear-gradient(135deg, #3d0a28, #e43f86) !important; color: #fff !important; border-color: rgba(255,255,255,0.22) !important; border-radius: 14px !important; box-shadow: 0 16px 36px rgba(228,63,134,0.28) !important; }
.btn-WingsFeed:hover, .btn-ARPets:hover, .btn-arpets:hover { transform: translateY(-2px); color: #fff !important; box-shadow: 0 22px 48px rgba(228,63,134,0.38) !important; }
.btn-outline-WingsFeed, .btn-outline-arpets, .btn-outline-AR Pets { background: rgba(255,255,255,0.75) !important; color: #8b1a4a !important; border: 1px solid rgba(228,63,134,0.28) !important; border-radius: 14px !important; }
.btn-outline-WingsFeed:hover, .btn-outline-arpets:hover, .btn-outline-AR Pets:hover { background: linear-gradient(135deg, #3d0a28, #e43f86) !important; color: #fff !important; border-color: transparent !important; transform: translateY(-2px); }

/* ── Footer ── */
.site-footer-v2 { background: linear-gradient(135deg, #3d0a28 0%, #8b1a4a 55%, #0d6d67 100%) !important; }

/* ── Cart toast ── */
.cart-toast-copy strong { color: #2d1a24 !important; }
.cart-toast-copy small  { color: #7c5467 !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero { background: linear-gradient(180deg, #3d0a28 0%, #8b1a4a 40%, #fff5f9 100%) !important; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .contact-form-card { padding: 1.5rem !important; }
    .gallery-card { border-radius: 18px !important; }
}

/* ============================================================
   MASTER FIX — TEXT VISIBILITY + BUTTONS + EYE BUTTON
   Loaded last. Wins all conflicts.
   ============================================================ */

/* 1. Body base */
body { color: #20111a; }

/* 2. Navbar brand text — was invisible due to -webkit-text-fill-color */
.brand-copy strong {
    color: #4c1433 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}
.brand-copy small { color: #8a5770 !important; }

/* 3. Mega menu label — was invisible */
.nav-mega-label {
    color: #d62b75 !important;
    background: none !important;
    -webkit-text-fill-color: unset !important;
    -webkit-background-clip: unset !important;
}

/* 4. Hero — white text on dark left side */
.hero .hero-title     { color: #ffffff !important; }
.hero .hero-title em  { color: #f3b64e !important; }
.hero .hero-subtitle  {
    color: #ebdbe3 !important; /* Premium warm rose-cream */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.hero .hero-subtitle strong {
    color: #ffcbdc !important; /* Soft blushing pink highlight */
    font-weight: 700 !important;
}
.hero .hero-eyebrow,
.hero .eyebrow {
    color: #f3b64e !important;
}
.hero .eyebrow::before,
.hero .eyebrow::after {
    background: #f3b64e !important;
}
.hero .hero-stat-number { color: #ffffff !important; }
.hero .hero-stat-label  { color: rgba(255,255,255,0.72) !important; }
.hero .post-meta-author { color: #ffffff !important; }
.hero .post-meta-date   { color: rgba(255, 255, 255, 0.72) !important; }

/* 5. Section titles on light bg */
.section-featured .section-title,
.section-story .section-title,
.section-gallery .section-title,
.section-banner .section-title,
.cinematic-video-section .section-title { color: #20111a !important; }

/* 6. Section titles on dark bg — keep white */
.section-showcase .section-title,
.section-featured-alt .section-title { color: #ffffff !important; }
.section-showcase .eyebrow { color: #f3b64e !important; }
.section-reviews .eyebrow  { color: #ff7a87 !important; }

/* 7. Story section — light bg */
.story-body      { color: #7c5467 !important; }
.story-signature { color: #d62b75 !important; }
.story-role      { color: #4c1433 !important; }
.story-float-card strong { color: #20111a !important; }
.story-float-card span   { color: #9a7085 !important; }

/* 8. Experience cards — dark text on light card */
.experience-card span   { color: #4c1433 !important; }
.experience-card strong { color: #20111a !important; }

/* 9. Product cards — always dark text on white card */
.product-info           { background: #fffdf8 !important; }
.product-name,
.product-name a         { color: #20111a !important; }
.product-name a:hover   { color: #d62b75 !important; }
.product-brand          { color: #15a39a !important; }
.product-price,
.product-pricing        { color: #4c1433 !important; font-weight: 700; }
.product-price-old      { color: #9a7085 !important; }
.product-scent,
.product-ingredients    { color: #7c5467 !important; }

/* 10. EYE / QUICK VIEW BUTTON FIX
   product-img-wrapper has overflow:hidden which clips the buttons.
   Move z-index high and ensure pointer-events work */
.product-card { position: relative; overflow: visible !important; }
.product-img-wrapper { overflow: hidden; }
.product-actions {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    z-index: 20 !important;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.product-card:hover .product-actions {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}
.product-action-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.95) !important;
    border: 1px solid rgba(76,20,51,0.12) !important;
    color: #4c1433 !important;
    font-size: 0.82rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(76,20,51,0.12) !important;
    transition: all 0.25s ease !important;
}
.product-action-btn:hover {
    background: #d62b75 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(214,43,117,0.32) !important;
    transform: scale(1.08) !important;
}

/* 11. Product overlay — keep z-index below actions */
.product-overlay { z-index: 5 !important; }

/* 12. BUTTONS — single consistent definition */
.btn-WingsFeed,
.btn-ARPets,
.btn-arpets {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.82rem 1.75rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #4c1433, #d62b75) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 16px 36px rgba(214,43,117,0.26) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease !important;
}
.btn-WingsFeed:hover,
.btn-ARPets:hover,
.btn-arpets:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 24px 48px rgba(214,43,117,0.38) !important;
    filter: brightness(1.08) !important;
    color: #fff !important;
}
.btn-WingsFeed:disabled,
.btn-ARPets:disabled,
.btn-arpets:disabled {
    opacity: 0.55 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-shop-add {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 0.95rem 1rem !important;
    border-radius: 14px !important;
    font-size: 0.92rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: box-shadow 0.2s ease !important;
}

.btn-shop-add:hover {
    transform: none !important;
    box-shadow: 0 18px 40px rgba(214,43,117,0.22) !important;
}

.product-card-bottom {
    padding: 0 1.25rem 1.25rem !important;
}

.product-card-bottom .btn-WingsFeed {
    padding: 0.95rem 1rem !important;
}

.shop-page .product-overlay {
    z-index: 5 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: none !important;
}

.shop-page .product-card:hover .product-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.btn-outline-WingsFeed,
.btn-outline-arpets,
.btn-outline-AR Pets {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.82rem 1.75rem !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1.5px solid rgba(214,43,117,0.45) !important;
    color: #d62b75 !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.btn-outline-WingsFeed:hover,
.btn-outline-arpets:hover,
.btn-outline-AR Pets:hover {
    background: linear-gradient(135deg, #4c1433, #d62b75) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 44px rgba(214,43,117,0.32) !important;
}

/* 13. Navbar buttons */
.btn-sm-nav {
    min-height: 42px !important;
    padding: 0.7rem 1.1rem !important;
    border-radius: 12px !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

/* 14. Contact page inputs */
.contact-page .form-control,
.contact-page .form-select,
.contact-form-card .form-control,
.contact-form-card .form-select {
    background: #fff !important;
    border: 1px solid rgba(76,20,51,0.14) !important;
    color: #20111a !important;
    border-radius: 10px !important;
}
.contact-page .form-control::placeholder,
.contact-form-card .form-control::placeholder { color: rgba(76,20,51,0.38) !important; }
.contact-form-card h2 { color: #20111a !important; }
.contact-form-card p  { color: #6f4458 !important; }

/* 15. Product page inputs */
.premium-product-page .form-control,
.premium-product-page .form-select {
    background: #fff !important;
    border: 1px solid rgba(76,20,51,0.14) !important;
    color: #20111a !important;
}
.premium-product-page .form-control::placeholder { color: rgba(76,20,51,0.38) !important; }

/* 16. Cart / checkout / account inputs */
.cart-page .form-control,
.checkout-page .form-control,
.account-page .form-control,
.orders-page .form-control,
.cart-page .form-select,
.checkout-page .form-select,
.account-page .form-select {
    background: #fff !important;
    border: 1px solid rgba(76,20,51,0.14) !important;
    color: #20111a !important;
}

/* 16A. Global text visibility and font improvements */
body,
input,
button,
textarea,
select {
    color: var(--ar-ink) !important;
    font-family: var(--font-primary) !important;
}

body {
    background: var(--ar-cream) !important;
    color: var(--ar-ink) !important;
}

a {
    color: var(--theme-primary) !important;
    text-decoration: none !important;
}
a:hover,
a:focus {
    color: var(--theme-secondary) !important;
    text-decoration: underline !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ar-ink) !important;
    font-family: var(--font-display) !important;
}

.section-title,
.display-heading,
.hero-title-large {
    color: var(--ar-ink) !important;
}

p,
li,
dt,
dd,
blockquote,
.page-description,
.section-header p,
.contact-form-card p,
.review-card .review-body,
.product-ingredients,
.text-theme {
    color: rgba(32,17,26,0.92) !important;
}

.product-name,
.product-price,
.contact-form-card .form-label,
.section-header,
.section-header strong,
.review-card .review-title {
    color: var(--ar-ink) !important;
}

.product-ingredients {
    color: #5d425f !important;
}

.contact-form-card .form-control::placeholder,
.contact-page .form-control::placeholder,
.checkout-page .form-control::placeholder,
.account-page .form-control::placeholder,
.cart-page .form-control::placeholder {
    color: rgba(32,17,26,0.38) !important;
}

.section-header {
    background: rgba(255,255,255,0.78) !important;
}
.section-header p {
    color: #5e455c !important;
}
.review-card .review-author span {
    color: #7a5d70 !important;
}

/* 17. Footer */
.site-footer-v2,
.site-footer {
    background: linear-gradient(135deg, #20111a 0%, #4c1433 58%, #0d6d67 100%) !important;
}

/* 18. Responsive */
@media (max-width: 991px) {
    .hero {
        background: linear-gradient(180deg, #2d0a24 0%, #4c1433 60%, #68153e 100%) !important;
    }
}
@media (max-width: 575px) {
    .btn-WingsFeed,
    .btn-ARPets,
    .btn-outline-WingsFeed,
    .btn-outline-arpets { width: 100% !important; justify-content: center !important; }
    .product-actions { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
}

/* ========================================================================
   44. PRODUCTION-LEVEL RESPONSIVENESS ENHANCEMENTS
   ======================================================================== */

/* Navbar Brand & Actions Scaling */
@media (max-width: 480px) {
    .brand-copy small {
        display: none !important;
    }
    .navbar-logo-img {
        height: 38px !important;
    }
    .nav-search-toggle, .nav-cart-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.8rem !important;
    }
    .navbar-toggler {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }
    .navbar-toggler span {
        width: 18px !important;
    }
    .hero-stat {
        padding: 0.5rem !important;
    }
}

/* Navigation Collapse Action Stacking */
@media (max-width: 991px) {
    .nav-actions {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0.75rem !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(76, 20, 51, 0.08) !important;
    }
    .nav-actions .btn-sm-nav {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.75rem 1.2rem !important;
    }
}

/* Hero section rings and dots cleanup on mobile */
@media (max-width: 767px) {
    .h3d-ring, .h3d-dot {
        display: none !important;
    }
    .hero-3d-scene {
        margin-top: 2rem !important;
    }
}

/* Shop Toolbar Scrollable Tabs */
@media (max-width: 767px) {
    .shop-filter-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 0.5rem !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .shop-filter-tabs::-webkit-scrollbar {
        display: none !important;
    }
    .filter-tab {
        flex-shrink: 0 !important;
    }
}

/* Stacked Cart Items on Mobile */
@media (max-width: 575px) {
    .cart-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.85rem !important;
        position: relative !important;
        padding: 1rem !important;
        padding-right: 50px !important;
        border: 1px solid rgba(76, 20, 51, 0.07) !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.5) !important;
    }
    .cart-item-info {
        width: 100% !important;
    }
    .cart-item > div:nth-child(3) {
        width: auto !important;
        margin-top: 0.25rem !important;
    }
    .cart-item > div:nth-child(5) {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
    }
}

/* ========================================================================
   45. FOOTER VISIBILITY OVERRIDES
   ======================================================================== */
.site-footer-v2, 
.site-footer-v2 p, 
.site-footer-v2 li,
.site-footer-v2 .sfv2-tagline,
.site-footer-v2 .sfv2-nl-desc,
.site-footer-v2 .sfv2-bottom p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer-v2 .sfv2-heading {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.16) !important;
}

.site-footer-v2 a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
}

.site-footer-v2 a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.site-footer-v2 .sfv2-contact a {
    color: rgba(255, 255, 255, 0.94) !important;
}

.site-footer-v2 .sfv2-contact a:hover {
    color: #ffffff !important;
}

.site-footer-v2 .sfv2-links a {
    color: rgba(255, 255, 255, 0.88) !important;
}

.site-footer-v2 .sfv2-links a:hover {
    color: #ffffff !important;
}

/* Footer form input field and button visibility fixes */
.sfv2-nl-form {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.sfv2-nl-form input {
    color: #ffffff !important;
    background: transparent !important;
}

.sfv2-nl-form input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.sfv2-nl-form button {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--theme-secondary), var(--theme-primary)) !important;
}

.sfv2-nl-form button i {
    color: #ffffff !important;
}

.site-footer-v2 .sfv2-social {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.site-footer-v2 .sfv2-social:hover {
    color: #ffffff !important;
}

.site-footer-v2 .sfv2-stat strong {
    color: #ffffff !important;
}

.site-footer-v2 .sfv2-stat span {
    color: rgba(255, 255, 255, 0.55) !important;
}

.site-footer-v2 .sfv2-btn-primary {
    background: #ffffff !important;
    color: var(--theme-secondary) !important;
}

.site-footer-v2 .sfv2-btn-primary:hover {
    background: var(--theme-primary) !important;
    color: #ffffff !important;
}

.site-footer-v2 .sfv2-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    background: transparent !important;
}

.site-footer-v2 .sfv2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Hero stats visibility — dark text on solid light cards */
.hero .hero-stats {
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(76, 20, 51, 0.12) !important;
    box-shadow: 0 12px 32px rgba(76, 20, 51, 0.10) !important;
    backdrop-filter: blur(10px);
}

.hero .hero-stat {
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(76, 20, 51, 0.08) !important;
}

.hero .hero-stat-number {
    color: #4c1433 !important;
    -webkit-text-fill-color: #4c1433 !important;
}

.hero .hero-stat-label {
    color: #6b5156 !important;
}

/* ========================================================================
   ADDITIONAL HOMEPAGE STYLING (FRONT-END ONLY FIXES)
   ======================================================================== */

/* Gallery Component Height & Empty State overrides */
.gallery-card-large {
    height: 520px;
}
.gallery-card-small {
    height: 248px;
}
.gallery-empty-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: rgba(214, 43, 117, 0.05);
    border: 2px dashed rgba(214, 43, 117, 0.2);
    border-radius: 24px;
    color: #4c1433;
    text-align: center;
}
.gallery-empty-icon {
    font-size: 3rem;
    color: #d62b75;
    margin-bottom: 1rem;
}
.gallery-empty-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Blog Cards (Grid on Homepage) */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.blog-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}
.blog-card-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4c1433, #d62b75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.blog-card-media-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}
.badge-topic {
    background: #d62b75;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-card-meta {
    padding: 1.5rem;
}
.blog-card-meta-top {
    font-size: 0.8rem;
    color: #d62b75;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}
.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #4c1433;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6d5167;
}

/* Dark variant for Blog section */
.section-blog-dark .blog-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}
.section-blog-dark .blog-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}
.section-blog-dark .blog-card-title {
    color: #fff !important;
}
.section-blog-dark .blog-card-excerpt {
    color: rgba(255, 255, 255, 0.6) !important;
}
.section-blog-dark .blog-card-meta-top {
    color: #ff7a87 !important;
}

/* Nature Video Section and Frame */
.nature-video-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(214, 43, 117, 0.15);
}
.nature-video-frame {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.nature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 5, 9, 0.9) 0%, rgba(13, 5, 9, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}
.nature-video-copy {
    width: 100%;
}
.nature-video-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.25rem 2rem;
    border-radius: 20px;
    color: #fff;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.nature-video-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d62b75;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(214, 43, 117, 0.4);
}

/* Micro Utilities & Helper Classes */
.hero-icon {
    color: #d62b75;
    margin-right: 0.5rem;
}
.h3d-badge-text {
    display: flex;
    flex-direction: column;
}
.product-empty-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(214, 43, 117, 0.05);
    color: #d62b75;
    font-size: 2.5rem;
}
.section-copy {
    font-size: 1.05rem;
    line-height: 1.75;
}
.h3d-widget-inline {
    position: static !important;
    display: inline-flex !important;
    transform: none !important;
    box-shadow: 0 8px 24px rgba(214, 43, 117, 0.08) !important;
}
.related-swiper {
    padding: 2rem 0;
}
.related-prev, .related-next {
    color: #d62b75;
    transition: all 0.3s ease;
}
.related-prev:hover, .related-next:hover {
    color: #4c1433;
}




/* ============================================================
   PREMIUM LOADING SCREEN
   ============================================================ */
#ar-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #0d0014 0%, #1a0030 40%, #2d0050 70%, #0d0014 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#ar-loader.ar-loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Ambient blobs */
#ar-loader::before,
#ar-loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
#ar-loader::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,45,122,0.25), transparent 70%);
    top: -100px; left: -100px;
    animation: loaderBlobDrift 8s ease-in-out infinite;
}
#ar-loader::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.20), transparent 70%);
    bottom: -80px; right: -80px;
    animation: loaderBlobDrift 10s ease-in-out infinite reverse;
}

@keyframes loaderBlobDrift {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(30px,-30px) scale(1.1); }
}

/* Logo */
.ar-loader-logo {
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255,45,122,0.35), 0 0 120px rgba(139,92,246,0.20);
    animation: loaderLogoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}
.ar-loader-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(255,45,122,0.6));
}

@keyframes loaderLogoFloat {
    0%,100% { transform: translateY(0) scale(1); box-shadow: 0 0 60px rgba(255,45,122,0.35), 0 0 120px rgba(139,92,246,0.20); }
    50%      { transform: translateY(-12px) scale(1.04); box-shadow: 0 0 80px rgba(255,45,122,0.55), 0 0 160px rgba(139,92,246,0.30); }
}

/* Brand name */
.ar-loader-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 2;
    animation: loaderFadeUp 0.8s ease 0.2s both;
}
.ar-loader-brand span {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tagline */
.ar-loader-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    position: relative;
    z-index: 2;
    animation: loaderFadeUp 0.8s ease 0.4s both;
}

@keyframes loaderFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Spinner ring */
.ar-loader-ring {
    position: relative;
    width: 64px;
    height: 64px;
    z-index: 2;
    animation: loaderFadeUp 0.8s ease 0.6s both;
}
.ar-loader-ring svg {
    width: 64px;
    height: 64px;
    animation: loaderRingSpin 1.8s linear infinite;
}
.ar-loader-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 3;
}
.ar-loader-ring-fill {
    fill: none;
    stroke: url(#loaderGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 30;
}
.ar-loader-ring-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.70);
    font-size: 1.1rem;
}

@keyframes loaderRingSpin {
    to { transform: rotate(360deg); }
}

/* Particles */
.ar-loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ar-loader-particle {
    position: absolute;
    border-radius: 50%;
    animation: loaderParticleFloat linear infinite;
    opacity: 0;
}
.ar-loader-particle:nth-child(1)  { width:4px;  height:4px;  left:15%; background:#ff2d7a; animation-duration:6s;  animation-delay:0s; }
.ar-loader-particle:nth-child(2)  { width:3px;  height:3px;  left:30%; background:#8b5cf6; animation-duration:8s;  animation-delay:1s; }
.ar-loader-particle:nth-child(3)  { width:5px;  height:5px;  left:50%; background:#ff2d7a; animation-duration:7s;  animation-delay:2s; }
.ar-loader-particle:nth-child(4)  { width:3px;  height:3px;  left:70%; background:#8b5cf6; animation-duration:9s;  animation-delay:0.5s; }
.ar-loader-particle:nth-child(5)  { width:4px;  height:4px;  left:85%; background:#ff2d7a; animation-duration:6.5s; animation-delay:3s; }

@keyframes loaderParticleFloat {
    0%   { transform: translateY(100vh); opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-10vh); opacity: 0; }
}

/* ============================================================
   PREMIUM NAVBAR REDESIGN
   ============================================================ */

#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.4s ease;
}

#mainNav.scrolled {
    padding: 0.5rem 0;
}

/* Glass shell */
#mainNav .nav-shell {
    background: rgba(13, 0, 20, 0.55) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 45, 122, 0.18) !important;
    border-radius: 20px !important;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.28),
        0 0 0 1px rgba(139,92,246,0.10) inset !important;
    padding: 0.6rem 1rem !important;
    transition: all 0.4s ease !important;
}

#mainNav.scrolled .nav-shell {
    background: rgba(13, 0, 20, 0.82) !important;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.40),
        0 0 0 1px rgba(255,45,122,0.14) inset !important;
}

/* Brand */
.brand-mark {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    background: linear-gradient(145deg, rgba(255,45,122,0.18), rgba(139,92,246,0.12)) !important;
    border: 1px solid rgba(255,45,122,0.28) !important;
    box-shadow: 0 0 20px rgba(255,45,122,0.20) !important;
}

.brand-copy strong {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
}

.brand-copy small {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.55rem !important;
    letter-spacing: 0.18em !important;
}

/* Nav links container */
#mainNav .navbar-nav {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 14px !important;
    padding: 0.35rem 0.5rem !important;
    gap: 0.1rem !important;
}

/* Nav links */
#mainNav .navbar-nav .nav-link {
    color: rgba(255,255,255,0.72) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    padding: 0.55rem 0.9rem !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
    background: transparent !important;
    box-shadow: none !important;
}

#mainNav .navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255,45,122,0.14) !important;
    box-shadow: none !important;
    transform: none !important;
}

#mainNav .navbar-nav .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(255,45,122,0.28), rgba(139,92,246,0.22)) !important;
    box-shadow: 0 0 16px rgba(255,45,122,0.18) !important;
}

/* Search toggle */
.nav-search-toggle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    color: rgba(255,255,255,0.70) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
}

.nav-search-toggle:hover {
    background: rgba(255,45,122,0.18) !important;
    border-color: rgba(255,45,122,0.35) !important;
    color: #fff !important;
    box-shadow: 0 0 16px rgba(255,45,122,0.22) !important;
}

/* Cart button */
.nav-cart-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(255,45,122,0.35) !important;
    transition: all 0.25s ease !important;
}

.nav-cart-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(255,45,122,0.50) !important;
}

/* Cart badge */
.cart-count {
    background: #fff !important;
    color: #ff2d7a !important;
    font-weight: 900 !important;
    font-size: 0.58rem !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 999px !important;
    top: -5px !important;
    right: -5px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25) !important;
}

/* Nav action buttons */
.btn-sm-nav {
    height: 40px !important;
    padding: 0 1rem !important;
    border-radius: 12px !important;
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    transition: all 0.25s ease !important;
}

.btn-WingsFeed.btn-sm-nav,
.btn-BirdSella.btn-sm-nav {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(255,45,122,0.30) !important;
}

.btn-WingsFeed.btn-sm-nav:hover,
.btn-BirdSella.btn-sm-nav:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 26px rgba(255,45,122,0.45) !important;
    filter: brightness(1.08) !important;
}

.btn-outline-WingsFeed.btn-sm-nav {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.80) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
}

.btn-outline-WingsFeed.btn-sm-nav:hover {
    background: rgba(255,45,122,0.16) !important;
    border-color: rgba(255,45,122,0.35) !important;
    color: #fff !important;
}

.btn-logout-outline {
    color: rgba(255,100,100,0.80) !important;
    border-color: rgba(255,100,100,0.20) !important;
}

/* Mobile toggler */
.navbar-toggler {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 0 !important;
    transition: all 0.25s ease !important;
}

.navbar-toggler:hover {
    background: rgba(255,45,122,0.14) !important;
    border-color: rgba(255,45,122,0.30) !important;
}

.navbar-toggler span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.80) !important;
    transition: all 0.3s ease !important;
}

/* Mobile collapse */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        margin-top: 0.75rem !important;
        padding: 1rem !important;
        border-radius: 16px !important;
        background: rgba(13,0,20,0.92) !important;
        border: 1px solid rgba(255,45,122,0.16) !important;
        backdrop-filter: blur(20px) !important;
    }

    #mainNav .navbar-nav {
        border-radius: 12px !important;
        background: transparent !important;
        border: none !important;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 0.7rem 1rem !important;
        border-radius: 10px !important;
    }

    .nav-actions {
        padding-top: 0.75rem !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
        flex-wrap: wrap !important;
    }
}

/* Search overlay */
.nav-search-overlay {
    background: rgba(13,0,20,0.94) !important;
    backdrop-filter: blur(28px) !important;
}

.nav-search-form {
    border: 1px solid rgba(255,45,122,0.30) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.06) !important;
    overflow: hidden !important;
}

.nav-search-form:focus-within {
    border-color: rgba(255,45,122,0.60) !important;
    box-shadow: 0 0 0 4px rgba(255,45,122,0.12) !important;
}

.nav-search-form input {
    color: #fff !important;
}

.nav-search-form button {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
}

.nav-search-tags a:hover {
    background: #ff2d7a !important;
    border-color: #ff2d7a !important;
    color: #fff !important;
}

/* Mega menu */
.nav-mega-panel {
    background: rgba(13,0,20,0.96) !important;
    border: 1px solid rgba(255,45,122,0.18) !important;
    border-radius: 20px !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.50) !important;
    backdrop-filter: blur(24px) !important;
}

.nav-mega-col a {
    color: rgba(255,255,255,0.70) !important;
    border-radius: 10px !important;
}

.nav-mega-col a:hover {
    background: rgba(255,45,122,0.12) !important;
    color: #fff !important;
}

.nav-mega-col a i {
    background: rgba(255,45,122,0.14) !important;
    color: #ff2d7a !important;
}

.nav-mega-col a:hover i {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    color: #fff !important;
}

.nav-mega-card {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    border-radius: 16px !important;
}

/* ============================================================
   PREMIUM BUTTON SYSTEM
   ============================================================ */

/* Primary gradient button */
.btn-WingsFeed,
.btn-BirdSella,
.btn-saintedora,
.btn-ARPets {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.82rem 1.8rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #ff2d7a 0%, #8b5cf6 100%) !important;
    border: none !important;
    color: #fff !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(255,45,122,0.35) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease !important;
}

/* Ripple layer */
.btn-WingsFeed::before,
.btn-BirdSella::before,
.btn-saintedora::before,
.btn-ARPets::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, #ff6ba8 0%, #a78bfa 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.25s ease !important;
    border-radius: inherit !important;
}

.btn-WingsFeed:hover::before,
.btn-BirdSella:hover::before,
.btn-saintedora:hover::before,
.btn-ARPets:hover::before {
    opacity: 1 !important;
}

.btn-WingsFeed:hover,
.btn-BirdSella:hover,
.btn-saintedora:hover,
.btn-ARPets:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 36px rgba(255,45,122,0.50) !important;
    color: #fff !important;
    filter: none !important;
}

.btn-WingsFeed span,
.btn-BirdSella span,
.btn-saintedora span,
.btn-ARPets span,
.btn-WingsFeed i,
.btn-BirdSella i,
.btn-saintedora i,
.btn-ARPets i {
    position: relative !important;
    z-index: 1 !important;
}

.btn-WingsFeed:disabled,
.btn-BirdSella:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Outline button */
.btn-outline-WingsFeed,
.btn-outline-BirdSella,
.btn-outline-saintedora {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.80rem 1.8rem !important;
    border-radius: 14px !important;
    background: transparent !important;
    border: 1.5px solid rgba(255,45,122,0.50) !important;
    color: #ff2d7a !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 0 0 rgba(255,45,122,0) !important;
}

.btn-outline-WingsFeed:hover,
.btn-outline-BirdSella:hover,
.btn-outline-saintedora:hover {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(255,45,122,0.40) !important;
}

/* Ghost button (dark bg) */
.btn-ghost-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.80rem 1.8rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-ghost-premium:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,45,122,0.35);
    color: #fff;
    transform: translateY(-2px);
}

/* Small button variant */
.btn-sm-premium {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.70rem !important;
    border-radius: 10px !important;
}

/* Icon button */
.btn-icon-premium {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-icon-premium:hover {
    background: rgba(255,45,122,0.18);
    border-color: rgba(255,45,122,0.35);
    color: #fff;
    box-shadow: 0 0 16px rgba(255,45,122,0.22);
}

/* Admin buttons */
.btn-admin {
    border-radius: 10px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    transition: all 0.22s ease !important;
}

.btn-admin-gold {
    border-color: rgba(255,45,122,0.35) !important;
    color: #ff2d7a !important;
}

.btn-admin-gold:hover {
    background: rgba(255,45,122,0.10) !important;
    box-shadow: 0 0 12px rgba(255,45,122,0.18) !important;
}

/* sfv2 footer buttons */
.sfv2-btn-primary {
    background: #fff !important;
    color: #ff2d7a !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    transition: all 0.25s ease !important;
}

.sfv2-btn-primary:hover {
    background: linear-gradient(135deg, #ff2d7a, #8b5cf6) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 24px rgba(255,45,122,0.35) !important;
}

.sfv2-btn-ghost {
    border-color: rgba(255,255,255,0.25) !important;
    border-radius: 999px !important;
    transition: all 0.25s ease !important;
}

.sfv2-btn-ghost:hover {
    background: rgba(255,255,255,0.12) !important;
    color: #fff !important;
}

/* Responsive full-width on mobile */
@media (max-width: 575px) {
    .hero-actions .btn-WingsFeed,
    .hero-actions .btn-BirdSella,
    .hero-actions .btn-outline-WingsFeed,
    .hero-actions .btn-outline-BirdSella {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ── Navbar flush to top ── */
#mainNav {
    top: 0 !important;
    padding: 0.6rem 0 !important;
}
#mainNav.scrolled {
    padding: 0.4rem 0 !important;
}
#mainNav .nav-shell {
    border-radius: 0 0 20px 20px !important;
    border-top: none !important;
}

/* ── NAVBAR FLUSH TO TOP — COMPLETE FIX ── */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}
body {
    top: 0 !important;
}
#mainNav {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
}
#mainNav .container {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
#mainNav .nav-shell {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: none !important;
    margin-top: 0 !important;
}

/* ── Hide hamburger/X toggler on desktop ── */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES — ALL DEVICES
   320px / 375px / 425px / 768px / 992px / 1200px / 1440px
   ============================================================ */

/* Global overflow fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto;
}

/* ── 1440px+ ── */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}

/* ── 1200px ── */
@media (max-width: 1199px) {
    .hero-3d-scene { width: 360px; height: 420px; }
    .intelligence-grid { grid-template-columns: repeat(2, 1fr); }
    .sfv2-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .sfv2-col-brand { grid-column: 1 / -1; }
}

/* ── 992px (tablet landscape) ── */
@media (max-width: 991px) {
    /* Navbar */
    #mainNav .nav-shell { border-radius: 0 0 16px 16px !important; }

    /* Hero */
    .hero { padding-top: 7rem !important; min-height: auto !important; }
    .hero-3d-scene { width: 300px; height: 360px; margin: 2rem auto 0; }
    .h3d-card-inner { width: 200px; height: 240px; }
    .hero-stats { flex-wrap: wrap; gap: 0.75rem; }
    .hero-stat { flex: 1 1 calc(50% - 0.75rem); min-width: 120px; }

    /* Sections */
    .experience-grid { grid-template-columns: 1fr; gap: 1rem; }
    .showcase-shell { grid-template-columns: 1fr !important; }
    .intelligence-grid { grid-template-columns: repeat(2, 1fr); }

    /* Cart */
    .cart-table-header { display: none !important; }
    .cart-item { grid-template-columns: 1fr !important; gap: 0.75rem; }

    /* Footer */
    .sfv2-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .sfv2-col-brand { grid-column: 1 / -1; }
    .sfv2-cta-bar { flex-direction: column; align-items: flex-start; }

    /* Product page */
    .gallery-stack { grid-template-columns: 1fr; }
    .thumbnail-track { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
    .thumb-item { flex-shrink: 0; }

    /* Checkout sticky sidebar */
    .order-summary[style*="sticky"] { position: relative !important; top: auto !important; }
}

/* ── 768px (tablet portrait) ── */
@media (max-width: 767px) {
    /* Typography scale down */
    .hero-title { font-size: clamp(1.8rem, 8vw, 3rem) !important; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
    .banner-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }

    /* Hero */
    .hero { padding-top: 6rem !important; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a, .hero-actions button { width: 100% !important; justify-content: center !important; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .hero-stat { padding: 0.75rem 0.5rem; }
    .hero-stat-number { font-size: 1.4rem; }
    .h3d-widget, .h3d-badge { display: none !important; }

    /* Cards */
    .product-card { border-radius: 16px !important; }
    .experience-card { padding: 1.25rem !important; }
    .intelligence-card { min-height: auto; }

    /* Sections spacing */
    .section-featured,
    .section-story,
    .section-showcase,
    .section-reviews,
    .section-gallery,
    .section-banner { padding: 3rem 0 !important; }

    /* Footer */
    .sfv2-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .sfv2-bottom { flex-direction: column; text-align: center; }
    .sfv2-trust { justify-content: center; flex-wrap: wrap; }
    .sfv2-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-proof-grid { grid-template-columns: 1fr 1fr; }

    /* Cart page */
    .cart-page { padding: 6rem 0 3rem !important; }
    .cart-item-info { flex-wrap: wrap; }
    .qty-selector { margin: 0.5rem 0; }

    /* Checkout */
    .checkout-page { padding: 6rem 0 3rem !important; }

    /* Contact */
    .contact-form-card { padding: 1.5rem !important; }

    /* Blog */
    .banner-img-wrap img { height: 260px !important; }

    /* Video */
    .v3d-video { height: 240px !important; }
    .cinematic-video-section { padding: 3rem 0 !important; }

    /* Logout modal */
    .lm-card { padding: 1.75rem 1.25rem; }
    .lm-actions { flex-direction: column; }
    .lm-btn-cancel, .lm-btn-confirm { width: 100%; justify-content: center; }
}

/* ── 575px (large mobile) ── */
@media (max-width: 575px) {
    /* Container padding */
    .container { padding-left: 1rem !important; padding-right: 1rem !important; }

    /* Navbar */
    #mainNav .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
    .brand-copy { display: none; }
    .nav-brand-system { min-width: 0; }

    /* Hero */
    .hero { padding-top: 5.5rem !important; }
    .hero-title { font-size: clamp(1.6rem, 9vw, 2.4rem) !important; line-height: 1.15 !important; }
    .hero-subtitle { font-size: 0.9rem !important; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-category-dock a { flex: 1 1 calc(50% - 0.5rem); justify-content: center; }
    .hero-3d-scene { width: 260px; height: 320px; }
    .h3d-card-inner { width: 160px; height: 200px; }

    /* Buttons full width in hero */
    .btn-WingsFeed,
    .btn-BirdSella,
    .btn-outline-WingsFeed,
    .btn-outline-BirdSella { padding: 0.75rem 1.25rem !important; font-size: 0.72rem !important; }

    /* Product grid */
    .reviews-grid { grid-template-columns: 1fr !important; }
    .intelligence-grid { grid-template-columns: 1fr !important; }
    .footer-proof-grid { grid-template-columns: 1fr 1fr !important; }

    /* Section headers */
    .section-header { padding: 0.75rem !important; border-radius: 16px !important; }

    /* Cart */
    .cart-item-img { width: 60px !important; height: 70px !important; }
    .order-summary { padding: 1.25rem !important; }

    /* Checkout */
    .guide-calculator { grid-template-columns: 1fr !important; }
    .nutrition-grid { grid-template-columns: 1fr !important; }
    .pm-account-row { grid-template-columns: 1fr !important; }

    /* Footer */
    .sfv2-cta-btns { width: 100%; }
    .sfv2-btn-primary, .sfv2-btn-ghost { flex: 1; justify-content: center; }
    .sfv2-stats { grid-template-columns: repeat(3, 1fr); }

    /* Account / orders */
    .account-page { padding: 6rem 0 3rem !important; }
    .orders-page { padding: 6rem 0 3rem !important; }

    /* Chat window */
    .ar-chat-window {
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
        bottom: 80px !important;
    }

    /* WhatsApp */
    .whatsapp-float { width: 48px !important; height: 48px !important; font-size: 22px !important; }
}

/* ── 425px (mobile L) ── */
@media (max-width: 425px) {
    .hero-title { font-size: clamp(1.4rem, 10vw, 2rem) !important; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
    .hero-stat-number { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.58rem; }
    .product-card { border-radius: 14px !important; }
    .sfv2-stats { grid-template-columns: 1fr 1fr 1fr; }
    .lm-card { width: calc(100vw - 2rem) !important; }
}

/* ── 375px (mobile M) ── */
@media (max-width: 375px) {
    .hero-title { font-size: 1.5rem !important; }
    .hero-stats { grid-template-columns: 1fr; }
    .section-title { font-size: 1.3rem !important; }
    .btn-WingsFeed, .btn-BirdSella { padding: 0.7rem 1rem !important; }
    .nav-shell { padding: 0.4rem 0.6rem !important; }
}

/* ── 320px (mobile S) ── */
@media (max-width: 320px) {
    .hero-title { font-size: 1.3rem !important; }
    .container { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
    .brand-mark { width: 38px !important; height: 38px !important; }
    .nav-cart-btn { width: 36px !important; height: 36px !important; }
}

/* ============================================================
   RESPONSIVE — STEP 1: GLOBAL + 1440px + 1200px
   ============================================================ */

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100% !important;
}

@media (min-width: 1440px) {
    .container { max-width: 1320px; }
}

@media (max-width: 1199px) {
    .hero-3d-scene { width: 360px; height: 420px; }
    .intelligence-grid { grid-template-columns: repeat(2, 1fr); }
    .sfv2-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .sfv2-col-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — STEP 2: 992px TABLET
   ============================================================ */

@media (max-width: 991px) {
    /* Navbar */
    #mainNav .nav-shell {
        border-radius: 0 0 16px 16px !important;
    }

    /* Hero */
    .hero { padding-top: 7rem !important; min-height: auto !important; }
    .hero-3d-scene { width: 300px; height: 360px; margin: 2rem auto 0; }
    .h3d-card-inner { width: 200px; height: 240px; }
    .hero-stats { flex-wrap: wrap; gap: 0.75rem; }
    .hero-stat { flex: 1 1 calc(50% - 0.75rem); min-width: 120px; }

    /* Sections */
    .experience-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .showcase-shell { grid-template-columns: 1fr !important; }
    .intelligence-grid { grid-template-columns: repeat(2, 1fr); }

    /* Cart */
    .cart-table-header { display: none !important; }
    .cart-item { grid-template-columns: 1fr !important; gap: 0.75rem; }

    /* Footer */
    .sfv2-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .sfv2-col-brand { grid-column: 1 / -1; }
    .sfv2-cta-bar { flex-direction: column; align-items: flex-start; }

    /* Product page gallery */
    .gallery-stack { grid-template-columns: 1fr; }
    .thumbnail-track { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
    .thumb-item { flex-shrink: 0; }

    /* Checkout sticky sidebar */
    .order-summary[style*="sticky"] { position: relative !important; top: auto !important; }
}

/* ============================================================
   RESPONSIVE — STEP 3: 768px TABLET PORTRAIT
   ============================================================ */

@media (max-width: 767px) {
    /* Typography */
    .hero-title    { font-size: clamp(1.8rem, 8vw, 3rem) !important; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
    .banner-title  { font-size: clamp(1.4rem, 6vw, 2rem) !important; }

    /* Hero */
    .hero { padding-top: 6rem !important; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a,
    .hero-actions button { width: 100% !important; justify-content: center !important; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .hero-stat { padding: 0.75rem 0.5rem; }
    .hero-stat-number { font-size: 1.4rem; }
    .h3d-widget, .h3d-badge { display: none !important; }

    /* Cards */
    .product-card    { border-radius: 16px !important; }
    .experience-card { padding: 1.25rem !important; }
    .intelligence-card { min-height: auto; }

    /* Section spacing */
    .section-featured,
    .section-story,
    .section-showcase,
    .section-reviews,
    .section-gallery,
    .section-banner { padding: 3rem 0 !important; }

    /* Footer */
    .sfv2-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
    .sfv2-bottom    { flex-direction: column; text-align: center; }
    .sfv2-trust     { justify-content: center; flex-wrap: wrap; }
    .footer-proof-grid { grid-template-columns: 1fr 1fr; }

    /* Cart */
    .cart-page { padding: 6rem 0 3rem !important; }
    .cart-item-info { flex-wrap: wrap; }

    /* Checkout */
    .checkout-page { padding: 6rem 0 3rem !important; }

    /* Contact */
    .contact-form-card { padding: 1.5rem !important; }

    /* Media */
    .banner-img-wrap img { height: 260px !important; }
    .v3d-video { height: 240px !important; }
    .cinematic-video-section { padding: 3rem 0 !important; }

    /* Logout modal */
    .lm-card { padding: 1.75rem 1.25rem; }
    .lm-actions { flex-direction: column; }
    .lm-btn-cancel,
    .lm-btn-confirm { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — STEP 4: 575px MOBILE
   ============================================================ */

@media (max-width: 575px) {
    /* Container */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Navbar */
    #mainNav .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .brand-copy { display: none; }
    .nav-brand-system { min-width: 0; }

    /* Hero */
    .hero { padding-top: 5.5rem !important; }
    .hero-title {
        font-size: clamp(1.6rem, 9vw, 2.4rem) !important;
        line-height: 1.15 !important;
    }
    .hero-subtitle { font-size: 0.9rem !important; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-category-dock a {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }
    .hero-3d-scene { width: 260px; height: 320px; }
    .h3d-card-inner { width: 160px; height: 200px; }

    /* Buttons */
    .btn-WingsFeed,
    .btn-BirdSella,
    .btn-outline-WingsFeed,
    .btn-outline-BirdSella {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.72rem !important;
    }

    /* Grids */
    .reviews-grid       { grid-template-columns: 1fr !important; }
    .intelligence-grid  { grid-template-columns: 1fr !important; }
    .footer-proof-grid  { grid-template-columns: 1fr 1fr !important; }

    /* Section header */
    .section-header {
        padding: 0.75rem !important;
        border-radius: 16px !important;
    }

    /* Cart */
    .cart-item-img  { width: 60px !important; height: 70px !important; }
    .order-summary  { padding: 1.25rem !important; }

    /* Checkout */
    .guide-calculator   { grid-template-columns: 1fr !important; }
    .nutrition-grid     { grid-template-columns: 1fr !important; }
    .pm-account-row     { grid-template-columns: 1fr !important; }

    /* Footer */
    .sfv2-cta-btns { width: 100%; }
    .sfv2-btn-primary,
    .sfv2-btn-ghost { flex: 1; justify-content: center; }
    .sfv2-stats { grid-template-columns: repeat(3, 1fr); }

    /* Pages */
    .account-page { padding: 6rem 0 3rem !important; }
    .orders-page  { padding: 6rem 0 3rem !important; }
    .premium-product-page { padding: 6rem 0 3rem !important; }

    /* Chat window */
    .ar-chat-window {
        right: 8px !important;
        left: 8px !important;
        width: auto !important;
        bottom: 80px !important;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        font-size: 22px !important;
        bottom: 20px !important;
        left: 16px !important;
    }
}

/* ============================================================
   RESPONSIVE — STEP 5: 425px / 375px / 320px SMALL PHONES
   ============================================================ */

@media (max-width: 425px) {
    .hero-title { font-size: clamp(1.4rem, 10vw, 2rem) !important; }
    .hero-stats { grid-template-columns: 1fr 1fr; gap: 0.4rem; }
    .hero-stat-number { font-size: 1.2rem; }
    .hero-stat-label  { font-size: 0.58rem; }
    .product-card     { border-radius: 14px !important; }
    .sfv2-stats       { grid-template-columns: repeat(3, 1fr); }
    .lm-card          { width: calc(100vw - 2rem) !important; }
    .section-title    { font-size: 1.3rem !important; }
    .experience-card  { padding: 1rem !important; }
    .nav-quick-link   { display: none !important; }
}

@media (max-width: 375px) {
    .hero-title    { font-size: 1.5rem !important; }
    .hero-stats    { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 1.2rem !important; }
    .btn-WingsFeed,
    .btn-BirdSella { padding: 0.7rem 1rem !important; }
    .nav-shell     { padding: 0.4rem 0.6rem !important; }
    .brand-mark    { width: 40px !important; height: 40px !important; }
    .nav-cart-btn  { width: 38px !important; height: 38px !important; }
    .sfv2-cta-bar  { padding: 1rem !important; }
    .contact-form-card { padding: 1rem !important; }
}

@media (max-width: 320px) {
    .hero-title { font-size: 1.3rem !important; }
    .container  {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    .brand-mark   { width: 36px !important; height: 36px !important; }
    .nav-cart-btn { width: 34px !important; height: 34px !important; }
    .hero-stats   { grid-template-columns: 1fr; }
    .hero-stat    { text-align: center; }
    .btn-WingsFeed,
    .btn-BirdSella,
    .btn-outline-WingsFeed,
    .btn-outline-BirdSella {
        font-size: 0.68rem !important;
        padding: 0.65rem 0.9rem !important;
    }
    .sfv2-stats { grid-template-columns: 1fr 1fr; }
    .footer-proof-grid { grid-template-columns: 1fr; }
}
