        /* CSS RESET & CUSTOM PROPERTIES */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --black: #000000;
            --white: #FFFFFF;
            --red: #D90000;
            --dark-blue: #1D2128;
            --font-inter: 'Inter', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            background-color: var(--black);
            font-family: var(--font-inter);
            overflow-x: hidden;
        }
        body {
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        button, input, textarea {
            font-family: inherit;
            background: none;
            border: none;
            color: inherit;
        }

        /* STRUCTURAL HEADER SYSTEM */
        header {
            position: relative;
            z-index: 1000;
            background: var(--black);
            width: 100%;
        }
        .top-black-header {
            background: var(--black);
            color: var(--white);
            padding: 40px 40px 100px 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
        }
        .logo-container .logo-text {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 0.9;
            text-transform: uppercase;
        }
        .logo-container .logo-sub {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            margin-top: 5px;
            display: block;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .contact-email {
            font-size: 12px;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0.8;
        }
        .social-circles {
            display: flex;
            gap: 10px;
        }
        .circle-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--red);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid transparent;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border 0.4s ease;
            cursor: pointer;
        }
        .circle-icon:hover {
            transform: scale(1.15);
            border: 1px solid var(--white);
        }

        /* CONTINUOUS MARQUEE SYSTEM */
        .marquee-container {
            position: absolute;
            bottom: 45px;
            right: 40px;
            width: 50%;
            overflow: hidden;
            white-space: nowrap;
        }
        .marquee-inner {
            display: inline-block;
            animation: marqueeContinuous 25s linear infinite;
        }
        .marquee-text {
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.7;
            padding-right: 20px;
        }
        @keyframes marqueeContinuous {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* LAYERED OVERLAPPING ARCHITECTURAL NAVIGATION */
        .white-nav-wrapper {
            position: absolute;
            left: 40px;
            right: 40px;
            bottom: -35px;
            background: var(--white);
            color: var(--black);
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            z-index: 1010;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .white-nav-wrapper.sticky {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: auto;
            margin: 0;
            height: 65px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            padding: 0 60px;
            z-index: 2000;
        }
        .nav-links {
            display: flex;
            height: 100%;
            align-items: center;
        }
        .nav-item {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 24px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        .nav-item .nav-label {
            position: relative;
            z-index: 2;
        }
        
        /* INFINITE VERTICAL REPEATING HOVER ANIMATION MECHANISM */
        .nav-item::before {
            content: '';
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--red);
            z-index: 1;
            transition: none;
        }
        .nav-item:hover {
            color: var(--white);
        }
        .nav-item:hover::before {
            animation: verticalBlockPass 1.2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
        }
        @keyframes verticalBlockPass {
            0% { bottom: -100%; top: auto; height: 100%; }
            45% { bottom: 0; top: auto; height: 100%; }
            55% { top: 0; bottom: auto; height: 100%; }
            100% { top: -100%; bottom: auto; height: 100%; }
        }

        /* NAVIGATION RIGHT SECTION */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }
        .search-input {
            width: 240px;
            height: 38px;
            border: 1px solid var(--black);
            border-radius: 20px;
            padding: 0 40px 0 20px;
            font-size: 11px;
            letter-spacing: 1px;
            color: var(--black);
            background: var(--white);
            outline: none;
            transition: all 0.3s ease;
        }
        .search-input:focus {
            width: 280px;
            border-color: var(--red);
        }
        .search-icon-btn {
            position: absolute;
            right: 15px;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--black);
            font-size: 13px;
        }
        .cart-icon-container {
            font-size: 18px;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
        }
        .cart-count {
            position: absolute;
            top: -7px;
            right: -10px;
            background: var(--red);
            color: var(--white);
            font-size: 9px;
            font-weight: 700;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* MOBILE MENU HAMBURGER BUTTON */
        .mobile-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 2010;
        }
        .mobile-hamburger span {
            width: 25px;
            height: 2px;
            background: var(--black);
            transition: all 0.3s ease;
        }

        /* SINGLE PAGE CONTAINER AND VIEW ARCHITECTURE */
        #view-engine-container {
            width: 100%;
            min-height: 80vh;
            position: relative;
        }
        .editorial-view {
            display: none;
            width: 100%;
            animation: viewFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .editorial-view.active-view {
            display: block;
        }
        @keyframes viewFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* PREMIUM EDITORIAL LAYOUT SECTIONS */
        /* HERO COMPOSITION */
        .hero-editorial {
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }
        .hero-editorial::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.4);
        }
        .hero-content-box {
            position: relative;
            z-index: 10;
            max-width: 900px;
        }
        .hero-title-large {
            font-size: 80px;
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -3px;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 30px;
            animation: textRevealUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-paragraph-editorial {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
            letter-spacing: 1px;
            color: var(--white);
            max-width: 600px;
            margin: 0 auto 40px auto;
        }
        .explore-editorial-btn {
            display: inline-block;
            padding: 14px 35px;
            border: 1px solid var(--white);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .explore-editorial-btn:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-3px);
        }

        /* SECTION 02: FOUR CIRCULAR CATEGORIES */
        .circular-categories-section {
            background: var(--black);
            color: var(--white);
            padding: 140px 60px;
            text-align: center;
        }
        .section-header-label {
            font-size: 11px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 50px;
            font-weight: 700;
            display: block;
        }
        .circles-row-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .circle-card-editorial {
            position: relative;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .circle-card-editorial .bg-img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.7s ease;
        }
        .circle-card-editorial .overlay-red-state {
            position: absolute;
            inset: 0;
            background: var(--red);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            z-index: 3;
        }
        .circle-card-editorial .static-title-box {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            background: rgba(0,0,0,0.2);
        }
        .circle-card-editorial h3 {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .circle-card-editorial:hover {
            transform: scale(1.03);
        }
        .circle-card-editorial:hover .bg-img {
            transform: scale(1.1);
        }
        .circle-card-editorial:hover .overlay-red-state {
            opacity: 1;
        }

        /* SECTION 03: FEATURED PRODUCTS */
        .featured-products-section {
            background: var(--dark-blue);
            color: var(--white);
            padding: 120px 40px;
        }
        .products-editorial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1600px;
            margin: 0 auto;
        }
        .product-card-editorial {
            background: transparent;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .prod-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #2b313a;
        }
        .prod-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .prod-info-block {
            padding: 25px 0;
            position: relative;
            transition: transform 0.4s ease;
        }
        .prod-num {
            font-size: 11px;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .prod-title {
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
            line-height: 1.2;
        }
        .prod-cat {
            font-size: 12px;
            opacity: 0.6;
            margin-bottom: 15px;
            font-weight: 300;
        }
        .prod-price {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .add-to-cart-editorial-btn {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            text-align: left;
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
            text-transform: uppercase;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .accent-hover-line {
            width: 0;
            height: 2px;
            background: var(--red);
            position: absolute;
            bottom: 0;
            left: 0;
            transition: width 0.4s ease;
        }
        .product-card-editorial:hover .prod-image-wrapper img {
            transform: scale(1.08);
        }
        .product-card-editorial:hover .prod-info-block {
            transform: translateY(-5px);
        }
        .product-card-editorial:hover .accent-hover-line {
            width: 100%;
        }
        .product-card-editorial:hover .add-to-cart-editorial-btn {
            background: var(--red);
            border-color: var(--red);
            color: var(--white);
        }

        /* SECTION 04: FIXED BACKGROUND STATEMENT */
        .fixed-statement-section {
            width: 100%;
            height: 270vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 40px;
        }
        .fixed-statement-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.65);
        }
        .statement-text-editorial {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            font-size: 36px;
            font-weight: 300;
            line-height: 1.5;
            letter-spacing: -0.5px;
            color: var(--white);
        }

        /* ASYMMETRICAL MULTI-PART LAYOUT ENGINES (NO GAPS) */
        .editorial-split-3part {
            display: flex;
            width: 100%;
            min-height: 600px;
            background: var(--black);
        }
        .split-panel {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
        }
        .split-panel.wider-60 { width: 50%; }
        .split-panel.equal-width { width: 25%; }
        .split-panel.width-40 { width: 35%; }
        .split-panel.width-30 { width: 30%; }
        .split-panel.width-20 { width: 20%; }
        
        .split-panel.bg-dark-editorial { background: #0b0c0e; color: var(--white); }
        .split-panel.bg-white-editorial { background: var(--white); color: var(--black); }
        .split-panel.bg-black-editorial { background: var(--black); color: var(--white); }
        .split-panel.bg-image-panel {
            background-size: cover;
            background-position: center;
            padding: 0;
        }

        .panel-statement-large {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
        }
        .panel-statement-sub {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--dark-blue);
            margin-top: 25px;
        }

        /* SECTION 09: FOUR SQUARE INTERLOCKING CARDS */
        .four-square-interlocking {
            display: flex;
            width: 100%;
            min-height: 450px;
        }
        .interlocking-card {
            width: 25%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 40px;
        }
        .interlocking-card.black-card { background: var(--black); color: var(--white); }
        .interlocking-card.red-card { background: var(--red); color: var(--white); }
        .interlocking-card h4 {
            font-size: 32px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
            text-transform: uppercase;
        }

        /* INNER PAGES CUSTOM STYLING SUB-ENGINES */
        .inner-page-hero-container {
            background: var(--black);
            padding: 160px 60px 80px 60px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .inner-hero-title {
            font-size: 72px;
            font-weight: 900;
            letter-spacing: -3px;
            text-transform: uppercase;
            line-height: 0.95;
            max-width: 1100px;
        }
        .inner-hero-desc {
            font-size: 15px;
            font-weight: 300;
            letter-spacing: 1px;
            margin-top: 30px;
            max-width: 600px;
            opacity: 0.7;
            line-height: 1.6;
        }
        
        /* SHOP FILTERS */
        .shop-filter-bar {
            display: flex;
            gap: 15px;
            padding: 40px 60px;
            background: #0b0c0e;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .filter-chip {
            padding: 10px 24px;
            border: 1px solid rgba(255,255,255,0.1);
            font-size: 11px;
            letter-spacing: 2px;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .filter-chip.active, .filter-chip:hover {
            background: var(--red);
            border-color: var(--red);
            color: var(--white);
        }

        /* DETAIL PAGE LAYOUT SPLIT */
        .product-detail-split-engine {
            display: flex;
            width: 100%;
            background: var(--black);
        }
        .detail-gallery-pane {
            width: 55%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .detail-main-img-wrap {
            width: 100%;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background: #111;
        }
        .detail-main-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .detail-info-pane {
            width: 45%;
            padding: 80px 60px;
            background: var(--dark-blue);
            position: sticky;
            top: 65px;
            height: calc(100vh - 65px);
            overflow-y: auto;
        }
        .detail-meta-lbl {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            font-weight: 700;
            margin-bottom: 15px;
        }
        .detail-main-title {
            font-size: 44px;
            font-weight: 900;
            letter-spacing: -1.5px;
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .detail-main-price {
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 35px;
        }
        .detail-editorial-desc {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.7;
            opacity: 0.8;
            margin-bottom: 40px;
        }
        .specs-table-editorial {
            width: 100%;
            margin-bottom: 45px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .specs-row {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 13px;
        }
        .specs-row span:first-child { opacity: 0.5; text-transform: uppercase; letter-spacing: 1px;}
        .detail-action-btn-red {
            width: 100%;
            background: var(--red);
            color: var(--white);
            padding: 20px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            cursor: pointer;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .detail-action-btn-red:hover {
            background: #b00000;
            transform: translateY(-2px);
        }

        /* JOURNAL SYSTEMS */
        .journal-magazine-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding: 60px;
            background: #0b0c0e;
        }
        .journal-card {
            display: flex;
            flex-direction: column;
        }
        .journal-img-wrap {
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            margin-bottom: 25px;
        }
        .journal-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .journal-card:hover .journal-img-wrap img {
            transform: scale(1.05);
        }
        .journal-cat-badge {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--red);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .journal-title {
            font-size: 22px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .journal-excerpt {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.7;
            margin-bottom: 20px;
        }
        .journal-read-link {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* CONTACT SYSTEM LAYOUT */
        .contact-layout-split {
            display: flex;
            width: 100%;
            background: var(--black);
        }
        .contact-form-pane {
            width: 50%;
            padding: 80px 60px;
            background: #0b0c0e;
        }
        .editorial-form-group {
            position: relative;
            margin-bottom: 45px;
        }
        .editorial-form-group input, .editorial-form-group textarea {
            width: 100%;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            padding: 15px 0;
            font-size: 14px;
            letter-spacing: 1px;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .editorial-form-group input:focus, .editorial-form-group textarea:focus {
            border-color: var(--red);
        }
        .editorial-form-group label {
            position: absolute;
            top: 15px;
            left: 0;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            opacity: 0.4;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .editorial-form-group input:focus ~ label, .editorial-form-group input:not(:placeholder-shown) ~ label,
        .editorial-form-group textarea:focus ~ label, .editorial-form-group textarea:not(:placeholder-shown) ~ label {
            top: -15px;
            font-size: 10px;
            color: var(--red);
            opacity: 1;
        }
        .contact-info-pane {
            width: 50%;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .info-block-item {
            margin-bottom: 40px;
        }
        .info-lbl {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .info-val-large {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: -0.5px;
        }

        /* TEXT / LEGAL COMPOSITIONS */
        .legal-editorial-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 100px 40px;
            color: rgba(255,255,255,0.85);
        }
        .legal-editorial-container h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            margin: 40px 0 20px 0;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        .legal-editorial-container p {
            font-size: 15px;
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 25px;
        }

        /* UN-SUBSCRIBE EXTRA HANDLED FORM */
        .unsubscribe-card-box {
            max-width: 500px;
            margin: 100px auto;
            background: var(--dark-blue);
            padding: 60px 40px;
            text-align: center;
            border-top: 4px solid var(--red);
        }

        /* MEGA FOOTER ARCHITECTURE */
        footer {
            background: var(--black);
            color: var(--white);
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .footer-primary-grid {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            gap: 50px;
            padding: 100px 60px;
        }
        .footer-brand-pane h2 {
            font-size: 40px;
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -1.5px;
            text-transform: uppercase;
            margin-bottom: 30px;
        }
        .footer-brand-pane p {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.6;
            max-width: 320px;
            opacity: 0.6;
        }
        .footer-col h3 {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 30px;
        }
        .footer-links-list {
            list-style: none;
        }
        .footer-links-list li {
            margin-bottom: 15px;
            font-size: 13px;
            font-weight: 400;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .footer-links-list li:hover {
            opacity: 1;
            color: var(--red);
            transform: translateX(4px);
        }
        
        /* FOOTER NEWSLETTER BLOCK WITH CLOUDFRONT EMBED INJECTOR */
        .footer-newsletter-section {
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .newsletter-text-box h4 {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1;
        }
        .newsletter-text-box p {
            font-size: 13px;
            font-weight: 300;
            opacity: 0.6;
            margin-top: 5px;
        }
        .newsletter-trigger-btn {
            background: var(--red);
            color: var(--white);
            padding: 15px 40px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .newsletter-trigger-btn:hover {
            background: #b00000;
        }

        /* EXTERNAL SUBSCRIPTION INJECTION DISPLAY MODAL OVERLAY */
        .subscribe-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .subscribe-modal-overlay.active-modal {
            display: flex;
        }
        .modal-content-card {
            background: var(--white);
            color: var(--black);
            width: 100%;
            max-width: 550px;
            padding: 50px 40px;
            position: relative;
        }
        .close-modal-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            font-weight: 300;
        }

        /* LARGE SOCIAL TEXT BAR */
        .footer-large-socials-bar {
            padding: 40px 60px;
            display: flex;
            gap: 40px;
            justify-content: center;
            background: #050505;
        }
        .large-social-link {
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 4px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }
        .large-social-link:hover {
            color: var(--red);
        }

        /* COPYRIGHT BAR EXPLICIT DIRECTIONS */
        .copyright-bottom-bar {
            background: var(--white);
            color: var(--black);
            padding: 25px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .copyright-links {
            display: flex;
            gap: 20px;
            text-transform: uppercase;
        }

        /* RESPONSIVE LAYOUT ENGINE CONVERTERS */
        @media (max-width: 1200px) {
            .circles-row-grid { grid-template-columns: repeat(2, 1fr); }
            .products-editorial-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-primary-grid { grid-template-columns: 1fr 1fr; }
            .hero-title-large { font-size: 60px; }
        }
        @media (max-width: 850px) {
            .editorial-split-3part { flex-direction: column; min-height: auto; }
            .split-panel { width: 100% !important; padding: 60px 40px; }
            .four-square-interlocking { flex-direction: column; }
            .interlocking-card { width: 100%; }
            .contact-layout-split { flex-direction: column; }
            .contact-form-pane, .contact-info-pane { width: 100%; }
            .product-detail-split-engine { flex-direction: column; }
            .detail-gallery-pane, .detail-info-pane { width: 100%; position: static; height: auto; }
            .journal-magazine-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 650px) {
            .top-black-header { flex-direction: column; gap: 20px; padding-bottom: 80px; }
            .marquee-container { width: 100%; right: 0; left: 20px; bottom: 20px; }
            .white-nav-wrapper { left: 10px; right: 10px; padding: 0 15px; }
            .nav-links {
                position: fixed;
                top: 65px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 65px);
                background: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 40px 0;
                transition: left 0.4s ease;
                box-shadow: 10px 0 30px rgba(0,0,0,0.1);
            }
            .nav-links.mobile-active { left: 0; }
            .nav-item { width: 100%; height: 50px; }
            .mobile-hamburger { display: flex; }
            .circles-row-grid { grid-template-columns: 1fr; }
            .products-editorial-grid { grid-template-columns: 1fr; }
            .hero-title-large { font-size: 40px; }
            .footer-primary-grid { grid-template-columns: 1fr; gap: 35px; padding: 60px 20px; }
            .copyright-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
            .search-input { width: 140px; }
            .search-input:focus { width: 170px; }
        }

        /* Three Equal Parts Grid */
.editorial-split-3part.grid-3-equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-height: 500px;
}

.editorial-split-3part.grid-3-equal .split-panel {
    position: relative;
    width: 100%;
    min-height: 500px;
}

/* Responsive */
@media (max-width: 850px) {
    .editorial-split-3part.grid-3-equal {
        grid-template-columns: 1fr;
    }
    .editorial-split-3part.grid-3-equal .split-panel {
        min-height: 350px;
    }
}
