        /* --- BRAND THEME ARCHITECTURE --- */
        :root {
            --primary-pink: #FCB7C7;
            --accent-pink: #D6336C;
            --accent-yellow: #FFE97D;
            --white: #FFFFFF;
            --black: #000000;
            --font-heading: 'Edu NSW ACT Cursive', cursive;
            --font-body: 'Spectral', serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- GLOBAL EDITORIAL INTERACTIONS --- */
        a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
        img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
        
        .section-padding { padding: 10px;  }
        @media (max-width: 768px) { .section-padding { padding: 10px 0%; } }

        .editorial-heading {
            font-family: var(--font-heading);
            font-size: 3.8rem;
            color: var(--accent-pink);
            font-weight: normal;
            margin-bottom: 50px;
        }

        /* Scroll Reveal Framework */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Rounded Pill Buttons */
        .btn-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 38px;
            border-radius: 50px;
            font-size: 1rem;
            letter-spacing: 1px;
            border: 1px solid var(--accent-pink);
            background: transparent;
            color: var(--accent-pink);
            transition: var(--transition-smooth);
        }
        .btn-pill:hover {
            background: var(--accent-pink);
            color: var(--white);
            transform: scale(1.02);
        }
        .btn-filled { background: var(--accent-pink); color: var(--white); }
        .btn-filled:hover { background: var(--white); color: var(--accent-pink); }

        /* --- FIXED SCROLL NAVIGATION ENGINE --- */
        .header-container {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 2px 20px rgba(0,0,0,0.02);
        }
        .header-container.hidden {
            transform: translateY(-100%);
        }

        /* Announcement Ticker */
        .announcement-bar {
            background-color: var(--primary-pink);
            color: var(--accent-pink);
            height: 45px;
            display: flex;
            align-items: center;
            overflow: hidden;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
        }
        .ticker-move {
            display: inline-block;
            white-space: nowrap;
            padding-right: 100%;
            animation: tickerKeyframe 25s linear infinite;
        }
        .ticker-item {
            display: inline-block;
            padding: 0 40px;
        }
        .ticker-item span {
            animation: highlightColorKeyframe 4s infinite alternate;
        }
        @keyframes tickerKeyframe {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-100%, 0, 0); }
        }
        @keyframes highlightColorKeyframe {
            0% { color: var(--accent-yellow); }
            50% { color: var(--white); }
            100% { color: var(--accent-pink); }
        }

        /* Main Nav Header */
        .main-header {
            background: var(--white);
            height: 85px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            border-bottom: 1px solid rgba(214, 51, 108, 0.08);
        }
        .nav-left {
            display: flex;
            gap: 25px;
            font-size: 1.1rem;
        }
        .nav-left a {
            color: var(--accent-pink);
            position: relative;
            padding: 5px 0;
        }
        .nav-left a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: var(--accent-pink);
            transition: var(--transition-fast);
        }
        .nav-left a:hover::after, .nav-left a.active::after {
            width: 100%;
        }
        
        .nav-center .logo-icon-wrapper {
            font-family: var(--font-heading);
            color: var(--accent-pink);
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }
        .nav-center img.logo-img {
            margin-right: 6rem;
            margin-top: 1rem;
            height: 162px;
            width: auto;
            object-fit: contain;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
            color: var(--accent-pink);
            font-size: 1.2rem;
        }
        .nav-right i, .nav-right a { cursor: pointer; }
        .nav-right a { font-size: 1.1rem; }
        
        .cart-icon-btn { position: relative; }
        .cart-badge {
            position: absolute;
            top: -10px;
            right: -12px;
            background: var(--accent-pink);
            color: var(--white);
            font-size: 0.75rem;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: sans-serif;
            font-weight: bold;
        }

        /* Mobile Hamburger Control */
        .hamburger-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--accent-pink);
        }
        .mobile-navigation-overlay {
            position: fixed;
            top: 130px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 130px);
            background: var(--white);
            z-index: 999;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            padding: 50px 8%;
            gap: 30px;
            font-size: 2.2rem;
            font-family: var(--font-heading);
        }
        .mobile-navigation-overlay.active { left: 0; }
        .mobile-navigation-overlay a { color: var(--accent-pink); }

        @media (max-width: 1100px) {
            .nav-left { display: none; }
            .hamburger-menu-btn { display: block; }
        }

        /* --- GLOBAL MODULE: PRODUCT CARD COMPONENT --- */
        .product-card {
            display: flex;
            flex-direction: column;
            background: var(--white);
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            border-radius: 4px;
        }
        .product-card:hover {
            transform: translateY(-8px);
        }
        .product-image-frame {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            position: relative;
            background-color: #F9F9F9;
        }
        .product-card:hover .product-image-frame img {
            transform: scale(1.08);
        }
        .add-to-cart-drawer-trigger {
            position: absolute;
            bottom: -60px;
            left: 0;
            width: 100%;
            background: var(--accent-pink);
            color: var(--white);
            text-align: center;
            padding: 16px;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .product-card:hover .add-to-cart-drawer-trigger {
            bottom: 0;
        }
        .product-card-details {
            padding: 18px 0;
            text-align: left;
        }
        .product-card-title {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 6px;
            color: var(--black);
        }
        .product-card-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-pink);
        }

        /* --- ROUTING STATES --- */
        .site-page-view { display: none; padding-top: 130px; }
        .site-page-view.active-view { display: block; }

        /* ==============================================
           HOME PAGE ARCHITECTURE
           ============================================== */
        /* Hero Section */
        .hero-layout {
            height: calc(100vh - 130px);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 8%;
        }
        .hero-background-media {
            position: absolute;
            top: 0; left: 0; width: 100%; height: full;
            z-index: -1;
        }
        .hero-background-media::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height:full;
            background: rgba(0, 0, 0, 0.15);
        }
        .hero-content-box {
            max-width: 650px;
            color: var(--accent-pink);
            opacity: 0;
            transform: translateY(40px);
            animation: heroFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
        }
        .hero-content-box h1 {
            font-family: var(--font-heading);
            font-size: 5.5rem;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: normal;
        }
        .hero-content-box p {
            color: var(--white);
            font-size: 1.4rem;
            line-height: 1.6;
            margin-bottom: 35px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        @keyframes heroFadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Category Showcase Grid */
        .category-showcase-container {
            background-color: var(--white);
        }
        .category-square-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }
        @media (max-width: 992px) { .category-square-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 600px) { .category-square-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .category-square-card {
            aspect-ratio: 1 / 1;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .category-card-overlay {
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            padding: 25px 15px;
            background: linear-gradient(transparent, rgba(0,0,0,0.55));
            color: var(--white);
            font-size: 1.5rem;
            font-family: var(--font-heading);
            text-align: center;
            transition: var(--transition-smooth);
            opacity: 0;
        }
        .category-square-card:hover .category-card-overlay {
            bottom: 0;
            opacity: 1;
        }

        /* Age Group Collection Rows */
        .age-group-container {
            background-color: var(--white);
        }
        .age-four-column-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 850px) { .age-four-column-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px) { .age-four-column-grid { grid-template-columns: 1fr; } }
        
        .age-editorial-card {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .age-image-holder {
            aspect-ratio: 4 / 5;
            width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
            background-color: #F5F5F5;
            border-radius: 4px;
        }
        .shop-now-underline-link {
            font-size: 1.4rem;
            color: var(--accent-pink);
            font-family: var(--font-heading);
            position: relative;
            padding-bottom: 4px;
            cursor: pointer;
        }
        .shop-now-underline-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background-color: var(--accent-pink);
            transition: var(--transition-smooth);
        }
        .age-editorial-card:hover .shop-now-underline-link::after {
            width: 100%;
        }

        /* Featured Editorial Layout Frame */
        .featured-editorial-container {
            background-color: var(--white);
            color: var(--black);
        }
        .editorial-gallery-block {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        @media (max-width: 900px) { .editorial-gallery-block { flex-direction: column; } }
        
        .editorial-tall-portrait {
            flex: 1.2;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            position: relative;
            background: #F9F9F9;
        }
        .editorial-grid-right {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 550px) { .editorial-grid-right { grid-template-columns: 1fr; } }
        
        .editorial-square-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: #F9F9F9;
        }
        .editorial-white-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 18px;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--black);
            border-radius: 2px;
        }

        /* Trending Products Framework */
        .trending-products-container {
            background-color: var(--white);
            color: var(--accent-pink);
        }
        .four-product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        @media (max-width: 1024px) { .four-product-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .four-product-grid { grid-template-columns: 1fr; } }

        /* Promotional Split Framework */
        .promo-split-layout {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        @media (max-width: 950px) { .promo-split-layout { flex-direction: column; } }
        
        .promo-left-card {
            flex: 1.1;
            background-color: var(--primary-pink);
            color: var(--accent-pink);
            padding: 80px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            border-radius: 4px;
        }
        .promo-left-card h2 {
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            letter-spacing: -2px;
        }
        .promo-left-card h3 {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: normal;
            margin: 15px 0 35px 0;
            line-height: 1.2;
        }
        .promo-right-stack {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        @media (max-width: 500px) { .promo-right-stack { grid-template-columns: 1fr; } }

        /* Parallax Inspirational Banner */
        .parallax-inspirational-banner {
            height: 125vh;
            position: relative;
            overflow: hidden;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 80px 6%;
        }
        .parallax-inspirational-banner::before {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.15);
            z-index: 1;
        }
        .inspirational-headline {
            font-family: var(--font-heading);
            font-size: 4.8rem;
            color: var(--white);
            max-width: 800px;
            line-height: 1.2;
            z-index: 2;
            text-shadow: 0 4px 20px rgba(0,0,0,0.25);
            font-weight: normal;
        }
        @media (max-width: 768px) {
            .parallax-inspirational-banner { background-attachment: scroll; height: 45vh; padding: 40px 4%; }
            .inspirational-headline { font-size: 3.2rem; }
        }

        /* Typewriter Story Frame */
        .typewriter-story-container {
            background-color: var(--white);
            color: var(--accent-pink);
        }
        .story-flex-block {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        @media (max-width: 850px) { .story-flex-block { flex-direction: column; text-align: center; } }
        
        .story-square-frame {
            flex: 1;
            max-width: 440px;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 4px;
            background: #F9F9F9;
        }
        .story-typewriter-column {
            flex: 1.4;
            font-size: 2.2rem;
            line-height: 1.6;
            font-weight: 300;
            color: #333;
            min-height: 200px;
        }
        .typewriter-cursor-line {
            animation: typewriterCursorBlink 0.8s infinite;
            font-weight: normal;
            color: var(--accent-pink);
            margin-left: 2px;
        }
        @keyframes typewriterCursorBlink {
            50% { opacity: 0; }
        }

        /* Glassmorphism Newsletter Frame */
        .newsletter-hero-container {
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .newsletter-glass-panel {
            width: 100%;
            max-width: 950px;
            color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        @media (max-width: 800px) {
            .newsletter-glass-panel { grid-template-columns: 1fr; gap: 50px; padding: 40px 6%; }
        }
        .newsletter-inner-box h3 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: normal;
            color: var(--white);
        }
        .newsletter-inner-box p {
            font-size: 1.1rem;
            line-height: 1.5;
            margin-bottom: 25px;
            color: rgba(255,255,255,0.95);
        }
        .editorial-form-flow {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .editorial-form-flow input {
            background: rgba(255, 255, 255, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 14px 22px;
            border-radius: 50px;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
            transition: var(--transition-fast);
        }
        .editorial-form-flow input::placeholder { color: rgba(255, 255, 255, 0.8); }
        .editorial-form-flow input:focus {
            background: rgba(255, 255, 255, 0.4);
            border-color: var(--white);
        }
        .newsletter-inner-box button.btn-submit {
            background: var(--white);
            color: var(--accent-pink);
            font-weight: 600;
        }
        .newsletter-inner-box button.btn-submit:hover {
            background: var(--accent-yellow);
            color: var(--black);
        }

        /* SVG Wave Divider Engine */
        .wave-transition-block {
            line-height: 0;
            width: 100%;
            background: var(--white);
            margin-bottom: -2px; /* Eliminates rendering gaps */
        }
        .wave-transition-block svg {
            width: 100%;
            height: 75px;
        }
        .animated-wave-path {
            animation: waveOscillateKeyframe 8s ease-in-out infinite alternate;
            transform-origin: center;
        }
        @keyframes waveOscillateKeyframe {
            0% { transform: scaleY(1) cubic-bezier(0.45, 0.05, 0.55, 0.95); }
            100% { transform: scaleY(1.15) translateY(-2px); }
        }

        /* ==============================================
           GIRL PAGE ARCHITECTURE
           ============================================== */
        .girl-collage-header-block {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 30px;
            margin-bottom: 70px;
        }
        @media (max-width: 850px) { .girl-collage-header-block { grid-template-columns: 1fr; } }
        
        .girl-big-collage-image { aspect-ratio: 16 / 11; overflow: hidden; border-radius: 4px; }
        .girl-small-collage-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px 0;
        }
        .girl-small-collage-info p {
            font-size: 1.25rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: #444;
        }
        .lookbook-carousel-container {
            margin: 40px 0 80px 0;
        }
        .horizontal-lookbook-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 25px;
        }
        .horizontal-lookbook-slider::-webkit-scrollbar {
            height: 4px;
        }
        .horizontal-lookbook-slider::-webkit-scrollbar-thumb {
            background: var(--primary-pink);
            border-radius: 10px;
        }
        .lookbook-slider-card {
            flex: 0 0 320px;
            scroll-snap-align: start;
            aspect-ratio: 3 / 4;
            overflow: hidden;
            border-radius: 4px;
        }

        /* ==============================================
           BOY PAGE ARCHITECTURE
           ============================================== */
        .boy-magazine-structural-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 80px;
        }
        @media (max-width: 900px) { .boy-magazine-structural-grid { grid-template-columns: 1fr; } }
        
        .boy-grid-span-two { grid-column: span 2; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 4px; }
        @media (max-width: 900px) { .boy-grid-span-two { grid-column: span 1; } }
        
        .boy-grid-tall-card { grid-row: span 2; aspect-ratio: 3 / 5; overflow: hidden; border-radius: 4px; }
        @media (max-width: 900px) { .boy-grid-tall-card { grid-row: span 1; aspect-ratio: 1/1; } }
        
        .boy-magazine-text-block {
            background: #F4F4F1;
            padding: 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 4px;
        }
        .boy-magazine-text-block h4 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 15px;
        }
        .boy-magazine-text-block p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        /* ==============================================
           NEW & TRENDING ARCHITECTURE
           ============================================== */
        .pinterest-masonry-wrapper {
            columns: 4 280px;
            column-gap: 30px;
            margin-top: 40px;
        }
        .masonry-brick {
            display: inline-block;
            width: 100%;
            margin-bottom: 30px;
            background: var(--white);
            break-inside: avoid;
        }
        .masonry-brick .product-image-frame {
            aspect-ratio: auto;
        }
        .masonry-brick img {
            height: auto;
            max-height: 500px;
        }
        .masonry-editorial-banner-brick {
            display: inline-block;
            width: 100%;
            margin-bottom: 30px;
            break-inside: avoid;
            background: var(--primary-pink);
            color: var(--accent-pink);
            padding: 50px 35px;
            border-radius: 4px;
        }
        .masonry-editorial-banner-brick h4 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: normal;
            margin-bottom: 15px;
        }
        .masonry-editorial-banner-brick p {
            font-size: 1.15rem;
            line-height: 1.6;
        }

        /* ==============================================
           ABOUT PAGE ARCHITECTURE
           ============================================== */
        .about-storytelling-manifesto {
            max-width: 850px;
            margin: 0 auto 90px auto;
            text-align: center;
        }
        .about-storytelling-manifesto p {
            font-size: 1.7rem;
            line-height: 1.8;
            font-weight: 300;
            color: #222;
        }
        .editorial-timeline-chain {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 0;
        }
        .editorial-timeline-chain::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 1px;
            height: 100%;
            background: var(--primary-pink);
        }
        @media (max-width: 768px) { .editorial-timeline-chain::before { left: 20px; } }
        
        .timeline-milestone-row {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 50px;
            position: relative;
        }
        .timeline-milestone-row:nth-child(even) { flex-direction: row-reverse; }
        @media (max-width: 768px) {
            .timeline-milestone-row, .timeline-milestone-row:nth-child(even) { flex-direction: column; align-items: flex-start; padding-left: 50px; }
        }
        
        .timeline-node-card {
            width: 45%;
            background: var(--white);
            padding: 35px;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 8px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.01);
        }
        @media (max-width: 768px) { .timeline-node-card { width: 100%; } }
        
        .timeline-node-card h5 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: var(--accent-pink);
            margin-bottom: 12px;
            font-weight: normal;
        }
        .timeline-node-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }
        
        .about-contact-block {
            margin-top: 120px;
            background: #FAF8F6;
            padding: 70px 5%;
            border-radius: 16px;
            text-align: center;
        }
        .about-contact-block p { font-size: 1.2rem; margin-bottom: 40px; color: #555; }
        .contact-form-wrapper {
            max-width: 650px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-form-wrapper input, .contact-form-wrapper textarea {
            width: 100%;
            padding: 16px 22px;
            border: 1px solid #E2DED9;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1.05rem;
            outline: none;
            background: var(--white);
            transition: var(--transition-fast);
        }
        .contact-form-wrapper input:focus, .contact-form-wrapper textarea:focus {
            border-color: var(--accent-pink);
        }

        /* ==============================================
           BLACK FOOTER INTERACTIVE ARCHITECTURE
           ============================================== */
footer.editorial-black-footer{
    background: var(--black);
    color: var(--white);
}

.footer-logo-centerpiece{
    text-align: center;
    margin-bottom: 70px;
}

.footer-logo-centerpiece .logo-img{
    width: auto;
    height: 120px; /* Adjust as needed */
    display: inline-block;
    object-fit: contain;
}

.footer-logo-centerpiece h2{
    font-family: var(--font-heading);
    font-size: 4.2rem;
    color: var(--primary-pink);
    font-weight: normal;
}        .footer-columns-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            border-bottom: 1px solid #1A1A1A;
            padding-bottom: 70px;
            margin-bottom: 40px;
        }
        @media (max-width: 850px) { .footer-columns-matrix { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px) { .footer-columns-matrix { grid-template-columns: 1fr; } }
        
        .footer-column-stack h4 {
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--primary-pink);
            font-weight: 600;
        }
        .footer-column-stack ul {
            display: flex;
            flex-direction: column;
            gap: 16px;
            list-style: none;
        }
        .footer-column-stack a {
            color: #BBBBBB;
            font-size: 1.05rem;
            cursor: pointer;
        }
        .footer-column-stack a:hover {
            color: var(--primary-pink);
            padding-left: 4px;
        }
        .footer-copyright-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666666;
            font-size: 0.95rem;
        }
        @media (max-width: 650px) { .footer-copyright-row { flex-direction: column; gap: 20px; text-align: center; } }

        /* ==============================================
           MODAL SYSTEM & DRAWERS
           ============================================== */
        .modal-overlay-shroud {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .modal-content-vault {
            background: var(--white);
            color: var(--black);
            max-width: 700px;
            width: 100%;
            max-height: 82vh;
            overflow-y: auto;
            padding: 50px 40px;
            border-radius: 16px;
            position: relative;
            box-shadow: 0 10px 50px rgba(0,0,0,0.15);
        }
        .modal-dismiss-cross {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--accent-pink);
            transition: var(--transition-fast);
        }
        .modal-dismiss-cross:hover { transform: scale(1.15); }
        .modal-content-vault h3 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            color: var(--accent-pink);
            margin-bottom: 25px;
            font-weight: normal;
        }
        .modal-content-vault p, .modal-content-vault ul {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #333;
        }
        .modal-content-vault ul { padding-left: 20px; }
        
        /* Functional Search Modal Specifics */
        .search-input-field {
            width: 100%;
            padding: 16px 25px;
            border: 2px solid var(--primary-pink);
            border-radius: 50px;
            font-size: 1.2rem;
            font-family: var(--font-body);
            outline: none;
            margin-bottom: 30px;
        }
        .search-results-output-zone {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        /* Cart Side Drawer */
        .cart-side-drawer {
            position: fixed;
            top: 0; right: -450px; width: 450px; height: 100vh;
            background: var(--white);
            box-shadow: -5px 0 40px rgba(0,0,0,0.1);
            z-index: 2500;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            padding: 40px 30px;
        }
        .cart-side-drawer.open { right: 0; }
        @media (max-width: 480px) { .cart-side-drawer { width: 100%; right: -100%; } }
        
        .cart-drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 35px;
            border-bottom: 1.5px solid var(--primary-pink);
            padding-bottom: 15px;
        }
        .cart-drawer-header h3 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--accent-pink); font-weight: normal; }
        .cart-items-feed-window {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 25px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cart-item-row {
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid #F5F5F5;
            padding-bottom: 15px;
        }
        .cart-item-thumb { width: 70px; height: 70px; border-radius: 4px; overflow: hidden; background: #f9f9f9; }
        .cart-item-meta { flex: 1; }
        .cart-item-meta h5 { font-size: 1.1rem; font-weight: 400; margin-bottom: 4px; }
        .cart-item-meta span { color: var(--accent-pink); font-weight: 600; }
        .cart-item-remove-btn { color: #999; cursor: pointer; transition: var(--transition-fast); }
        .cart-item-remove-btn:hover { color: var(--accent-pink); }
        
        .cart-summary-checkout-panel {
            border-top: 1px solid #EEEEEE;
            padding-top: 25px;
        }
        .cart-total-line {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* Mobile Sticky Footer Floating Cart Access Asset */
        .sticky-mobile-cart-shortcut {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: var(--accent-pink);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(214, 51, 108, 0.4);
            z-index: 998;
            font-size: 1.4rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .sticky-mobile-cart-shortcut:hover { transform: scale(1.05); }
        @media (max-width: 1100px) { .sticky-mobile-cart-shortcut { display: flex; } }

        /* Core Notification Action Toast System */
        .toast-notification-node {
            position: fixed;
            bottom: 35px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--black);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 50px;
            z-index: 3000;
            font-size: 1rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.25);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
            opacity: 0;
            pointer-events: none;
        }
        .toast-notification-node.display-toast {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
