        * { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --bg: #000;
            --surface: #050505;
            --surface-hover: #0a0a0a;
            --accent: #e60000;
            --accent-bright: #ff3030;
            --accent-dark: #860000;
            --text: #fff;
            --text-dim: #aaa;
            --border: #242424;
            --green: #27e36d;
        }

        html { scroll-behavior: smooth; scroll-padding-top: 122px; }

        body {
            min-height: 100vh;
            overflow-x: hidden;
            background: var(--bg);
            color: var(--text);
            font-family: Arial, Helvetica, sans-serif;
        }

        button, input, textarea, select { font: inherit; }
        a { color: inherit; }

        .hash-rain {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0.84;
        }

        .hash-col {
            position: absolute;
            top: -100%;
            width: 1.2em;
            color: var(--accent-bright);
            font-family: 'Courier New', monospace;
            line-height: 1.2;
            text-align: center;
            white-space: pre-line;
            animation: hash-fall var(--speed) linear infinite;
            animation-delay: var(--delay);
            text-shadow: 0 0 8px rgba(255, 0, 0, 0.92), 0 0 20px rgba(255, 0, 0, 0.58);
        }

        @keyframes hash-fall {
            0% { transform: translateY(-100%); opacity: 0; }
            10%, 90% { opacity: 0.96; }
            100% { transform: translateY(calc(100vh + 100%)); opacity: 0; }
        }

        @media (prefers-reduced-motion: reduce) {
            .hash-rain { display: none; }
            html { scroll-behavior: auto; }
        }

        .site-header {
            position: fixed;
            inset: 0 0 auto;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            padding: 12px clamp(18px, 4vw, 58px);
            border-bottom: 1px solid #000;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(12px);
        }

        .brand {
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 900;
            letter-spacing: 2px;
            text-decoration: none;
        }

        .brand span { color: var(--accent-bright); }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text-dim);
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
        }

        .nav-links a:hover { color: var(--text); }

        .order-button {
            min-width: 116px;
            padding: 10px 14px;
            border: 1px solid var(--accent);
            border-radius: 4px;
            background: transparent;
            color: var(--text);
            cursor: pointer;
            font-weight: 700;
        }

        .order-button:hover { background: rgba(230, 0, 0, 0.14); }

        .shipping-notice {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            z-index: 19;
            min-height: 36px;
            padding: 9px 18px;
            border-bottom: 1px solid #000;
            background: #090000;
            color: #eee;
            font-size: .76rem;
            font-weight: 600;
            line-height: 1.45;
            text-align: center;
        }

        .shipping-notice strong { color: var(--accent-bright); }

        .hero {
            position: relative;
            z-index: 2;
            isolation: isolate;
            display: flex;
            min-height: 88vh;
            min-height: 88dvh;
            align-items: center;
            overflow: hidden;
            padding: 154px clamp(22px, 6vw, 88px) 64px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -2;
            background-image: url('full-cwolf.png');
            background-color: #000;
            background-repeat: no-repeat;
            background-position: right calc(50% + 42px);
            background-size: auto 78%;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.58) 43%, rgba(0,0,0,.05) 78%);
        }

        .hero-copy { width: min(650px, 100%); }

        .eyebrow {
            margin-bottom: 14px;
            color: var(--accent-bright);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; }

        h1 {
            max-width: 620px;
            font-size: clamp(2.7rem, 7vw, 5.6rem);
            line-height: 0.98;
            letter-spacing: 0;
            text-shadow: 0 0 22px rgba(255,255,255,.22), 0 0 52px rgba(230,0,0,.6);
        }

        .hero-copy > p:not(.eyebrow) {
            max-width: 570px;
            margin: 24px 0 32px;
            color: #ccc;
            font-size: 1.05rem;
            line-height: 1.75;
        }

        .hero-copy > .primary-button { position: relative; top: clamp(48px, 7vh, 63px); }
        .hero-copy > p.hero-description { margin-top: clamp(104px, 13vh, 128px); }

        .primary-button, .secondary-button {
            display: inline-flex;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            padding: 13px 24px;
            border-radius: 4px;
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 700;
            letter-spacing: 1px;
            text-decoration: none;
            cursor: pointer;
        }

        .primary-button {
            border: 1px solid #ff2a2a;
            background: linear-gradient(135deg, #c43030, #7b1010);
            color: #fff;
        }

        .primary-button:hover { box-shadow: 0 8px 30px rgba(196, 48, 48, .42); }

        .secondary-button {
            border: 1px solid var(--border);
            background: #080808;
            color: var(--text);
        }

        main, footer { position: relative; z-index: 2; }

        section[id] { scroll-margin-top: 122px; }

        .catalog-band {
            padding: 70px clamp(18px, 5vw, 72px) 88px;
            border-top: 1px solid #000;
            background: rgba(0, 0, 0, .64);
        }

        .section-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            width: min(1240px, 100%);
            margin: 0 auto 28px;
        }

        .section-heading h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
        .section-heading p { max-width: 560px; color: var(--text-dim); line-height: 1.65; }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            width: min(1240px, 100%);
            margin: 0 auto 24px;
        }

        .filter-button {
            padding: 9px 14px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #060606;
            color: var(--text-dim);
            cursor: pointer;
        }

        .filter-button[aria-pressed="true"] {
            border-color: var(--accent);
            color: var(--text);
            background: rgba(230, 0, 0, .13);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            width: min(1240px, 100%);
            margin: 0 auto;
        }

        .product-card {
            display: flex;
            min-width: 0;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: var(--surface);
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-4px);
            border-color: #6c1717;
            background: var(--surface-hover);
        }

        .product-card[hidden],
        .product-card[data-available="false"] { display: none !important; }

        .product-card:focus-visible {
            outline: 2px solid var(--accent-bright);
            outline-offset: 3px;
        }

        .product-image {
            position: relative;
            aspect-ratio: 1 / .82;
            overflow: hidden;
            border-bottom: 1px solid #401010;
            background:
                radial-gradient(circle at 50% 46%, rgba(255, 28, 28, .24), rgba(0, 0, 0, .22) 34%, rgba(0, 0, 0, .76) 72%),
                linear-gradient(135deg, rgba(0, 0, 0, .76), rgba(70, 0, 0, .38)),
                url('wolf-matrix-hero.webp') center / cover no-repeat,
                #000;
            box-shadow: inset 0 0 38px rgba(255, 0, 0, .34), 0 0 22px rgba(255, 0, 0, .18);
        }

        .product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(0, 0, 0, .45) 100%);
        }

        .product-image img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
            margin: auto;
            object-fit: contain;
            object-position: center center;
            padding: 8px;
            background: transparent;
            filter: drop-shadow(0 0 20px rgba(255, 0, 0, .48)) drop-shadow(0 0 42px rgba(255, 0, 0, .28));
            transition: transform .35s ease;
        }

        .product-image.product-image-contain img {
            object-fit: contain;
            padding: 18px;
            background: transparent;
        }

        .product-card:hover .product-image img { transform: scale(1.035); }

        .product-image.avalon-gallery {
            display: grid;
            grid-template-columns: 1.35fr .65fr;
            gap: 1px;
            background:
                radial-gradient(circle at 50% 46%, rgba(255, 28, 28, .24), rgba(0, 0, 0, .22) 34%, rgba(0, 0, 0, .76) 72%),
                linear-gradient(135deg, rgba(0, 0, 0, .76), rgba(70, 0, 0, .38)),
                url('wolf-matrix-hero.webp') center / cover no-repeat,
                #000;
        }

        .product-image.avalon-gallery img {
            object-fit: contain;
            padding: 12px 7px;
            background: transparent;
        }

        .pack-label {
            position: absolute;
            z-index: 2;
            left: 10px;
            bottom: 10px;
            padding: 6px 9px;
            border: 1px solid rgba(255, 50, 50, .55);
            border-radius: 3px;
            background: rgba(0,0,0,.86);
            color: #fff;
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .product-grid-cta {
            width: min(1120px, 100%);
            margin: 42px auto 0;
            padding: 34px 18px 4px;
            text-align: center;
        }

        .product-grid-cta .eyebrow { margin-bottom: 18px; }

        .product-body {
            display: flex;
            flex: 1;
            flex-direction: column;
            padding: 18px;
        }

        .product-body h3 {
            min-height: 3.2em;
            font-size: 1rem;
            line-height: 1.55;
        }

        .spec-line {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            margin: 13px 0 0;
            padding-top: 12px;
            border-top: 1px solid #000;
            color: var(--text-dim);
            font-size: .78rem;
        }

        .spec-line strong { color: var(--text); }

        .description {
            flex: 1;
            margin: 14px 0;
            color: var(--text-dim);
            font-size: .84rem;
            line-height: 1.6;
        }

        .power-summary {
            margin: 0 0 14px;
            padding: 10px 11px;
            border-left: 2px solid var(--accent);
            background: #090909;
            color: #d8d8d8;
            font-size: .76rem;
            line-height: 1.5;
        }

        .power-rating {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--text-dim);
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .rating-track {
            flex: 1;
            height: 5px;
            overflow: hidden;
            border-radius: 2px;
            background: #242424;
        }

        .rating-track span {
            display: block;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, #8a1010, #ff3030);
        }

        .rating-track .rating-30 { width: 30%; }
        .rating-track .rating-40 { width: 40%; }
        .rating-track .rating-60 { width: 60%; }
        .rating-track .rating-70 { width: 70%; }
        .rating-track .rating-80 { width: 80%; }
        .rating-track .rating-90 { width: 90%; }
        .rating-track .rating-100 { width: 100%; }

        .price-row {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 13px;
        }

        .price {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .price-note { color: var(--text-dim); font-size: .65rem; }

        .card-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .add-button,
        .affiliate-button,
        .detail-button {
            min-height: 43px;
            padding: 8px;
            border-radius: 4px;
            font-size: .76rem;
            font-weight: 700;
            line-height: 1.25;
            text-align: center;
        }

        .add-button,
        .affiliate-button,
        .detail-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--accent);
            background: var(--accent-dark);
            color: #fff;
            cursor: pointer;
            text-decoration: none;
        }

        .detail-button {
            border-color: #454545;
            background: #0c0c0c;
        }

        .card-actions > :only-child { grid-column: 1 / -1; }

        .buying-guide,
        .shop-faq {
            padding: 72px clamp(18px, 5vw, 72px);
            border-top: 1px solid #000;
            background: rgba(0, 0, 0, .68);
        }

        .guide-inner,
        .faq-inner {
            width: min(1080px, 100%);
            margin: 0 auto;
        }

        .guide-inner h2,
        .faq-inner h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 3rem); }

        .guide-inner > p,
        .faq-inner > p { max-width: 780px; color: var(--text-dim); line-height: 1.75; }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: 28px;
            background: var(--border);
        }

        .benefit {
            padding: 24px;
            background: #050505;
        }

        .benefit h3 { margin-bottom: 10px; font-size: 1rem; }
        .benefit p { color: var(--text-dim); font-size: .84rem; line-height: 1.65; }

        .faq-list { display: grid; gap: 1px; margin-top: 28px; background: var(--border); }
        .faq-list details { padding: 20px 22px; background: #050505; }
        .faq-list summary { cursor: pointer; font-weight: 700; }
        .faq-list p { margin-top: 12px; color: var(--text-dim); line-height: 1.7; }

        .contact-band {
            padding: 78px clamp(18px, 5vw, 72px);
            border-top: 1px solid #000;
            background: #000;
        }

        .cross-site-cta {
            padding: 72px clamp(18px, 5vw, 72px);
            border-top: 1px solid #000;
            background: rgba(0, 0, 0, .68);
            text-align: center;
        }

        .cross-site-cta .eyebrow { margin-bottom: 22px; }

        .checkout-band {
            padding: 78px clamp(18px, 5vw, 72px);
            border-top: 1px solid #000;
            background: rgba(0, 0, 0, .68);
        }

        .checkout-layout {
            display: grid;
            grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
            gap: clamp(36px, 7vw, 90px);
            width: min(1080px, 100%);
            margin: 0 auto;
            align-items: start;
        }

        .checkout-copy h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 3rem); }
        .checkout-copy p, .checkout-copy li { color: var(--text-dim); line-height: 1.7; }
        .checkout-copy ol { margin: 18px 0 24px; padding-left: 20px; }
        .checkout-copy li + li { margin-top: 9px; }

        .network-warning {
            margin: 22px 0;
            padding: 16px;
            border: 1px solid #8f1515;
            border-left: 4px solid var(--accent-bright);
            background: rgba(20, 0, 0, .92);
            color: #fff;
            font-size: .82rem;
            line-height: 1.65;
        }

        .payment-address {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 8px;
            margin-top: 12px;
        }

        .payment-address code {
            min-width: 0;
            padding: 12px;
            border: 1px solid var(--border);
            background: #050505;
            color: #fff;
            overflow-wrap: anywhere;
            font-size: .72rem;
        }

        .copy-button {
            padding: 10px 14px;
            border: 1px solid var(--accent);
            border-radius: 4px;
            background: var(--accent-dark);
            color: #fff;
            cursor: pointer;
            font-weight: 700;
        }

        .checkout-form {
            display: grid;
            gap: 14px;
            padding: 24px;
            border: 1px solid var(--border);
            background: rgba(5, 5, 5, .94);
        }

        .discount-terms {
            margin-top: 22px;
            padding: 16px;
            border-left: 2px solid var(--accent);
            background: rgba(5, 5, 5, .94);
            color: var(--text-dim);
            font-size: .76rem;
            line-height: 1.65;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
            gap: clamp(36px, 7vw, 90px);
            width: min(1080px, 100%);
            margin: 0 auto;
            align-items: start;
        }

        .contact-copy h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 4vw, 3rem); }
        .contact-copy p { color: var(--text-dim); line-height: 1.75; }
        .contact-copy a { color: var(--accent-bright); }

        .contact-form { display: grid; gap: 14px; }
        .field { display: grid; gap: 7px; }
        .field label { color: #ddd; font-size: .8rem; font-weight: 600; }

        .field input, .field textarea, .field select {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 4px;
            outline: none;
            background: #000;
            color: #fff;
            padding: 13px 14px;
        }

        .field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
        .field textarea { min-height: 138px; resize: vertical; }
        .form-note { color: var(--text-dim); font-size: .72rem; line-height: 1.5; }

        footer {
            padding: 28px 20px;
            border-top: 1px solid #000;
            background: rgba(0, 0, 0, .74);
            color: var(--text-dim);
            text-align: center;
            font-size: .76rem;
            line-height: 1.7;
        }

        .footer-logo { margin-bottom: 12px; color: var(--accent-bright); font-family: Georgia, 'Times New Roman', serif; font-size: 1.1rem; font-weight: 700; }
        .footer-links, .legal-footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin: 14px 0; }
        .footer-links a, .legal-footer-links a { display: inline-flex; align-items: center; gap: 7px; color: #c8c8c8; text-decoration: none; }
        .footer-links a:hover, .legal-footer-links a:hover { color: #fff; }

        .drawer-backdrop {
            position: fixed;
            inset: 0;
            z-index: 40;
            display: none;
            background: rgba(0,0,0,.72);
        }

        .drawer-backdrop.open { display: block; }

        .order-drawer {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 41;
            width: min(440px, 100%);
            height: 100vh;
            padding: 24px;
            border-left: 1px solid var(--border);
            background: #050505;
            transform: translateX(105%);
            transition: transform .25s ease;
            overflow-y: auto;
        }

        .order-drawer.open { transform: translateX(0); }

        .drawer-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .icon-button {
            width: 42px;
            height: 42px;
            border: 1px solid var(--border);
            border-radius: 4px;
            background: #090909;
            color: #fff;
            cursor: pointer;
            font-size: 1.4rem;
        }

        .order-list { display: grid; gap: 10px; }

        .order-item {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 8px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .order-item strong { font-size: .85rem; line-height: 1.5; }
        .order-item span { color: var(--text-dim); font-size: .76rem; }

        .remove-button {
            border: 0;
            background: transparent;
            color: var(--accent-bright);
            cursor: pointer;
        }

        .empty-order { padding: 26px 0; color: var(--text-dim); text-align: center; }

        .drawer-total {
            display: flex;
            justify-content: space-between;
            margin: 24px 0 8px;
            font-family: Georgia, 'Times New Roman', serif;
            font-weight: 700;
        }

        .drawer-disclaimer { margin-bottom: 18px; color: var(--text-dim); font-size: .7rem; line-height: 1.5; }
        .drawer-actions { display: grid; gap: 8px; }

        .toast {
            position: fixed;
            left: 50%;
            bottom: 24px;
            z-index: 60;
            padding: 11px 16px;
            border: 1px solid var(--accent);
            border-radius: 4px;
            background: #070707;
            color: #fff;
            transform: translate(-50%, 140%);
            transition: transform .2s ease;
        }

        .toast.show { transform: translate(-50%, 0); }

        @media (max-width: 1040px) {
            .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .contact-layout, .checkout-layout { grid-template-columns: 1fr; }
        }

        @media (max-width: 680px) {
            html { scroll-padding-top: 152px; }
            .site-header { min-height: 64px; }
            .shipping-notice { top: 64px; }
            .brand { font-size: .86rem; }
            .nav-links a { display: none; }
            .order-button { min-width: 98px; font-size: .78rem; }
            .hero { min-height: 82vh; min-height: 82dvh; padding-top: 130px; align-items: end; }
            .hero-bg {
                background-position: 74% calc(50% + 36px);
                background-size: auto 64%;
            }
            .hero-bg::after { background: linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.52) 65%, rgba(0,0,0,.15) 100%); }
            h1 { max-width: 100%; font-size: 2.15rem; line-height: 1.08; overflow-wrap: anywhere; }
            .hero-copy > p:not(.eyebrow) { font-size: .92rem; line-height: 1.65; }
            .hero-copy > .primary-button { top: 34px; }
            .hero-copy > p.hero-description { margin-top: 68px; }
            .section-heading { display: block; }
            .section-heading h2 { font-size: 1.85rem; line-height: 1.15; overflow-wrap: anywhere; }
            .section-heading p { margin-top: 12px; }
            .product-grid { grid-template-columns: 1fr; }
            .benefit-grid { grid-template-columns: 1fr; }
            .product-body h3 { min-height: 0; }
            .contact-layout { grid-template-columns: minmax(0, 1fr); }
            .checkout-layout { grid-template-columns: minmax(0, 1fr); }
            .payment-address { grid-template-columns: 1fr; }
            section[id] { scroll-margin-top: 152px; }
        }
