        /* DESIGN SYSTEM & GLOBAL STYLES */
        :root {
            --bg-primary: #FFFFFF;
            --soft-mint: #C1EBE9;
            --peach-accent: #FFE0C5;
            --hover-accent: #FFAE6E;
            --main-text: #06202B;
            --border-color: #06202B;
            --font-main: 'Lora', Georgia, serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-primary);
            color: var(--main-text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        button, input, textarea {
            font-family: var(--font-main);
            background: none;
            border: none;
            outline: none;
        }

        /* UTILITIES */
        .section-padding {
            padding: 120px 4%;
        }
        @media (max-width: 768px) {
            .section-padding { padding: 60px 4%; }
        }

        .editorial-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 400;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin-bottom: 30px;
        }

        .editorial-para {
            font-size: 1.15rem;
            line-height: 1.8;
            font-weight: 400;
            opacity: 0.9;
        }

        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            border: 1px solid var(--border-color);
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-top: 30px;
            position: relative;
            z-index: 1;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .cta-btn:hover {
            background-color: var(--hover-accent);
        }

        /* PAGE ROUTING SYSTEM */
        .page-view {
            display: none;
        }
        .page-view.active-view {
            display: block;
        }

        /* STICKY HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--bg-primary);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4%;
            z-index: 1000;
        }

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: var(--main-text);
}

.logo img {
    margin-top: 2rem;
    height: 210px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

.nav-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        nav ul {
            display: flex;
            list-style: none;
            height: 100%;
            align-items: center;
        }

        nav ul li {
            height: 100%;
            display: flex;
            align-items: center;
        }

        nav ul li a {
            padding: 0 30px;
            height: 100%;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            border-left: 1px solid transparent;
            border-right: 1px solid transparent;
        }

        nav ul li a:hover, nav ul li a.active-link {
            background-color: var(--hover-accent);
            color: #000000;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-icon-container {
            cursor: pointer;
            position: relative;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: var(--hover-accent);
            color: var(--main-text);
            font-size: 0.75rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 26px;
            height: 18px;
            cursor: pointer;
            z-index: 1010;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--main-text);
            transition: all 0.3s ease;
        }

        .hamburger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        @media (max-width: 992px) {
            .hamburger { display: flex; }
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--bg-primary);
                transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                border-top: 1px solid var(--border-color);
            }
            nav.mobile-open { left: 0; }
            nav ul {
                flex-direction: column;
                width: 100%;
                height: auto;
                padding-top: 40px;
            }
            nav ul li {
                width: 100%;
                height: 70px;
                justify-content: center;
            }
            nav ul li a {
                width: 100%;
                justify-content: center;
                font-size: 1.2rem;
            }
        }

        main {
            margin-top: 90px;
        }

        /* HERO SECTION */
        .hero-section {
            height: calc(100vh - 90px);
            display: flex;
            width: 100%;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-left {
            width: 50%;
            height: 100%;
            background-position: center;
            background-size: cover;
            position: relative;
        }

        .hero-right {
            width: 50%;
            height: 100%;
            background-color: var(--soft-mint);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 8%;
            border-left: 1px solid var(--border-color);
        }

        @media (max-width: 992px) {
            .hero-section { flex-direction: column; height: auto; }
            .hero-left { width: 100%; height: 50vh; }
            .hero-right { width: 100%; height: auto; padding: 60px 6%; border-left: none; border-top: 1px solid var(--border-color); }
        }

        /* SECTION 2 - TWO IMAGE CARDS WITH FLOATING CONTENTS */
        .sec2-container {
            display: flex;
            flex-direction: column;
            gap: 120px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .magazine-card {
            display: flex;
            position: relative;
            width: 100%;
            align-items: center;
        }

        .magazine-card.left-aligned { justify-content: flex-start; }
        .magazine-card.right-aligned { justify-content: flex-end; }

        .card-img-wrapper {
            width: 65%;
            height: 600px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .magazine-card:hover .card-img-wrapper img {
            transform: scale(1.03);
        }

        .floating-box {
            position: absolute;
            width: 45%;
            background-color: var(--bg-primary);
            border: 1px solid var(--border-color);
            padding: 50px;
            box-shadow: 0 15px 40px rgba(6,32,43,0.05);
        }
        .left-aligned .floating-box { right: 5%; }
        .right-aligned .floating-box { left: 5%; }

        .floating-box h3 {
            font-size: 2rem;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: -0.5px;
        }

        @media (max-width: 992px) {
            .sec2-container { gap: 60px; }
            .magazine-card { flex-direction: column !important; align-items: stretch; }
            .card-img-wrapper { width: 100%; height: 400px; }
            .floating-box { position: relative; width: 100%; left: 0 !important; right: 0 !important; margin-top: -40px; z-index: 2; padding: 30px; }
        }

        /* SECTION 3 - INTERACTIVE SHOWCASE */
        .sec3-grid {
            display: flex;
            width: 100%;
            gap: 5%;
            align-items: flex-start;
        }

        .sec3-left {
            width: 40%;
            position: sticky;
            top: 140px;
        }

        .editorial-quote {
            font-style: italic;
            font-size: 1.6rem;
            color: var(--main-text);
            margin: 20px 0 35px 0;
            padding-left: 20px;
            border-left: 3px solid var(--border-color);
            line-height: 1.4;
        }

        .sec3-right {
            width: 55%;
        }

        .slider-gallery-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-bottom: 80px;
            border: 1px solid var(--border-color);
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            width: 300%;
        }

        .slide-item {
            width: 33.3333%;
            height: 500px;
            background-size: cover;
            background-position: center;
        }

        .slider-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
        }

        .arrow-btn {
            width: 45px;
            height: 45px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: var(--bg-primary);
            transition: background 0.3s;
        }
        .arrow-btn:hover { background: var(--hover-accent); }

        /* Composition Layers */
        .composition-wrapper {
            position: relative;
            height: 650px;
            width: 100%;
            margin-top: 40px;
        }

        .feature-card {
            position: absolute;
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .feature-card .card-img {
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .feature-card .card-desc {
            padding: 25px;
            font-size: 1rem;
            line-height: 1.6;
        }

        .left-feature-card {
            background-color: var(--soft-mint);
            width: 55%;
            height: 550px;
            left: 0;
            top: 0;
            z-index: 1;
        }
        .left-feature-card .card-img { height: 380px; }

        .right-feature-card {
            background-color: var(--peach-accent);
            width: 55%;
            height: 480px;
            right: 0;
            bottom: 0;
            z-index: 2;
        }
        .right-feature-card .card-img { height: 300px; }

        @media (max-width: 992px) {
            .sec3-grid { flex-direction: column; }
            .sec3-left { width: 100%; position: relative; top: 0; margin-bottom: 50px; }
            .sec3-right { width: 100%; }
            .composition-wrapper { height: auto; display: flex; flex-direction: column; gap: 30px; }
            .feature-card { position: relative; width: 100% !important; height: auto !important; }
            .feature-card .card-img { height: 350px !important; }
        }

        /* SECTION 4 - FULL WIDTH GALLERY SLIDER */
        .sec4-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .continuous-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .continuous-track {
            display: flex;
            width: 150%; 
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .continuous-item {
            flex: 0 0 16.666%; 
            height: 450px;
            border-right: 1px solid var(--border-color);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 1200px) {
            .continuous-track { width: 300%; }
            .continuous-item { flex: 0 0 33.333%; }
        }
        @media (max-width: 768px) {
            .continuous-track { width: 600%; }
            .continuous-item { flex: 0 0 100%; }
        }

        .continuous-meta {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(6,32,43,0.85));
            color: #FFFFFF;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .continuous-item:hover .continuous-meta {
            transform: translateY(0);
        }

        .continuous-meta h4 {
            font-size: 1.2rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sec4-nav-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        /* SHOP PAGE */
        .shop-hero {
            height: 450px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }
        .shop-hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(6,32,43,0.3);
        }
        .shop-hero h1 {
            color: #FFFFFF;
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .shop-alternating-section {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 100px;
        }

        .shop-row {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 6%;
        }
        .shop-row:nth-child(even) { flex-direction: row-reverse; }

        .shop-img-block {
            width: 50%;
            height: 550px;
            border: 1px solid var(--border-color);
            background-size: cover;
            background-position: center;
        }

        .shop-text-block {
            width: 44%;
        }
        .shop-text-block h3 {
            font-size: 2.2rem;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 400;
        }
        .shop-tag {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--main-text);
            opacity: 0.6;
            margin-bottom: 10px;
            display: block;
        }

        @media (max-width: 992px) {
            .shop-row, .shop-row:nth-child(even) { flex-direction: column; gap: 30px; }
            .shop-img-block { width: 100%; height: 350px; }
            .shop-text-block { width: 100%; }
        }

        /* ABOUT PAGE */
        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 80px;
        }
        .about-header-block {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px auto;
        }
        .about-row-split {
            display: flex;
            gap: 6%;
            align-items: center;
        }
        .about-split-img {
            width: 50%;
            height: 600px;
            border: 1px solid var(--border-color);
            background-size: cover;
            background-position: center;
        }
        .about-split-content {
            width: 44%;
        }
        .about-split-content h3 {
            font-size: 2rem;
            text-transform: uppercase;
            margin-bottom: 25px;
            font-weight: 400;
        }
        @media (max-width: 992px) {
            .about-row-split { flex-direction: column; gap: 40px; }
            .about-split-img { width: 100%; height: 380px; }
            .about-split-content { width: 100%; }
        }

        /* CONTACT PAGE */
        .contact-split {
            display: flex;
            max-width: 1400px;
            margin: 0 auto;
            border: 1px solid var(--border-color);
            min-height: 650px;
        }
        .contact-left {
            width: 50%;
            background-color: var(--soft-mint);
            padding: 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid var(--border-color);
        }
        .contact-right {
            width: 50%;
            padding: 8%;
            background-color: var(--bg-primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        .form-group label {
            display: block;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            font-size: 1.05rem;
            color: var(--main-text);
            transition: border-color 0.3s;
        }
        .form-control:focus {
            border-bottom-color: var(--hover-accent);
        }
        textarea.form-control {
            height: 100px;
            resize: none;
        }

        .submit-btn {
            align-self: flex-start;
            background: var(--main-text);
            color: #FFFFFF;
            padding: 15px 45px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            cursor: pointer;
            border: 1px solid var(--main-text);
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        .submit-btn:hover {
            background: var(--hover-accent);
            color: var(--main-text);
            border-color: var(--border-color);
        }

        @media (max-width: 992px) {
            .contact-split { flex-direction: column; }
            .contact-left, .contact-right { width: 100%; padding: 40px 6%; }
            .contact-left { border-right: none; border-bottom: 1px solid var(--border-color); }
        }

        /* EDITORIAL LEGAL PAGES */
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.9;
        }
        .legal-container h2 {
            font-size: 2.2rem;
            text-transform: uppercase;
            margin: 40px 0 20px 0;
            font-weight: 400;
        }
        .legal-container p {
            margin-bottom: 20px;
            opacity: 0.9;
        }

        /* EDITORIAL SIDE DRAWERS (CART Overlay) */
        .cart-drawer-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(6,32,43,0.4);
            z-index: 2000;
            display: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .cart-drawer {
            position: fixed;
            top: 0; right: -450px; width: 450px; height: 100%;
            background-color: var(--bg-primary);
            border-left: 1px solid var(--border-color);
            z-index: 2001;
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @media (max-width: 576px) {
            .cart-drawer { width: 100%; right: -100%; }
        }
        .cart-drawer-overlay.open { display: block; opacity: 1; }
        .cart-drawer.open { right: 0; }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
            margin-bottom: 30px;
        }
        .cart-close {
            cursor: pointer;
            font-size: 1.5rem;
        }
        .cart-items-list {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 15px;
            border-bottom: 1px dashed rgba(6,32,43,0.2);
        }
        .cart-item-title {
            font-size: 1.1rem;
        }
        .cart-item-remove {
            cursor: pointer;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: red;
        }
        .cart-empty-state {
            text-align: center;
            font-style: italic;
            opacity: 0.6;
            margin-top: 40px;
        }

        /* FOOTER */
        footer {
            border-top: 1px solid var(--border-color);
            background-color: var(--bg-primary);
            padding: 80px 4% 40px 4%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 2fr 1fr;
            gap: 6%;
            margin-bottom: 60px;
        }

        .footer-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-top: 20px;
            opacity: 0.8;
            max-width: 320px;
        }

        .footer-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .newsletter-box {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }
        .inline-form-row {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            width: 100%;
        }
        .inline-form-row .form-group {
            margin-bottom: 0;
            flex: 1;
        }
        .footer-mini-btn {
            padding: 12px 25px;
            border: 1px solid var(--border-color);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }
        .footer-mini-btn:hover { background-color: var(--hover-accent); }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links-list a {
            font-size: 0.95rem;
            opacity: 0.8;
        }
        .footer-links-list a:hover {
            opacity: 1;
            padding-left: 5px;
            color: var(--hover-accent);
        }

        .social-row {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }
        .social-icon-btn {
            width: 38px;
            height: 38px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        .social-icon-btn:hover {
            background-color: var(--hover-accent);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        .footer-motto {
            font-style: italic;
        }

        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 100%; gap: 50px; }
            .inline-form-row { flex-direction: column; align-items: stretch; }
            .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
        }

        /* FLOATING TOAST */
        .editorial-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--main-text);
            color: #FFFFFF;
            padding: 20px 35px;
            border: 1px solid var(--border-color);
            z-index: 2500;
            display: none;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
