/* ==========================================================================
   1. COLOR SPECIFICATION TOKENS & DESIGN SYSTEM (REASSIGNED FOR LIGHT MODE)
   ========================================================================== */
:root {
    --hex-jet-black: #FFFFFF;       /* Changed from dark to pure white */
    --hex-pure-white: #000000;      /* Changed from white to pure black text */
    --hex-glitter-gold: #D4A437;
    --hex-boutique-pink: #E85B9A;
    --hex-turquoise-aqua: #20D6D0;
    --hex-warm-cream: #FFFFFF;      /* Reassigned to clean white */
    --hex-leopard-brown: #8B5A2B;
}

/* Base resets for a fluid canvas layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: #FFFFFF;     /* Forced pure white background */
    color: #000000;                /* Forced pure black text */
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Overlay background mask when menu is active */
.menu-overlay-shroud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Softened to white transparent gradients */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(232, 91, 154, 0.15));
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay-shroud.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   2. ANNOUNCEMENT & HEADER BLOCK STYLING
   ========================================================================== */
.announcement-bar {
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;
    text-align: center;
    padding: 6px 20px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    transition: opacity 0.5s ease-in-out; /* Smooth fade */
}

.main-header {
    background-color: #FFFFFF;
    border-bottom: none; /* Removes the line entirely */
    padding: 20px 0 0 0;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 20px;
}

.header-socials a {
    color: var(--hex-pure-white);
    text-decoration: none;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.header-socials a:hover {
    color: var(--hex-boutique-pink);
}

.brand-logo-container {
    text-align: center;
    flex-grow: 1;
}

.main-logo-asset {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

/* Interactive Text-Logo Fallback Sparkle */
.logo-text .main-title {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 2.4rem;
    color: var(--hex-pure-white);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    animation: luxuryGlow 3s infinite ease-in-out; 
}

.logo-text .sub-title {
    font-size: 0.8rem;
    letter-spacing: 7px;
    color: var(--hex-boutique-pink);
    font-weight: bold;
    margin-top: 5px;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar-box {
    display: flex;
    background-color: #f5f5f5;      /* Light gray input background */
    border: 1px solid #dddddd;      /* Visible borders for white backgrounds */
    border-radius: 4px;
    overflow: hidden;
}

.search-bar-box input {
    background: transparent;
    border: none;
    padding: 8px 14px;
    color: #000000;                 /* Dark search input text */
    outline: none;
    font-size: 0.85rem;
}

.search-bar-box ::placeholder {
    color: #777777;
}

.search-bar-box button {
    background: transparent;
    border: none;
    color: var(--hex-glitter-gold);
    padding: 0 12px;
    cursor: pointer;
}

.util-link {
    color: var(--hex-pure-white);
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;                /* Legible white badge count */
    font-size: 0.65rem;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
}

/* ==========================================================================
   3. RESPONSIVE NAVIGATION ENGINE (Desktop Horizontal Layout)
   ========================================================================== */
.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 40px;
    background-color: #FFFFFF;      /* Changed from pure black to pure white */
    position: relative;
    z-index: 100;
}

.mobile-menu-toggle {
    display: none; 
    background: transparent;
    border: 1px solid var(--hex-boutique-pink);
    color: var(--hex-pure-white);
    padding: 10px 20px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu-toggle:hover {
    color: var(--hex-boutique-pink);
    border-color: var(--hex-boutique-pink);
}

.nav-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.nav-item, .nav-link-trigger {
    color: var(--hex-pure-white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.25s ease;
    cursor: pointer;
}

.nav-item.active {
    color: var(--hex-boutique-pink);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--hex-boutique-pink);
}

.nav-item:hover, .nav-link-trigger:hover {
    color: var(--hex-boutique-pink);
}

.sale-highlight {
    color: #000000;
}
.sale-highlight:hover {
    color: var(--hex-boutique-pink);
}

.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    font-size: 0.75rem;
    margin-left: 4px;
    color: var(--hex-glitter-gold); 
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-menu-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;      /* Clean crisp white background */
    border: 1px solid var(--hex-glitter-gold);
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1); /* Lighter shadow for white theme */
    padding: 10px 0;
    z-index: 105;
}

.dropdown-menu-content a {
    color: #000000;                /* Pure black links inside drop menus */
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu-content a:hover {
    background-color: #f9f9f9;
    color: var(--hex-boutique-pink);
}

/* Standard desktop hover settings */
@media (min-width: 901px) {
    .nav-item-dropdown:hover .dropdown-menu-content {
        display: block;
    }
}

/* ==========================================================================
   4. HERO BANNER AREA (Transitioned to Smooth Light Layout)
   ========================================================================== */
.hero-banner-area {
    position: relative;
    min-height: 540px;
    background-color: #FFFFFF;
    background-image: linear-gradient(-45deg, #FFFFFF, #fbfbfb, #f5f0eb, #FFFFFF);
    background-size: 400% 400%;
    animation: goldShimmer 15s ease infinite;
    display: flex;
    align-items: center;
    /* Updated from turquoise-aqua to boutique-pink */
    border-bottom: 3px solid var(--hex-boutique-pink);
    overflow: hidden;
}

.corner-flourish {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url('turquoise-corner-asset.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
}
.top-left { top: 15px; left: 15px; }
.top-right { top: 15px; right: 15px; transform: rotate(90deg); }
.bottom-left { bottom: 15px; left: 15px; transform: rotate(-90deg); }
.bottom-right { bottom: 15px; right: 15px; transform: rotate(180deg); }

.hero-layout-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    display: block; /* remove flex centering */
}

.hero-typography-block {
    max-width: 600px;
    z-index: 2;
}

.headline-top {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--hex-turquoise-aqua);
    line-height: 1.1;
}

.headline-separator {
    font-size: 1.1rem;
    color: var(--hex-glitter-gold);
    letter-spacing: 6px;
    font-weight: 700;
    margin: 8px 0;
}

.headline-script-graphic {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    color: var(--hex-boutique-pink);
    line-height: 1;
    margin-bottom: 20px;
}

.headline-tagline {
    font-size: 1.1rem;
    color: #000000;                 /* Swapped explicitly to black text */
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--hex-boutique-pink), #f98cb7, var(--hex-boutique-pink));
    background-size: 200% auto;
    color: #FFFFFF;                /* Keeping text light inside dark button */
    padding: 16px 42px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(232, 91, 154, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: goldShimmer 3s linear infinite;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    color: #FFFFFF;
    box-shadow: 0 4px 25px rgba(32, 214, 208, 0.5);
    background: linear-gradient(45deg, var(--hex-glitter-gold), var(--hex-turquoise-aqua));
}

.hero-illustration-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    width: 100vw !important;
    max-width: 100vw !important;   /* 🔴 this is the key fix */
    margin: 0 !important;
    padding: 0 !important;

    z-index: 2;
}
}
}

/* Trust Icon bar segment */
.trust-seals-row {
    background-color: #FFFFFF;      /* Shifted background to white */
    border-top: 1px solid #eeeeee;  /* Dark borders lightened */
    border-bottom: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 40px;
}

.seal-box {
    flex: 1;
    display: flex;
    justify-content: center;
    border-right: 1px solid #eeeeee;
}

.seal-box:last-child {
    border-right: none;
}

.seal-text {
    text-align: center;
}

.seal-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--hex-glitter-gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.seal-text p {
    font-size: 0.75rem;
    color: #000000;                 /* Transformed text color to black */
    opacity: 0.7;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}

/* ==========================================================================
   5. NEW ARRIVALS SHOWCASE (Clean Light Grid Layout)
   ========================================================================== */
.new-arrivals-showcase {
    background-color: #FFFFFF;      /* Switched warm cream to clean pure white */
    color: #000000;                /* Pure black text structure */
    padding: 70px 0; 
    overflow: hidden;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.showcase-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--hex-boutique-pink);
}

.light-text {
    color: #000000 !important;     /* Overrode dark utility class references to clean black */
}

/* Viewport wrapper that masks cards on desktop but unlocks swiping on mobile */
.marquee-window-viewport {
    overflow-x: auto;       /* Unlocks the horizontal touch swipe on mobile */
    overflow-y: hidden;     /* Keeps the top and bottom perfectly clean */
    width: 100%;
    position: relative;
    padding: 20px 0;
    
    /* FIX: Stops the mobile screen from shaking/pulling vertically when swiping sideways */
    touch-action: pan-x; 
}

/* Hides the desktop scrollbar track for the viewport container on mobile */
.marquee-window-viewport::-webkit-scrollbar {
    display: none;
}

/* 1. MOBILE DEFAULT STATE: Smooth, natural finger-swiping */
.marquee-track {
    display: flex;
    width: max-content;    /* Keeps cards in a single long horizontal line */
    gap: 25px;
    padding: 0 20px; 
    
    /* Enables horizontal scrolling and smooth momentum flicking on phones */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    
    /* Turns off the auto-scroll animation entirely for mobile devices */
    animation: none;
    
    /* FIX: Isolates touch gestures to horizontal tracking only */
    touch-action: pan-x; 
}

/* Keeps individual product cards locking into place cleanly when swiped */
.boutique-product-card {
    scroll-snap-align: start;
}

/* Hides the default scrollbar on mobile screens to keep it looking clean */
.marquee-track::-webkit-scrollbar {
    display: none;
}

/* 2. DESKTOP OVERRIDE: Reactivates the infinite marquee loop and masks edges */
@media (min-width: 901px) {
    .marquee-window-viewport {
        overflow: hidden;   /* Keeps the clean clipped edges on desktop */
        touch-action: auto;
    }

    .marquee-track {
        width: max-content;
        overflow-x: visible;
        padding: 0;
        animation: infiniteScrollLoop 25s linear infinite;
        transform: translate3d(0, 0, 0);
        will-change: transform;
        touch-action: auto;
    }

    /* Only pause the animation on desktops with an actual mouse pointer */
    @media (hover: hover) {
        .marquee-track:hover {
            animation-play-state: paused;
        }
    }
}

.boutique-product-card {
    background-color: #FFFFFF;      
    border: 1px solid #eef2f5;      /* Clean subtle modern outline border */
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft premium shadow definition */
    width: 280px !important; 
    flex-shrink: 0 !important; 
}

.product-image-container {
    background-color: #fcfcfc;
    height: 260px;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;                 /* Transformed dark gray header to explicit black */
    margin-bottom: 6px;
}

.product-item-price {
    font-weight: 700;
    font-size: 0.7rem;
    color: #000000;
    margin-bottom: 15px;
}

.add-to-cart-action {
    width: 100%;
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;                /* Retained light contrast texts inside color buttons */
    border: none;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-to-cart-action:hover {
    background-color: #000000;     /* Swapped from deep jet-black to pure structural black */
}

.global-button-wrapper {
    text-align: center;
    margin-top: 50px;
}

.standard-margin { margin-top: 0; margin-bottom: 40px; }

.boutique-solid-button {
    display: inline-block;
    padding: 14px 45px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.black-fill { background-color: #000000; color: #FFFFFF; }
.pink-fill { background-color: var(--hex-boutique-pink); color: #FFFFFF; }

/* ==========================================================================
   6. COLLECTIONS ROW MESH LAYER (Swapped Dark Radial Gradients to Bright White)
   ========================================================================== */
.collections-grid-block {
    background-color: #FFFFFF;
    background-image: radial-gradient(circle at 50% 50%, #fbf9f6 0%, #FFFFFF 100%); 
    padding: 70px 40px;
    border-top: 3px solid var(--hex-glitter-gold);
    border-bottom: 3px solid var(--hex-glitter-gold);
}

.roundel-flex-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.roundel-card {
    text-align: center;
}

.circle-frame-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 4px solid var(--hex-glitter-gold);
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(212,164,55,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-frame-wrapper:hover {
    transform: scale(1.08) rotate(3deg); 
    border-color: var(--hex-turquoise-aqua);
    box-shadow: 0 0 30px rgba(32, 214, 208, 0.5), inset 0 0 15px rgba(32, 214, 208, 0.2);
}

.roundel-card h5 {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #000000;                 /* Shifted white header names to active black text */
    text-shadow: none;              /* Cleared dark display drop shadow drops */
}

.text-decor-pink {
    color: var(--hex-boutique-pink);
    font-size: 1.2rem;
    margin: 0 10px;
}

/* ==========================================================================
   7. LITTLE FLAMINGEAUX KIDS SECTION STYLING
   ========================================================================== */
.kids-collection-section {
    background-color: #FFFFFF;      /* Clean uniform white container */
    padding-bottom: 70px;
    border-bottom: 3px solid var(--hex-turquoise-aqua);
}

.kids-promo-banner {
    background: linear-gradient(135deg, #e85b9a 0%, #ff8cb7 50%, #d4a437 100%);
    padding: 60px 20px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.kids-banner-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    color: #FFFFFF;                /* Kept crisp white banner headline overlay */
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 10px;
}

.kids-banner-text p {
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: #000000;                /* Black typography subhead indicator strings */
}

.kids-banner-text .sparkle-icon {
    font-size: 1.5rem;
    animation: glitterPulse 1.5s infinite ease-in-out;
    display: inline-block;
}

.kids-grid-spacing {
    max-width: 1200px !important;
    grid-template-columns: repeat(4, 1fr) !important;
}

.kids-bg {
    background-color: #fff0f5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

/* ==========================================================================
   8. MID-PAGE STATEMENT BLOCK & FOOTER ELEMENTS
   ========================================================================== */
.pink-sparkle-ribbon-banner {
    background: linear-gradient(45deg, var(--hex-boutique-pink), #ff7bb3, var(--hex-boutique-pink));
    padding: 55px 20px;
    text-align: center;
}

.ribbon-text-container h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    color: #FFFFFF;                /* High text density banner overrides */
    margin-bottom: 4px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}

.ribbon-text-container p {
    color: #FFFFFF;                /* Clean readable banner accent rules */
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.boutique-footer-wrapper {
    background-color: #FFFFFF;      /* Absolute structural white switch */
    padding: 70px 40px 30px 40px;
    border-top: 1px solid #eeeeee;
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widget-column .widget-title {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--hex-boutique-pink);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-widget-column .widget-desc {
    font-size: 0.85rem;
    color: #444444;                 /* Darkened gray text descriptor for readability on white background */
    margin-bottom: 25px;
}

.footer-signup-box {
    display: flex;
}

.footer-signup-box input {
    background-color: #f9f9f9;      /* Tinted light element base inputs */
    border: 1px solid #cccccc;      /* Clear grid tracking lines */
    padding: 14px;
    color: #000000;                 /* Input entry defaults to black */
    flex-grow: 1;
    outline: none;
    font-size: 0.85rem;
}

.footer-signup-box button {
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;
    border: none;
    padding: 0 24px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    letter-spacing: 1px;
}

.footer-vertical-menu a {
    display: block;
    color: #555555;                 /* Highly increased text depth elements */
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-vertical-menu a:hover {
    color: var(--hex-boutique-pink);
}

.footer-brand-logo-base {
    text-align: center;
    margin: 50px 0 30px 0;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

.footer-copyright-row {
    text-align: center;
    font-size: 0.75rem;
    color: #777777;
}

/* ==========================================================================
   9. PURE CSS KEYFRAMES
   ========================================================================== */
@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitterPulse {
    0%, 100% { opacity: 0.3; transform: scale(1) translateY(0); }
    50% { opacity: 0.9; transform: scale(1.2) translateY(-4px); }
}

@keyframes luxuryGlow {
    0%, 100% { text-shadow: 0 0 4px rgba(212,164,55,0.1), 0 0 10px rgba(212,164,55,0.05); }
    50% { text-shadow: 0 0 12px rgba(212,164,55,0.3), 0 0 20px rgba(232,91,154,0.2); }
}

@keyframes infiniteScrollLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-50% - 12.5px), 0, 0); 
    }
}

/* ==========================================================================
   10. BREAKPOINTS ENGINE & SIDE PUSH-OUT DRAWER SYSTEM
   ========================================================================== */
@media (max-width: 1100px) {
    .roundel-flex-row { gap: 25px; }
}

@media (max-width: 900px) {
    .header-top-row { flex-direction: column; text-align: center; }
    .header-socials, .search-bar-box { display: none; }
    .hero-layout-wrapper { flex-direction: column; text-align: center; padding: 40px; }
    .headline-script-graphic { font-size: 3.5rem; }
    .footer-layout-grid { grid-template-columns: 1fr; gap: 40px; }
    .center-links { text-align: center; }

    .main-navigation {
        justify-content: space-between;
        padding: 15px 30px;
    }
    .mobile-menu-toggle {
        display: block; 
    }

    /* THE PUSH OUT SLIDE TRAY DESIGN ARCHITECTURE */
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: 0; 
        width: 300px;
        height: 100vh;
        background-color: #FFFFFF;      /* Swapped navigation responsive slide back to pure white */
        border-left: 2px solid var(--hex-glitter-gold);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 40px 0;
        z-index: 100001 !important; 
        transform: translateX(100%); 
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex; 
    }

    .nav-links-wrapper.mobile-show {
        transform: translateX(0) !important;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.08);
    }

    .nav-item, .nav-link-trigger {
        width: 100%;
        padding: 16px 30px;
        border-bottom: 1px solid #eeeeee;
        font-size: 0.9rem;
        text-align: left;
        display: block !important;
    }
    
    .nav-item.active::after {
        bottom: inherit;
        left: 0;
        width: 4px;
        height: 100%;
        top: 0;
    }

    .nav-item-dropdown { width: 100%; }
    
    .dropdown-menu-content {
        position: static;
        transform: none;
        width: 100%;
        background-color: #fafafa;
        border: none;
        border-left: 3px solid var(--hex-boutique-pink);
        padding: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        display: block; 
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu-content.show-dropdown { max-height: 300px; }
    .dropdown-menu-content a { padding: 12px 45px; font-size: 0.85rem; }
    
    .nav-link-trigger.active-arrow .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--hex-boutique-pink);
    }

    .kids-grid-spacing { grid-template-columns: repeat(2, 1fr) !important; }
    
    .trust-seals-row {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        grid-template-columns: repeat(2, 1fr);
    }
    .seal-box {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 20px;
    }
    .seal-box:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
    .roundel-flex-row { flex-wrap: wrap; justify-content: center; }
    .trust-seals-row { grid-template-columns: 1fr; flex-direction: column; }
    .nav-links-wrapper { width: 85%; } 
}

/* Hero Section Logo Styling */
.hero-illustration-block img.hero-logo {
    width: 100%;           
    max-width: 500px !important;
    height: auto;          
    display: block;
    margin: 0 auto;        
    object-fit: contain;
    flex-shrink: 0;
    backface-visibility: hidden;
}     

/* Targeted fix for Little Flamingeaux section */
.products-showcase-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    grid-template-columns: none !important;
}

/* ==========================================================================
   11. MINIMALIST FLOATING SIDE CART TRIGGER & DRAWER ARCHITECTURE
   ========================================================================== */
.floating-cart-trigger {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95); /* Swapped background to floating white */
    color: #000000;                /* Pure dark icons */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--hex-glitter-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999; 
    transition: all 0.25s ease-in-out;
}

.floating-cart-trigger:hover {
    background-color: #FFFFFF;
    border-color: var(--hex-boutique-pink);
    color: var(--hex-boutique-pink);
    transform: translateY(-50%) scale(1.05);
}

.floating-cart-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4px;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -5px 0 25px rgba(0,0,0,0.08);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100000;
    padding: 25px;
    display: flex;
    flex-direction: column;
    color: #000000;
}

.cart-drawer.active { 
    right: 0; 
}

.cart-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-header h3 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 0.9rem;
}

.cart-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* SURGICAL CART DRAWER TEXT COLOR FIX */
.cart-items :not(button):not([class*="btn"]):not([class*="button"]),
.cart-footer :not(button):not([class*="btn"]):not([class*="button"]) {
    color: #000000 !important;
}

.cart-items [class*="quantity"],
.cart-items [class*="qty"],
.cart-items input[type="number"] {
    background-color: transparent !important;
    background: transparent !important;
    color: #000000 !important;
    border: 1px solid #e5e5e5 !important;
}

.cart-footer span,
.cart-items span[style*="color:#E85B9A"],
.cart-items span[style*="color: #E85B9A"] {
    color: var(--hex-boutique-pink) !important;
}

/* MOBILE HAMBURGER ALIGNMENT FIX (CENTER ALIGNED) */
@media (max-width: 900px) {
    .main-navigation {
        display: flex !important;
        justify-content: center !important; 
        align-items: center !important;
        padding: 15px 30px !important;
    }
    
    .mobile-menu-toggle {
        margin: 0 auto !important; 
    }
}

/* ==========================================================================
   12. SURGICAL OVERRIDE UTILITIES
   ========================================================================== */
.alt-font {
    font-family: 'Playfair Display', serif !important;
}

.brand-script-font {
    font-family: 'Great Vibes', cursive !important;
    font-style: normal !important;
    font-weight: 400 !important; /* Force the lighter, regular weight */
    font-size: 3.2rem; 
    color: var(--hex-glitter-gold) !important;
    letter-spacing: 1px;        /* Increases clarity between letters */
    -webkit-font-smoothing: antialiased; /* Makes the edges look thinner/sharper */
}

/* Make icon buttons look like normal icons without a box */
.icon-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* adjust size if needed */
    color: inherit; /* match text/icon color */
}

.logo-text .brand-script-font {
    color: #000000 !important;
}

/* =========================
   HERO SLIDESHOW 3 ACROSS
   ========================= */
.hero-banner-area {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    height: 600px; /* adjust desktop height */
}

.hero-slideshow-viewport {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide-group {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide-group.active {
    opacity: 1;
    position: relative;
}

.hero-slide {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ======= MOBILE ======= */
@media (max-width: 900px) {
    .hero-banner-area {
        height: auto;
    }
    .hero-slide-group {
        flex-direction: column;
    }
    .hero-slide {
        width: 100%;
        height: 300px;
    }
}

/* MOBILE & TABLET FIX */
@media (max-width: 900px) {
    .hero-slideshow-viewport {
        flex-direction: column !important;
        height: auto !important;
    }

    .hero-slide {
        width: 100% !important;
        height: 300px !important; /* adjust for mobile */
        margin-bottom: 10px;
    }
}

/* By default (on mobile), the bars behave normally and scroll away with the page */
.announcement-bar {
    position: relative;
    z-index: 1001;
    background-color: var(--hex-boutique-pink);
    color: #FFFFFF;
    text-align: center;
    padding: 6px 20px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.main-header {
    position: relative;
    z-index: 1000;
    background-color: #FFFFFF;
    border-bottom: 2px solid var(--hex-boutique-pink);
    padding: 20px 0 0 0;
    box-shadow: none;
}

/* On larger screens (Desktop), we re-enable the sticky behavior */
@media (min-width: 901px) {
    .announcement-bar {
        position: sticky;
        top: 0;
    }
    .main-header {
        position: sticky;
        top: 30px;
    }
}

footer a {
    color: inherit;
    text-decoration: none;
}
---------------------------
/* ==========================================================================
   13. MASTER OVERRIDE FOR SINGLE PRODUCT CARDS
   ========================================================================== */
#shopify-product-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

#shopify-product-grid .product-card {
    display: flex !important;
    flex-direction: column !important;
    text-decoration: none !important;
    color: #000000 !important;
    /* This forces the card to never look wider than a standard item grid block */
    width: calc(25% - 23px) !important;
    min-width: 250px !important;
    max-width: 280px !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}

/* Fix responsiveness for medium devices */
@media (max-width: 900px) {
    #shopify-product-grid {
        justify-content: center !important;
    }
    #shopify-product-grid .product-card {
        width: calc(50% - 15px) !important;
    }
}

/* Fix responsiveness for small screens */
@media (max-width: 600px) {
    #shopify-product-grid .product-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   14. INTERACTIVE SEARCH DROPDOWN STYLING
   ========================================================================== */
.search-wrapper {
    position: relative;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    
    /* Keep your 120px placement here */
    transform: translateX(120px); 
    
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
    min-width: 260px;
    animation: searchFadeIn 0.25s ease-out;
}

/* Update the animation steps to match your 120px horizontal position */
@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translate(120px, -5px); /* Start at 120px horizontally */
    }
    to {
        opacity: 1;
        transform: translate(120px, 0);    /* Stay at 120px horizontally */
    }
}

.search-dropdown input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #000000;
    outline: none;
    background-color: #FAFAFA;
    transition: all 0.2s ease-in-out;
}

/* Pink glow accent when active typing */
.search-dropdown input:focus {
    border-color: var(--hex-boutique-pink);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(232, 91, 154, 0.1);
}

/* Subtle fade animation when it opens */
@keyframes searchFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile alignment tweak */
@media (max-width: 900px) {
    .search-dropdown {
        right: 50%;
        transform: translateX(50%);
        position: fixed;
        top: 80px;
        width: 90%;
        max-width: 340px;
    }
    @keyframes searchFadeIn {
        from {
            opacity: 0;
            transform: translate(50%, -5px);
        }
        to {
            opacity: 1;
            transform: translate(50%, 0);
        }
    }
}
