:root {
    --crimazon-red: #e11919;
    --crimazon-red-dark: #950d0d;
    --crimazon-bg: #08090b;
    --crimazon-panel: #121418;
    --crimazon-panel-2: #191c22;
    --crimazon-border: rgba(225, 25, 25, .35);
    --crimazon-text-muted: #a7adb8;
}

* { box-sizing: border-box; }

body {
    background:
        radial-gradient(circle at 15% 10%, rgba(225, 25, 25, .12), transparent 30rem),
        radial-gradient(circle at 85% 25%, rgba(225, 25, 25, .08), transparent 28rem),
        var(--crimazon-bg);
    color: #f5f5f5;
}

a { color: #fff; text-decoration-color: rgba(225, 25, 25, .6); }
a:hover { color: #ff4d4d; }

.fw-black { font-weight: 900; letter-spacing: -.04em; }

.top-warning {
    background: linear-gradient(90deg, var(--crimazon-red-dark), var(--crimazon-red), var(--crimazon-red-dark));
    color: #fff;
    letter-spacing: .04em;
    box-shadow: 0 0 28px rgba(225, 25, 25, .35);
}

.site-header {
    background: rgba(6, 7, 9, .94);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.brand-logo {
    width: min(280px, 55vw);
    max-height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(225, 25, 25, .18));
}

.search-wrap .form-control,
.search-wrap .input-group-text {
    border-color: var(--crimazon-border);
}

.hero {
    background:
        linear-gradient(135deg, rgba(255,255,255,.03), transparent),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.018) 0 1px, transparent 1px 11px);
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--crimazon-border);
    border-radius: 1.25rem;
    background: #050505;
    box-shadow: 0 26px 70px rgba(0,0,0,.45), 0 0 42px rgba(225,25,25,.12);
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), inset 0 -90px 90px rgba(0,0,0,.12);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-card,
.remember-card,
.sidebar-card,
.product-card,
.cart-summary,
.safety-card,
.fake-specs {
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
    border: 1px solid var(--crimazon-border);
    border-radius: 1.25rem;
    box-shadow: 0 22px 50px rgba(0,0,0,.35);
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 85% 15%, rgba(225, 25, 25, .25), transparent 18rem);
    pointer-events: none;
}

.hero-card > * { position: relative; }

.hero-warning {
    background: rgba(225, 25, 25, .14);
    border: 1px dashed rgba(255,255,255,.32);
    border-radius: 1rem;
    color: #fff;
}

.eyebrow {
    color: #ff4d4d;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .8rem;
}

.checklist li,
.danger-list li {
    display: flex;
    gap: .75rem;
    padding: .45rem 0;
    color: #dbe0e8;
}

.checklist i { color: #5ff38c; margin-top: .2rem; }
.danger-list i { color: #ff4d4d; margin-top: .2rem; }

.fake-sticky { top: 7.25rem; }

.fake-categories .list-group-item {
    background: transparent;
    color: #d7dbe3;
    border-color: rgba(255,255,255,.08);
}

.fake-categories .list-group-item:hover,
.fake-categories .list-group-item.active {
    background: rgba(225, 25, 25, .18);
    color: #fff;
    border-color: var(--crimazon-border);
}

.product-card {
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 25, 25, .75);
    box-shadow: 0 28px 70px rgba(0,0,0,.45), 0 0 0 1px rgba(225,25,25,.16);
}

.product-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 190px;
    background: linear-gradient(135deg, #22262e, #0b0c0f);
    overflow: hidden;
}

.product-art-large { min-height: 460px; border-radius: 1.25rem; border: 1px solid var(--crimazon-border); }

.product-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.12), transparent 15rem),
        repeating-linear-gradient(-30deg, rgba(255,255,255,.03) 0 1px, transparent 1px 9px);
}

.product-art i {
    position: relative;
    font-size: clamp(4rem, 12vw, 8rem);
    color: rgba(255,255,255,.88);
    filter: drop-shadow(0 18px 25px rgba(0,0,0,.55));
}

.product-art-large i { font-size: clamp(8rem, 20vw, 16rem); }

.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transition: transform .18s ease;
}

.product-card:hover .product-img { transform: scale(1.035); }

.product-art-large .product-img {
    object-fit: contain;
    padding: 1rem;
    background: #050505;
}

.product-art:has(.product-img)::before { display: none; }
.product-art:has(.product-img) { background: #050505; }
.product-art .fiction-badge { z-index: 2; }

.fiction-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--crimazon-red);
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
}

.price {
    font-size: 1.2rem;
    font-weight: 900;
}

.stretched-link-ish {
    text-decoration: none;
}

.product-flour { background: linear-gradient(135deg, #4c4035, #15120f); }
.product-crowbar { background: linear-gradient(135deg, #242424, #101010); }
.product-finger-guns { background: linear-gradient(135deg, #3b2620, #0e0b0a); }
.product-crate { background: linear-gradient(135deg, #4a2d13, #110b07); }
.product-briefcase { background: linear-gradient(135deg, #2b2e34, #07080a); }
.product-docs { background: linear-gradient(135deg, #2f3440, #090a0d); }
.product-socks { background: linear-gradient(135deg, #303844, #090d12); }
.product-spray { background: linear-gradient(135deg, #203238, #071011); }
.product-duck { background: linear-gradient(135deg, #4a3d16, #120f05); }

.cart-list:empty::before {
    content: "Your fake cart is empty. Congratulations on making excellent choices.";
    display: block;
    color: var(--crimazon-text-muted);
    padding: 2rem;
    border: 1px dashed var(--crimazon-border);
    border-radius: 1rem;
    text-align: center;
}

.cart-item {
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cart-icon {
    width: 58px;
    height: 58px;
    border-radius: .75rem;
    display: grid;
    place-items: center;
    background: rgba(225,25,25,.18);
    color: #fff;
    flex: none;
}

.cart-thumb {
    width: 64px;
    height: 64px;
    border-radius: .75rem;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.12);
    flex: none;
    background: #050505;
}

.support-strip {
    background: linear-gradient(90deg, rgba(225,25,25,.15), rgba(0,0,0,.2));
}

.footer-warning {
    background:
        repeating-linear-gradient(-45deg, #111 0 12px, #1a1a1a 12px 24px),
        #090909;
    border-top: 4px solid var(--crimazon-red);
}

.parody-modal {
    background: #101217;
    box-shadow: 0 0 80px rgba(225, 25, 25, .25);
}

@media (max-width: 991.98px) {
    .hero-image-frame { border-radius: .85rem; }
    .site-header { position: static; }
    .brand-logo { width: 220px; }
    .product-art-large { min-height: 320px; }
}
