        /* --- GLOBAL DESIGN SYSTEM & VARIABLES --- */
        :root {
            --gold: #F4AE52;
            --soft-cream: #FFF7C5;
            --white: #FFFFFF;
            --accent-red: #D53E0F;
            --black: #000000;
            --editorial-brown: #4B2E2B;
            --strip-bg: #FBE8CE;
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --transition-fast: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Manrope", sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--white);
            color: var(--editorial-brown);
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
            position: relative;
        }

        a {
            text-transform: uppercase;
            text-decoration: none;
            color: inherit;
            letter-spacing: 0.1em;
            font-size: 0.85rem;
            transition: var(--transition-fast);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        /* --- UTILITIES & LAYOUT REFINEMENTS --- */
        .divider-thin {
            width: 100%;
            height: 1px;
            background-color: rgba(75, 46, 43, 0.15);
            margin: 2rem 0;
        }

        .gold-line {
            width: 100%;
            height: 1px;
            background-color: var(--gold);
        }

        .section-padding {
            padding: 8rem 4% 8rem 4%;
        }

        .btn-editorial {
            display: inline-block;
            background-color: var(--gold);
            color: var(--white);
            padding: 1rem 2.5rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-size: 0.8rem;
            border: none;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .btn-editorial:hover {
            background-color: var(--black);
            color: var(--white);
        }

        /* --- NAVIGATION & HEADER SYSTEM --- */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.02);
        }

        .top-header {
            background-color: var(--soft-cream);
            color: var(--gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.6rem 4%;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            border-bottom: 1px solid rgba(244, 174, 82, 0.2);
        }

        .top-header .left-meta, .top-header .right-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .top-header i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
        }

        .top-header .logo-placeholder {
            font-weight: 300;
            font-size: 1.1rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        .top-header .right-meta .icon-btn {
            cursor: pointer;
            position: relative;
            transition: var(--transition-fast);
        }
        .top-header .right-meta .icon-btn:hover {
            color: var(--accent-red);
        }

        .cart-badge {
            position: absolute;
            top: -7px;
            right: -10px;
            background-color: var(--accent-red);
            color: var(--white);
            font-size: 0.6rem;
            padding: 1px 5px;
            border-radius: 50%;
            font-weight: 700;
        }

        .main-header {
            background-color: var(--white);
            border-top: 1px solid var(--gold);
            border-bottom: 1px solid var(--gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 4%;
        }

        .main-header .contact-email {
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 0.05em;
        }

        .main-header .contact-email i {
            margin-right: 0.5rem;
            color: var(--gold);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-item {
            position: relative;
            font-weight: 500;
            padding: 0.5rem 0;
            cursor: pointer;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--gold);
            transition: var(--transition-smooth);
        }

        .nav-item:hover::after, .nav-item.active::after {
            width: 100%;
        }

        .nav-item:hover {
            color: var(--gold);
        }

        /* Dropdown Structure */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(15px);
            background-color: var(--white);
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 1100;
            border: 1px solid rgba(244, 174, 82, 0.2);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 1rem 1.5rem;
            font-size: 0.75rem;
            border-bottom: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition-fast);
        }

        .dropdown-item:hover {
            background-color: var(--gold);
            color: var(--editorial-brown);
            padding-left: 1.8rem;
        }

        /* Mobile Hamburger Custom Grid Toggle */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1200;
        }

        .hamburger span {
            width: 25px;
            height: 1px;
            background-color: var(--editorial-brown);
            transition: var(--transition-fast);
        }

        /* --- PAGES CONTAINMENT LAYER --- */
        .page-view {
            display: none;
        }

        .page-view.active-view {
            display: block;
        }

        /* --- HERO EDITORIAL SLIDESHOW --- */
        .hero-section {
            width: 100%;
            height: 90vh;
            position: relative;
            overflow: hidden;
            background-color: var(--black);
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: flex-end;
            padding: 6% 4%;
        }

        .hero-slide.active-slide {
            opacity: 1;
            visibility: visible;
        }

        .hero-slide .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            transform: scale(1);
        }

        .hero-slide.active-slide .slide-bg {
            animation: kenBurnsEffect 10s forwards linear;
        }

        @keyframes kenBurnsEffect {
            from { transform: scale(1); }
            to { transform: scale(1.08); }
        }

        .hero-slide .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
            z-index: 2;
        }

        /* Light image overlays require dark typography */
        .hero-slide.light-bg .slide-overlay {
            background: linear-gradient(to top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 60%);
        }

        .hero-content-wrapper {
            position: relative;
            z-index: 3;
            max-width: 60%;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
        }

        .hero-slide.active-slide .hero-content-wrapper {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-heading {
            font-size: 3.8rem;
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .hero-quote {
            font-size: 1rem;
            font-weight: 400;
            font-style: italic;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }

        /* Typography Variants based on brightness structural config */
        .hero-slide.white-text { color: var(--white); }
        .hero-slide.black-text { color: var(--black); }

        .hero-controls {
            position: absolute;
            bottom: 6%;
            right: 4%;
            z-index: 10;
            display: flex;
            gap: 1rem;
        }

        .ctrl-btn {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gold);
            background: transparent;
            color: var(--gold);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition-fast);
        }

        .ctrl-btn:hover {
            background-color: var(--gold);
            color: var(--white);
        }

        /* --- SECTION 2: SPLIT FEATURED COLLECTIONS --- */
        .split-collections {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-bottom: 1px solid var(--black);
            background-color: var(--white);
        }

        .collection-panel {
            display: flex;
            height: 400px;
            border-right: 1px solid var(--black);
            overflow: hidden;
            position: relative;
            transition: var(--transition-smooth);
        }

        .collection-panel:last-child {
            border-right: none;
        }

        .panel-left {
            width: 50%;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--white);
            z-index: 2;
            transition: var(--transition-smooth);
        }

        .panel-right {
            width: 50%;
            height: 100%;
            overflow: hidden;
        }

        .panel-left h3 {
            font-size: 1.6rem;
            font-weight: 300;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 0.5rem;
            transition: var(--transition-fast);
        }

        .panel-left p {
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            color: var(--gold);
        }

        .collection-panel:hover {
            transform: translateY(-5px);
        }

        .collection-panel:hover .panel-left h3 {
            color: var(--gold);
        }

        .collection-panel:hover .panel-right img {
            transform: scale(1.08);
        }

        /* Editorial Strip Overlay */
        .editorial-strip {
            background-color: var(--strip-bg);
            padding: 2.2rem 4%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            border-bottom: 1px solid rgba(75, 46, 43, 0.1);
        }

        .strip-item {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--black);
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
        }

        .strip-item i {
            color: var(--gold);
            font-size: 1rem;
        }

        /* --- SECTION 3: EDITORIAL PRODUCT GALLERY --- */
        .featured-products {
            background-color: var(--white);
            text-align: center;
        }

        .section-header-editorial {
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .section-header-editorial h2 {
            font-size: 2.8rem;
            font-weight: 200;
            text-transform: uppercase;
            color: var(--editorial-brown);
            letter-spacing: 0.05em;
        }

        .section-header-editorial p {
            font-size: 1rem;
            line-height: 1.8;
            font-style: italic;
            color: rgba(75, 46, 43, 0.8);
            margin: 1.5rem 0;
        }

        .product-grid-magazine {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem 2rem;
            padding-top: 1rem;
        }

        .product-card {
            background: transparent;
            text-align: left;
            position: relative;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
            padding: 1rem;
        }

        .product-image-frame {
            width: 100%;
            height: 380px;
            overflow: hidden;
            position: relative;
            margin-bottom: 1.5rem;
            background-color: #fcfcfc;
        }

        .wishlist-icon-btn {
            position: absolute;
            top: 15px;
            right: -50px;
            background: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--editorial-brown);
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: var(--transition-smooth);
            z-index: 10;
        }

        .wishlist-icon-btn:hover {
            color: var(--accent-red);
        }

        .add-to-cart-slide-btn {
            position: absolute;
            bottom: -60px;
            left: 0;
            width: 100%;
            background-color: var(--gold);
            color: var(--white);
            text-align: center;
            padding: 1.1rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: none;
        }

        .product-card:hover {
            border: 1px solid var(--gold);
            box-shadow: 0 15px 40px rgba(75, 46, 43, 0.04);
        }

        .product-card:hover .product-image-frame img {
            transform: scale(1.05);
        }

        .product-card:hover .add-to-cart-slide-btn {
            bottom: 0;
        }

        .product-card:hover .wishlist-icon-btn {
            right: 15px;
        }

        .product-meta h4 {
            font-size: 1.1rem;
            font-weight: 400;
            text-transform: uppercase;
            color: var(--editorial-brown);
            margin-bottom: 0.4rem;
            transition: var(--transition-fast);
        }

        .product-card:hover .product-meta h4 {
            color: var(--gold);
        }

        .product-meta .prod-desc {
            font-size: 0.8rem;
            color: #887270;
            margin-bottom: 0.6rem;
            line-height: 1.4;
        }

        .product-meta .prod-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--editorial-brown);
        }

        /* --- SECTION 4: CRAFTSMANSHIP PARALLAX ARTICLE --- */
        .craftsmanship-parallax {
            height: 80vh;
            background-image: url('https://i.pinimg.com/736x/60/90/61/6090619c1e015173ae191fc8f7cf8b88.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .glass-editorial-panel {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 5rem;
            max-width: 800px;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            max-height: 80%;
            overflow-y: auto;
        }

        .glass-editorial-panel h2 {
            font-size: 2.4rem;
            font-weight: 300;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .glass-editorial-panel blockquote {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .glass-editorial-panel p {
            font-size: 0.95rem;
            line-height: 1.9;
            color: var(--editorial-brown);
            text-align: justify;
        }

        /* --- SECTION 5: ASYMMETRICAL CATEGORIES --- */
        .asymmetric-categories {
            display: flex;
            gap: 4%;
            background-color: var(--white);
        }

        .asymmetric-left {
            width: 50%;
            height: 650px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .asymmetric-right {
            width: 46%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .category-stack-card {
            border-bottom: 1px solid rgba(75, 46, 43, 0.15);
            padding: 1.8rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .category-stack-card h3 {
            font-size: 2rem;
            font-weight: 200;
            text-transform: uppercase;
            transition: var(--transition-fast);
        }

        .category-stack-card .card-arrow {
            font-size: 1.2rem;
            transform: translateX(0);
            transition: var(--transition-smooth);
            color: var(--gold);
        }

        .category-stack-card:hover {
            padding-left: 1.5rem;
            border-bottom-color: var(--gold);
        }

        .category-stack-card:hover h3 {
            color: var(--gold);
            font-weight: 300;
        }

        .category-stack-card:hover .card-arrow {
            transform: translateX(15px);
        }

        /* --- SECTION 6: DRAGGABLE CUSTOMER STORIES --- */
        .customer-stories {
            background-color: #FFFDF2;
            overflow: hidden;
        }

        .story-slider-container {
            display: flex;
            gap: 2.5rem;
            cursor: grab;
            overflow-x: auto;
            padding: 2rem 0;
            scrollbar-width: none; /* Hide default bars */
        }

        .story-slider-container::-webkit-scrollbar {
            display: none;
        }

        .story-card {
            min-width: 400px;
            background-color: var(--white);
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(75, 46, 43, 0.02);
            border: 1px solid rgba(244, 174, 82, 0.15);
            transition: var(--transition-fast);
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(75, 46, 43, 0.05);
        }

        .story-profile {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .story-img-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .story-meta-info h5 {
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--editorial-brown);
        }

        .story-meta-info span {
            font-size: 0.75rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .story-card p {
            font-size: 0.95rem;
            line-height: 1.7;
            font-style: italic;
            color: rgba(75, 46, 43, 0.85);
        }

        /* --- SECTION 7: THE JOURNAL (BLOG OVERVIEW) --- */
        .journal-section {
            background-color: var(--white);
        }

        .journal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .journal-card {
            display: flex;
            flex-direction: column;
        }

        .journal-img-frame {
            height: 420px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .journal-card:hover .journal-img-frame img {
            transform: scale(1.05);
        }

        .journal-cat {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 0.6rem;
        }

        .journal-card h3 {
            font-size: 1.4rem;
            font-weight: 300;
            text-transform: uppercase;
            line-height: 1.3;
            margin-bottom: 0.8rem;
            color: var(--editorial-brown);
            transition: var(--transition-fast);
        }

        .journal-card:hover h3 {
            color: var(--gold);
        }

        .journal-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #725b59;
            margin-bottom: 1.2rem;
        }

        .journal-readmore {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            align-self: flex-start;
        }

        .journal-readmore::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--editorial-brown);
        }

        /* --- SECTION 8: SPLIT NEWSLETTER WITH DUAL SUB/UNSUB VALIDATION --- */
        .newsletter-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background-color: var(--strip-bg);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .news-left-editorial {
            padding: 6rem 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid rgba(75, 46, 43, 0.15);
        }

        .news-left-editorial h2 {
            font-size: 2.5rem;
            font-weight: 200;
            text-transform: uppercase;
            line-height: 1.2;
            color: var(--editorial-brown);
        }

        .news-right-forms {
            padding: 6rem 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 4rem;
        }

        .editorial-form-group {
            position: relative;
        }

        .editorial-form-group h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            color: var(--editorial-brown);
        }

        .form-row {
            display: flex;
            border-bottom: 1px solid var(--editorial-brown);
            padding-bottom: 0.5rem;
        }

        .form-row input[type="email"] {
            border: none;
            background: transparent;
            width: 100%;
            padding: 0.5rem 0;
            font-size: 1rem;
            color: var(--editorial-brown);
            outline: none;
        }

        .form-row input::placeholder {
            color: rgba(75, 46, 43, 0.4);
            font-style: italic;
        }

        .form-submit-arrow {
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--editorial-brown);
            font-size: 1.1rem;
            transition: var(--transition-fast);
        }

        .form-submit-arrow:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .msg-alert {
            font-size: 0.8rem;
            margin-top: 0.5rem;
            display: none;
            animation: fadeIn 0.4s forwards;
        }
        .msg-alert.success { color: #1e7e34; }
        .msg-alert.error { color: var(--accent-red); }

        /* --- BRIDGING INNER CONTENT PAGES --- */
        .inner-page-banner {
            background-color: var(--soft-cream);
            padding: 6rem 4%;
            text-align: center;
            border-bottom: 1px solid var(--gold);
        }

        .inner-page-banner h1 {
            font-size: 3.5rem;
            font-weight: 200;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--editorial-brown);
        }

        /* Shop Catalog Custom Grid Overlay */
        .shop-layout-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 3rem;
        }

        .shop-sidebar-filter h4 {
            font-size: 1rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 0.5rem;
        }

        .filter-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .filter-list li {
            font-size: 0.85rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .filter-list li:hover, .filter-list li.active-filter {
            color: var(--gold);
            padding-left: 5px;
        }

        /* FAQ Accordion Ecosystem */
        .faq-accordion-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            border-bottom: 1px solid rgba(75, 46, 43, 0.15);
            padding: 1.5rem 0;
        }

        .accordion-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 0;
        }

        .accordion-trigger h3 {
            font-size: 1.25rem;
            font-weight: 400;
            text-transform: uppercase;
            color: var(--editorial-brown);
        }

        .accordion-icon {
            font-size: 1.1rem;
            transition: transform 0.4s ease;
            color: var(--gold);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .accordion-content p {
            padding-top: 1rem;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(75, 46, 43, 0.8);
        }

        .accordion-item.open .accordion-icon {
            transform: rotate(45deg);
        }

        /* Contact Structure Grid Overlay */
        .contact-grid-magazine {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-details-panel {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .contact-block h4 {
            font-size: 1rem;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .contact-block p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .luxury-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .luxury-input-group {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid var(--editorial-brown);
        }

        .luxury-input-group label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(75, 46, 43, 0.6);
        }

        .luxury-input-group input, .luxury-input-group textarea {
            border: none;
            background: transparent;
            padding: 0.6rem 0;
            outline: none;
            font-size: 1rem;
            color: var(--editorial-brown);
        }

        /* --- THE EDITORIAL MODAL BASKETS (CART & SEARCH SYSTEMS) --- */
        .editorial-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(5px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .editorial-modal-backdrop.modal-open {
            opacity: 1;
            visibility: visible;
        }

        .side-drawer-panel {
            position: absolute;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background-color: var(--white);
            box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            transition: var(--transition-smooth);
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
        }

        .editorial-modal-backdrop.modal-open .side-drawer-panel {
            right: 0;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(75, 46, 43, 0.15);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }

        .drawer-header h3 {
            font-size: 1.4rem;
            text-transform: uppercase;
            font-weight: 300;
        }

        .drawer-close-btn {
            font-size: 1.4rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .drawer-close-btn:hover { color: var(--gold); }

        .drawer-scroll-content {
            flex-grow: 1;
            overflow-y: auto;
            margin-bottom: 2rem;
        }

        .cart-item-row {
            display: flex;
            gap: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1rem 0;
            align-items: center;
        }

        .cart-item-thumb {
            width: 70px;
            height: 70px;
            overflow: hidden;
        }

        .cart-item-details {
            flex-grow: 1;
        }

        .cart-item-details h5 {
            font-size: 0.9rem;
            text-transform: uppercase;
            font-weight: 500;
        }

        .cart-item-details p {
            font-size: 0.85rem;
            color: var(--gold);
            margin-top: 0.2rem;
        }

        .cart-remove-trigger {
            font-size: 0.8rem;
            color: rgba(0,0,0,0.3);
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .cart-remove-trigger:hover { color: var(--accent-red); }

        .drawer-footer-checkout {
            border-top: 1px solid rgba(75, 46, 43, 0.15);
            padding-top: 1.5rem;
        }

        .total-amount-box {
            display: flex;
            justify-content: space-between;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Search Overlay Configuration */
        .search-fullscreen-container {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 2500;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 10%;
        }

        .search-fullscreen-container.search-open {
            top: 0;
        }

        .search-input-wrapper {
            width: 100%;
            max-width: 800px;
            border-bottom: 2px solid var(--editorial-brown);
            display: flex;
            align-items: center;
            padding-bottom: 1rem;
        }

        .search-input-wrapper input {
            width: 100%;
            border: none;
            background: transparent;
            font-size: 2.5rem;
            font-weight: 200;
            text-transform: uppercase;
            outline: none;
            color: var(--editorial-brown);
        }

        .search-close-trigger {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }
        .search-close-trigger:hover { color: var(--gold); }

        .search-results-output {
            margin-top: 3rem;
            width: 100%;
            max-width: 800px;
            max-height: 40vh;
            overflow-y: auto;
            text-align: left;
        }

        /* --- PRESTIGIOUS FOOTER LAYOUT --- */
        footer {
            background-color: var(--black);
            color: var(--white);
            border-top: 1px solid var(--gold);
        }

        .footer-grid-top {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
            gap: 4rem;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--gold);
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        .footer-col p {
            font-size: 0.85rem;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links-list a {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
        }

        .footer-links-list a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

        .footer-bottom {
            padding: 2rem 4%;
            border-top: 1px solid rgba(244, 174, 82, 0.15);
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            color: rgba(255,255,255,0.4);
        }

        /* --- CSS CORE ANIMATIONS TRIGGER UTILITIES --- */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .animate-fade-in {
            animation: fadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        /* --- RESPONSIVE ADAPTATION MEDIA RULES --- */
        @media (max-width: 1100px) {
            .product-grid-magazine { grid-template-columns: repeat(2, 1fr); }
            .split-collections { grid-template-columns: 1fr; }
            .collection-panel { border-right: none; border-bottom: 1px solid var(--black); }
            .footer-grid-top { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .main-header .contact-email, .main-header .nav-menu { display: none; }
            .hamburger { display: flex; }
            
            /* Mobile Nav Active state toggle style drawer */
            .nav-menu.mobile-active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
                border-bottom: 1px solid var(--gold);
                gap: 1.5rem;
                z-index: 999;
            }

            .editorial-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .asymmetric-categories { flex-direction: column; }
            .asymmetric-left, .asymmetric-right { width: 100%; }
            .newsletter-split { grid-template-columns: 1fr; }
            .contact-grid-magazine { grid-template-columns: 1fr; }
            .side-drawer-panel { width: 100%; right: -100%; }
            .hero-heading { font-size: 2.2rem; }
            .hero-content-wrapper { max-width: 90%; }
            .footer-grid-top { grid-template-columns: 1fr; gap: 2rem; }
            .journal-grid { grid-template-columns: 1fr; }
        }
