        /* --- BRAND STYLE VARIABLES --- */
        :root {
            --pink: #E22F80;
            --purple: #8140DC;
            --blue: #1B4EF5;
            --aqua: #00E0BA;
            --yellow: #FFCF00;
            --black: #111111;
            --white: #FFFFFF;
            --gray-light: #F5F5F7;
            --gray-muted: #8E8E93;
            --font-main: 'Arimo', sans-serif;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- GLOBAL BASICS --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-family: var(--font-main);
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
        }
        body {
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            font-weight: 500;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-main);
            outline: none;
        }

        /* --- APP PRELOADER --- */
        #loader {
            position: fixed;
            top:0; left:0; width:100%; height:100%;
            background: var(--black);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: opacity 0.8s ease;
        }
        .loader-content {
            text-align: center;
        }
        .loader-logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .loader-bar {
            width: 120px;
            height: 1px;
            background: rgba(255,255,255,0.2);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .loader-bar::after {
            content: '';
            position: absolute;
            top:0; left:0; height:100%; width:40%;
            background: var(--aqua);
            animation: loading 1.5s infinite ease-in-out;
        }
        @keyframes loading {
            0% { left: -40%; }
            100% { left: 100%; }
        }

        /* --- GENERAL EDITORIAL LAYOUT UTILITIES --- */
        .section-margin {
            padding: 120px max(4vw, 20px);
        }
        .line-accent {
            width: 60px;
            height: 2px;
            background-color: var(--black);
            margin: 20px 0;
        }
        .caps-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-weight: 600;
            color: var(--gray-muted);
            margin-bottom: 15px;
            display: inline-block;
        }
        .editorial-heading {
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .paragraph-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            max-width: 600px;
        }
        .reveal-view {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-view.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 max(4vw, 20px);
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
        }
        header.scrolled {
            background: var(--white);
            height: 75px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        }
        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-item {
            position: relative;
            padding: 10px 0;
            cursor: pointer;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--black);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-item:hover::after {
            width: 100%;
        }
        .nav-item.active::before {
            content: '';
            position: absolute;
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background-color: var(--pink);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .cart-trigger {
            position: relative;
            font-size: 1.1rem;
        }
        .cart-count {
            position: absolute;
            top: -8px;
            right: -12px;
            background: var(--black);
            color: var(--white);
            font-size: 0.65rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* --- MOBILE MENU --- */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            width: 25px;
            z-index: 1001;
        }
        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--black);
            transition: var(--transition);
        }
        .mobile-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--white);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }
        .mobile-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-overlay a {
            font-size: 1.75rem;
            font-weight: 600;
        }

        /* --- PAGE ARCHITECTURE CONTROLLER --- */
        .app-page {
            display: none;
            min-height: 100vh;
            padding-top: 90px;
        }
        .app-page.active-page {
            display: block;
        }

        /* =========================================
           HOME PAGE SECTIONS
        ========================================= */
        /* Section 1: Hero */
        .hero-section {
            height: calc(100vh - 90px);
            min-height: 650px;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 60px max(4vw, 20px);
            overflow: hidden;
            background: #eaeaea;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            animation: zoomOutHero 12s forwards cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1;
            filter: brightness(0.95);
        }
        @keyframes zoomOutHero {
            to { transform: scale(1); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 800px;
        }
        .hero-content .editorial-heading {
            color: var(--white);
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .hero-content .caps-label {
            color: var(--aqua);
        }
        .hero-content p {
            color: rgba(255,255,255,0.9);
        }
        .scroll-indicator {
            position: absolute;
            right: max(4vw, 20px);
            bottom: 60px;
            height: 100px;
            width: 1px;
            background: rgba(255,255,255,0.3);
            z-index: 2;
        }
        .scroll-indicator::after {
            content: '';
            position: absolute;
            top:0; left:0; width:100%; height:30px;
            background: var(--aqua);
            animation: scrollDrop 2s infinite ease-in-out;
        }
        @keyframes scrollDrop {
            0% { top: 0%; height: 0; opacity: 0; }
            30% { top: 0%; height: 40px; opacity: 1; }
            100% { top: 100%; height: 0px; opacity: 0; }
        }

        /* Section 2: Featured Categories */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        .category-block {
            background: var(--gray-light);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 450px;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
            transition: var(--transition);
            cursor: pointer;
        }
        .category-block-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            transition: var(--transition);
            z-index: 1;
        }
        .category-block-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .category-block h3 {
            font-size: 2rem;
            text-transform: uppercase;
            font-weight: 700;
        }
        .category-block:hover {
            border-color: var(--purple);
            background: var(--white);
        }
        .category-block:hover .category-block-img {
            transform: scale(1.08);
            opacity: 0.3;
        }
        .category-block:hover .caps-label {
            color: var(--purple);
        }

        /* Section 3: New Season Collection Split Layout */
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .split-image-container {
            position: relative;
            padding-right: 20px;
        }
        .split-image-container img {
            width: 100%;
            height: 650px;
        }
        .color-strip {
            position: absolute;
            top: 30px; right: 0; bottom: 30px;
            width: 120px;
            background: linear-gradient(to bottom, var(--pink), var(--purple), var(--blue));
            z-index: -1;
        }

        /* Section 4: Product Showcase Carousel */
        .carousel-container {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .product-card {
            flex: 0 0 calc(33.333% - 20px);
            background: var(--white);
            position: relative;
            cursor: pointer;
        }
        .product-img-holder {
            position: relative;
            width: 100%;
            height: 480px;
            background: var(--gray-light);
            overflow: hidden;
        }
        .product-img-holder img {
            width: 100%; height: 100%;
            transition: var(--transition);
        }
        .product-img-alt {
            position: absolute !important;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
        }
        .product-card:hover .product-img-alt {
            opacity: 1;
        }
        .product-card:hover .product-img-holder img:not(.product-img-alt) {
            opacity: 0;
        }
        .product-info {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .product-meta h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .product-meta p {
            font-size: 0.85rem;
            color: var(--gray-muted);
        }
        .product-price {
            font-weight: 700;
            font-size: 1.1rem;
        }
        .product-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .btn-editorial {
            padding: 10px 20px;
            border: 1px solid var(--black);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-editorial:hover {
            background: var(--black);
            color: var(--white);
        }
        .carousel-controls {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            margin-top: 30px;
        }
        .btn-arrow {
            width: 50px; height: 50px;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: var(--transition);
        }
        .btn-arrow:hover {
            border-color: var(--black);
            background: var(--black);
            color: var(--white);
        }

        /* Section 5: Performance Quote */
        .quote-section {
            background: var(--black);
            color: var(--white);
            text-align: center;
            padding: 140px max(4vw, 20px);
            position: relative;
        }
        .quote-text {
            font-size: clamp(1.8rem, 4vw, 3.5rem);
            font-weight: 600;
            max-width: 1000px;
            margin: 0 auto;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }
        .quote-line {
            width: 180px;
            height: 3px;
            background: var(--aqua);
            margin: 40px auto 0 auto;
        }

        /* Section 6: Athlete Stories Layouts */
        .story-row {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            margin-bottom: 120px;
            align-items: center;
        }
        .story-row.reverse {
            grid-template-columns: 0.8fr 1.2fr;
        }
        .story-img {
            height: 600px;
            width: 100%;
        }
        .pull-quote {
            font-size: 1.75rem;
            font-style: italic;
            border-left: 4px solid var(--pink);
            padding-left: 25px;
            margin: 30px 0;
            line-height: 1.4;
            color: #222;
        }

        /* Section 7: Essentials Grid (Asymmetrical Layout) */
        .essentials-mosaic {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
            margin-top: 5px;
        }
        .mosaic-item {
            position: relative;
            overflow: hidden;
            background: var(--gray-light);
            cursor: pointer;
        }
        .mosaic-item.tall {
            grid-row: span 2;
            height: 700px;
        }
        .mosaic-item.short {
            height: 337px;
        }
        .mosaic-item img {
            width: 100%; height: 100%;
            transition: var(--transition);
        }
        .mosaic-overlay {
            position: absolute;
            top:0; left:0; width:100%; height:100%;
            background: rgba(17,17,17,0.7);
            opacity: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            transition: var(--transition);
            padding: 30px;
            text-align: center;
        }
        .mosaic-item:hover .mosaic-overlay {
            opacity: 1;
        }
        .mosaic-item:hover img {
            transform: scale(1.05);
        }

        /* Section 8: Editorial Journal */
        .journal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
        }
        .journal-card h3 {
            font-size: 1.4rem;
            margin: 15px 0 10px 0;
            text-transform: uppercase;
        }
        .journal-card img {
            height: 350px;
            width: 100%;
        }
        .read-more {
            display: inline-block;
            margin-top: 15px;
            font-size: 0.75rem;
            border-bottom: 1px solid var(--black);
            padding-bottom: 2px;
        }

        /* Section 9: Community Gallery */
        .gallery-collage {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 40px;
        }
        .gallery-item {
            height: 280px;
            position: relative;
            overflow: hidden;
        }
        .gallery-item img { width: 100%; height: 100%; transition: var(--transition); }
        .gallery-caption {
            position: absolute; bottom: 15px; left: 15px;
            color: var(--white); font-size: 0.75rem; text-transform: uppercase;
            opacity: 0; transition: var(--transition); z-index: 2;
        }
        .gallery-item::after {
            content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            opacity: 0; transition: var(--transition);
        }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-item:hover::after, .gallery-item:hover .gallery-caption { opacity: 1; }

        /* Section 10: Newsletter */
        .newsletter-box {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 60px 0;
        }
        .newsletter-form {
            display: flex;
            margin-top: 40px;
            border-bottom: 1px solid var(--black);
            padding-bottom: 10px;
        }
        .newsletter-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 10px;
            font-family: var(--font-main);
            font-size: 1rem;
            outline: none;
        }
        .btn-subscribe {
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
        }

        /* =========================================
           SHOP PAGE SPECIFICS
        ========================================= */
        .shop-container {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 50px;
            margin-top: 40px;
        }
        .filter-sidebar h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .filter-group {
            margin-bottom: 35px;
        }
        .filter-group label {
            display: block;
            font-size: 0.85rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            cursor: pointer;
            color: #555;
        }
        .filter-group input {
            margin-right: 10px;
        }
        .shop-catalog {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px 30px;
        }
        .editorial-banner-mid {
            grid-column: span 3;
            background: var(--blue);
            color: var(--white);
            padding: 80px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-transform: uppercase;
        }
        .editorial-banner-mid h2 { font-size: 2.5rem; font-weight: 700; max-width: 600px; line-height: 1; }

        /* =========================================
           OUR STORY PAGE SPECIFICS
        ========================================= */
        .story-timeline {
            margin: 80px 0;
            position: relative;
        }
        .timeline-node {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 50px;
            margin-bottom: 60px;
            border-top: 1px solid #eee;
            padding-top: 30px;
        }
        .timeline-year {
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue);
        }

        /* =========================================
           FAQ PAGE SPECIFICS
        ========================================= */
        .faq-accordion {
            max-width: 800px;
            margin: 40px auto 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 25px 0;
        }
        .faq-trigger {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .faq-icon {
            font-size: 1rem;
            transition: var(--transition);
            color: var(--pink);
        }
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            color: #555;
            font-size: 1rem;
            line-height: 1.6;
        }
        .faq-content p {
            padding-top: 15px;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-item.open .faq-content {
            max-height: 200px;
        }

        /* =========================================
           BLOG PAGE SPECIFICS
        ========================================= */
        .blog-featured {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 60px;
            margin-bottom: 80px;
            background: var(--gray-light);
            padding: 40px;
        }
        .blog-featured img {
            width: 100%; height: 500px;
        }
        .blog-asymmetric {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px 40px;
        }

        /* =========================================
           LOCATION PAGE SPECIFICS
        ========================================= */
        .location-box {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
        }
        .map-mockup {
            background: #e0e0e0;
            height: 500px;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .map-mockup iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(1) invert(0.9) contrast(1.2);
        }

        /* =========================================
           LEGAL LAYOUTS (PRIVACY & TERMS)
        ========================================= */
        .legal-wrapper {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 60px;
            margin-top: 40px;
        }
        .legal-chapters {
            position: sticky;
            top: 140px;
            height: fit-content;
        }
        .legal-chapters li {
            margin-bottom: 15px;
        }
        .legal-chapters a {
            font-size: 0.8rem;
            color: var(--gray-muted);
        }
        .legal-chapters a.active-chapter {
            color: var(--black);
            font-weight: 700;
        }
        .legal-body h2 {
            font-size: 1.5rem;
            text-transform: uppercase;
            margin: 40px 0 20px 0;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .legal-body h2:first-child {
            margin-top: 0; padding-top: 0; border: none;
        }
        .legal-body p {
            font-size: 1rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
        }

        /* =========================================
           SHOPPING CART SLIDEOUT DRAWER
        ========================================= */
        #cart-drawer {
            position: fixed;
            top:0; right: -450px; width: 450px; height: 100%;
            background: var(--white);
            box-shadow: -10px 0 40px rgba(0,0,0,0.05);
            z-index: 2000;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 40px;
        }
        #cart-drawer.open {
            right: 0;
        }
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        .cart-header h2 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .cart-close { font-size: 1.5rem; }
        .cart-items-list {
            flex: 1;
            overflow-y: auto;
            margin: 20px 0;
        }
        .cart-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f9f9f9;
        }
        .cart-item img {
            width: 70px; height: 90px;
        }
        .cart-item-details {
            flex: 1;
        }
        .cart-item-title {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .cart-item-price {
            margin-top: 5px;
            font-size: 0.9rem;
        }
        .cart-item-remove {
            font-size: 0.7rem;
            color: var(--pink);
            margin-top: 10px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .cart-footer {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        .cart-total-row {
            display: flex;
            justify-content: space-between;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .btn-checkout {
            width: 100%;
            background: var(--black);
            color: var(--white);
            padding: 18px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.15em;
            font-size: 0.85rem;
            text-align: center;
        }
        .cart-overlay-mask {
            position: fixed;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.3);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }
        .cart-overlay-mask.open {
            opacity: 1;
            pointer-events: auto;
        }

        /* =========================================
           QUICK VIEW MODAL OVERLAY
        ========================================= */
        .modal-mask {
            position: fixed;
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            padding: 20px;
        }
        .modal-mask.open { opacity: 1; pointer-events: auto; }
        .modal-box {
            background: var(--white);
            max-width: 900px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes modalPop {
            from { transform: translateY(30px); opacity:0; }
            to { transform: translateY(0); opacity:1; }
        }
        .modal-close {
            position: absolute; top:20px; right:20px; font-size: 1.5rem; z-index: 10;
        }
        .modal-img img { width: 100%; height: 500px; }
        .modal-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

        /* =========================================
           BACK TO TOP BUTTON
        ========================================= */
        #back-to-top {
            position: fixed;
            bottom: 40px; right: 40px;
            width: 50px; height: 50px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            z-index: 99;
            opacity: 0; transform: translateY(20px);
            transition: var(--transition);
        }
        #back-to-top.visible { opacity: 1; transform: translateY(0); }

        /* =========================================
           FOOTER
        ========================================= */
        footer {
            background: var(--white);
            border-top: 1px solid var(--black);
            padding: 80px max(4vw, 20px) 40px max(4vw, 20px);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-col h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #555;
            text-transform: none;
            font-size: 0.9rem;
            letter-spacing: 0;
        }
        .footer-col ul li a:hover {
            color: var(--black);
            padding-left: 5px;
        }
        .footer-bottom {
            border-top: 1px solid #eee;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-socials {
            display: flex;
            gap: 20px;
        }
        .footer-socials a { font-size: 1.1rem; }
        .footer-copy { font-size: 0.8rem; color: var(--gray-muted); }

        /* =========================================
           RESPONSIVE MEDIA CODES
        ========================================= */
        @media(max-width: 1024px) {
            .categories-grid { grid-template-columns: repeat(2, 1fr); }
            .product-card { flex: 0 0 calc(50% - 15px); }
            .split-layout, .story-row, .story-row.reverse, .blog-featured, .location-box, .legal-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .shop-container { grid-template-columns: 1fr; }
            .shop-catalog { grid-template-columns: repeat(2, 1fr); }
            .editorial-banner-mid { grid-column: span 2; }
            .journal-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media(max-width: 768px) {
            header .nav-links { display: none; }
            .hamburger { display: flex; }
            .categories-grid, .shop-catalog, .journal-grid, .gallery-collage, .footer-grid, .essentials-mosaic {
                grid-template-columns: 1fr;
            }
            .product-card { flex: 0 0 100%; }
            .editorial-banner-mid { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 20px; }
            .mosaic-item.tall, .mosaic-item.short { height: 400px; grid-row: auto; }
            #cart-drawer { width: 100%; right: -100%; }
            .modal-box { grid-template-columns: 1fr; }
            .modal-img img { height: 300px; }
            .legal-chapters { display: none; }
        }
