/* No external font/CDN imports: keep everything local/system. */

:root {
    --brand-blue: #0d0d0d; /* brand dark base */
    --brand-orange: #ffc107; /* brand accent */
    --brand-blue-hover: #141414;
    --brand-orange-hover: #f9ab00;

    --bg-dark: #0a0a0a;
    --bg-panel: rgba(18, 20, 26, 0.96);
    --bg-panel-hover: rgba(24, 28, 36, 0.98);

    --text-main: #ffffff;
    --text-muted: #bcc6d9;

    --border-color: rgba(255, 193, 7, 0.18);
    --shadow-glow: 0 10px 30px rgba(255, 193, 7, 0.12);

    /* Alias tokens used across templates */
    --brand: var(--brand-blue);
    --brand-hover: var(--brand-blue-hover);
    --brand-rgb: 13, 13, 13;
    --brand-soft: rgba(var(--brand-rgb), 0.12);

    --accent: var(--brand-orange);
    --accent-hover: var(--brand-orange-hover);

    --bg: var(--bg-dark);
    --surface: var(--bg-panel);
    --surface-raised: var(--bg-panel-hover);
    --surface-hover: var(--surface-raised);

    --text: var(--text-main);
    --muted: var(--text-muted);

    --line: var(--border-color);
    --border: var(--border-color);

    --radius: 16px;
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;

    --shadow: 0 10px 24px rgba(0,0,0,0.45);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.55);

    /* Keep in palette: success/danger map to accent */
    --success: var(--accent);
    --danger: #ff2020;
}/* Generic page header blocks */
.page-header {
    background: var(--surface-hover);
    padding: 60px 0;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin: 28px 0 36px 0;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-header .kicker-new {
    color: var(--brand);
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(1200px 700px at 15% 10%, rgba(255, 193, 7, 0.16), rgba(0, 0, 0, 0) 60%),
        radial-gradient(900px 560px at 85% 20%, rgba(36, 116, 255, 0.12), rgba(0, 0, 0, 0) 55%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 1));
    background-attachment: fixed;
}h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: inherit;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.7);
}.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.site-logo span {
    color: var(--brand-orange);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: inherit;
    text-transform: uppercase;
    transition: color 0.2s, transform 0.2s;
}
.nav-links a:hover {
    color: var(--brand-orange);
    transform: translateY(-2px);
}

/* Current header markup (partials/header.php) */
.top-bar {
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid var(--line);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
}

.top-bar-usp {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.9rem;
}

.top-bar-links {
    font-size: 0.9rem;
    color: var(--muted);
}

.top-bar-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
}

.top-bar-links a:hover {
    color: var(--accent);
}

.header-main {
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo span {
    color: var(--accent);
}

.logo-img {
    display: block;
    height: 36px;
    width: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.search-wrapper {
    display: flex;
    flex: 1;
    max-width: 620px;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: 999px;
    overflow: hidden;
}.search-wrapper input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 10px 14px;
    background: transparent;
    color: #fff;
    font-weight: 700;
}

.search-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.search-wrapper button {
    border: 0;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    padding: 10px 16px;
    cursor: pointer;
}

.search-wrapper button:hover {
    background: var(--accent-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.action-item {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.action-item:hover {
    color: var(--accent);
}

.nav-bar {
    background: rgba(14, 14, 14, 0.9);
    border-bottom: 1px solid var(--line);
}.nav-bar .container {
    padding: 10px 0;
}

.nav-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.nav-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    padding: 8px 10px;
    border-radius: 10px;
}

.nav-bar a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.nav-bar a.active {
    background: rgba(255, 255, 255, 0.10);
    outline: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-bar a.highlight {
    color: #fff;
    background: rgba(255, 102, 0, 0.25);
    outline: 1px solid rgba(255, 102, 0, 0.35);
}

@media (max-width: 900px) {
    .header-main .container {
        flex-wrap: wrap;
    }

    .search-wrapper {
        order: 3;
        width: 100%;
        max-width: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 800;
    font-family: inherit;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
}
.btn-orange {
    background-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}
.btn-orange:hover {
    background-color: var(--brand-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.5);
}
.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

.btn-block {
    width: 100%;
}

.mt-16 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-40 {
    margin-top: 40px;
}

/* Reusable layout helpers */
.action-buttons-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.action-buttons-row form {
    margin: 0;
}

.action-buttons-row form:first-child {
    flex: 1;
}

/* Product page */
.product-page {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    margin: 14px 0 10px;
}

.product-gallery,
.product-buy {
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.product-gallery {
    padding: 16px;
}

.product-main-image {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.product-thumb {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.product-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.15s;
}
.product-thumb img:hover { opacity: 0.8; }
.product-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
}

.product-buy {
    padding: 16px;
}

.product-meta {
    color: var(--muted);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.product-title-h1 {
    margin: 8px 0 10px;
    font-size: 1.5rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 8px 0;
}

.product-price .old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 800;
}

.product-price .current {
    font-weight: 900;
    font-size: 1.7rem;
}

.product-subline {
    color: var(--muted);
    font-size: 0.95rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    margin: 14px 0 10px;
    font-weight: 800;
}

.product-buy-actions {
    margin-top: 12px;
}

.product-qty {
    width: 80px;
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.product-facts {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

@media (max-width: 920px) {
    .product-page {
        grid-template-columns: 1fr;
    }
    .product-thumb img {
        height: 76px;
    }
}

/* PDP refresh */
.pdp-shell {
    padding: 40px 0 80px;
}
.pdp-shell__inner {
    display: grid;
    gap: 28px;
}
.pdp-context {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px 22px;
}
.pdp-context__meta {
    display: grid;
    gap: 4px;
}
.pdp-context__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: #f6b990;
    font-weight: 900;
}
.pdp-context__title {
    font-size: 1.2rem;
    font-weight: 900;
}
.pdp-context__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.pdp-context__links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}
.pdp-context__links a:hover { color: #ffd7b5; }

.pdp-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 32px;
    align-items: start;
}
.pdp-showcase__media,
.pdp-purchase {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.pdp-showcase__media {
    padding: 18px;
    display: grid;
    gap: 16px;
}
.pdp-showcase__stage {
    display: grid;
    gap: 12px;
}
.pdp-showcase__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f6b990;
    font-weight: 900;
}
.pdp-showcase__main {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.pdp-showcase__main img {
    width: 100%;
    height: auto;
    display: block;
}
.pdp-showcase__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.pdp-showcase__thumb {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}
.pdp-showcase__thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}
.pdp-showcase__thumb:hover img { opacity: 0.85; }
.pdp-showcase__thumb.is-active {
    border-color: rgba(255, 102, 0, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.4);
}
.pdp-showcase__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.pdp-showcase__card {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
    display: grid;
    gap: 6px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}
.pdp-showcase__card strong {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.pdp-purchase {
    padding: 28px;
    display: grid;
    gap: 16px;
    position: sticky;
    top: 24px;
    align-self: start;
}
.pdp-purchase__meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}
.pdp-purchase__title {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.25;
}
.pdp-purchase__tier {
    display: grid;
    gap: 6px;
}
.pdp-tier {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 51, 153, 0.6);
    border: 1px solid rgba(0, 51, 153, 0.85);
}
.pdp-tier--entry { background: rgba(120, 120, 120, 0.5); border-color: rgba(180, 180, 180, 0.6); }
.pdp-tier--core { background: rgba(0, 51, 153, 0.6); border-color: rgba(0, 51, 153, 0.85); }
.pdp-tier--boost { background: rgba(0, 120, 180, 0.6); border-color: rgba(0, 120, 180, 0.85); }
.pdp-tier--ultra { background: rgba(255, 102, 0, 0.45); border-color: rgba(255, 102, 0, 0.85); }
.pdp-tier--elite { background: rgba(140, 80, 220, 0.5); border-color: rgba(140, 80, 220, 0.8); }
.pdp-tier__summary {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}
.pdp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.pdp-price__old {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 800;
}
.pdp-price__current {
    font-size: 2rem;
    font-weight: 900;
}
.pdp-price__note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.pdp-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
}
.pdp-link:hover { color: #ffd7b5; }

.pdp-availability {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 800;
    font-size: 0.85rem;
}
.pdp-availability.is-available {
    color: #c9f7de;
    border-color: rgba(0, 180, 100, 0.5);
}
.pdp-availability.is-unavailable {
    color: #f3c3c3;
    border-color: rgba(255, 120, 120, 0.5);
}
.pdp-purchase__actions {
    display: grid;
    gap: 10px;
}
.pdp-purchase__cta-row {
    display: flex;
    gap: 12px;
}
.pdp-qty {
    width: 80px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}
.pdp-cta {
    flex: 1;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 900;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}
.pdp-cta[disabled] {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}
.pdp-ghost {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 10px 12px;
    font-weight: 900;
    cursor: pointer;
}
.pdp-upgrade {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.12);
    border: 1px solid rgba(255, 102, 0, 0.35);
}
.pdp-upgrade__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 900;
    color: #f6b990;
}
.pdp-upgrade p { margin: 8px 0 0; }

.pdp-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}
.pdp-section__header h2 { margin: 0; }
.pdp-section__header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
}

.pdp-performance-board__grid,
.pdp-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.pdp-performance-card,
.pdp-trust__card {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}
.pdp-performance-card__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 900;
    margin-bottom: 8px;
}
.pdp-performance-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}
.pdp-trust__card h3 { margin-top: 0; }

.pdp-specs-board__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
    margin-top: 18px;
}
.pdp-specs-board__matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.pdp-specs-board__panel {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}
.pdp-specs-board__panel--wide {
    grid-column: 1 / -1;
}
.pdp-richtext {
    display: grid;
    gap: 12px;
}
.pdp-richtext h4 {
    margin: 8px 0 0;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}
.pdp-richtext p {
    margin: 0;
    color: #dbe3ef;
    line-height: 1.75;
}
.pdp-specs-card {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 6px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}
.pdp-specs-card strong {
    text-transform: none;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0;
}
.pdp-specs-board__aside {
    display: grid;
    gap: 16px;
}
.pdp-specs-stack {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
}
.pdp-specs-stack h3 {
    margin-top: 0;
}
.pdp-specs-stack ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 8px;
}
.pdp-specs-stack li {
    color: rgba(255, 255, 255, 0.75);
}
.pdp-specs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.pdp-specs-tags span {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.pdp-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}
.pdp-related__card {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: auto 1fr;
}
.pdp-related__media {
    display: block;
    background: rgba(0, 0, 0, 0.35);
}
.pdp-related__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.pdp-related__body {
    padding: 16px;
    display: grid;
    gap: 10px;
}
.pdp-related__meta {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}
.pdp-related__title {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}
.pdp-related__title:hover { color: var(--accent); }
.pdp-related__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.pdp-related__price {
    font-weight: 900;
    font-size: 1.05rem;
}
.pdp-related__cta {
    border: 0;
    border-radius: 10px;
    padding: 8px 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.pdp-related__cta[disabled] {
    background: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.header-main--pdp { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.nav-bar--pdp { margin-bottom: 0; }
.footer-main--pdp { margin-top: 30px; }

@media (max-width: 1024px) {
    .pdp-showcase {
        grid-template-columns: 1fr;
    }
    .pdp-specs-board__layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .pdp-context { padding: 16px; }
    .pdp-purchase__cta-row { flex-direction: column; }
    .pdp-qty { width: 100%; }
    .pdp-showcase__thumb img { height: 76px; }
}

/* Hero */
.hero-banner {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    background-image: 
        linear-gradient(90deg, rgba(0,51,153,0.9) 30%, rgba(0,0,0,0.5) 100%),
        url('/assets/img/home-handheld-closeup.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 60px;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border-color);
}
.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}
.hero-label {
    background: var(--brand-orange);
    color: #fff;
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-title {
    font-size: 3.5rem;
    margin: 20px 0;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
}
.hero-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Home hero */
.home-hero {
    margin: 40px 0;
    padding: 70px 60px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(10, 16, 30, 0.98) 0%, rgba(9, 12, 22, 0.98) 55%, rgba(9, 20, 40, 0.98) 100%);
    border: 1px solid rgba(255, 102, 0, 0.16);
    box-shadow: var(--shadow-lg);
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px 260px at 80% 20%, rgba(255, 102, 0, 0.18), transparent 60%),
        radial-gradient(420px 280px at 15% 80%, rgba(0, 51, 153, 0.35), transparent 60%);
    opacity: 0.9;
}
.home-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    box-shadow: 0 0 60px rgba(255, 102, 0, 0.2);
}
.home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 36px;
}
.home-hero__content {
    max-width: 640px;
}
.home-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.12);
    color: #ffd3b4;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 102, 0, 0.35);
}
.home-hero__title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin: 18px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.home-hero__lead {
    font-size: 1.15rem;
    color: #d5d9e6;
    margin: 0;
    line-height: 1.7;
    max-width: 560px;
}
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.home-hero__signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.home-hero__signal {
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 102, 0, 0.12);
}
.home-hero__signal-title {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f3b28a;
    margin-bottom: 6px;
}
.home-hero__signal-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

/* Home sections */
.home-section {
    padding: 28px 0;
    position: relative;
}
.home-stack {
    display: grid;
    gap: 28px;
}
.home-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.home-section__kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f7bc95;
}
.home-section__title {
    margin: 8px 0 0;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.15;
}
.home-section__link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}
.home-section__link:hover {
    text-decoration: underline;
}
.home-section.home-featured,
.home-section.home-promos,
.home-section.home-guides,
.home-section.home-upgrade,
.home-section.home-service {
    border-radius: 24px;
    padding: 36px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(140deg, rgba(14, 18, 28, 0.84), rgba(8, 10, 18, 0.97));
    box-shadow: var(--shadow);
}
.home-section.home-featured {
    border-color: rgba(255, 102, 0, 0.16);
    background: linear-gradient(140deg, rgba(24, 16, 10, 0.82), rgba(8, 10, 18, 0.98));
}
.home-section.home-promos {
    border-color: rgba(0, 153, 204, 0.2);
    background: linear-gradient(140deg, rgba(10, 20, 34, 0.86), rgba(6, 10, 18, 0.98));
}
.home-section.home-guides {
    border-color: rgba(140, 80, 220, 0.2);
    background: linear-gradient(140deg, rgba(20, 12, 32, 0.82), rgba(8, 10, 18, 0.98));
}
.home-section.home-upgrade {
    border-color: rgba(255, 102, 0, 0.2);
    background: linear-gradient(140deg, rgba(24, 14, 8, 0.86), rgba(8, 10, 18, 0.98));
}
.home-section.home-service {
    border-color: rgba(0, 51, 153, 0.2);
    background: linear-gradient(140deg, rgba(10, 18, 32, 0.86), rgba(8, 10, 18, 0.98));
}
.home-grid {
    display: grid;
    gap: 20px;
}
.home-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-card,
.home-feature-card,
.home-service-card,
.home-article,
.home-promo {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    color: var(--text);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.home-card:hover,
.home-feature-card:hover,
.home-service-card:hover,
.home-article:hover,
.home-promo:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.35);
}
.home-card h3,
.home-feature-card h3,
.home-service-card h3,
.home-article h3,
.home-promo h3 {
    margin-top: 10px;
}
.home-card__cta {
    display: inline-flex;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 700;
}
.home-feature-card__tier {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 51, 153, 0.4);
    color: #dbe9ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.home-feature-card__meta {
    color: var(--muted);
    margin-top: 10px;
}
.home-promo {
    background: linear-gradient(140deg, rgba(0, 51, 153, 0.35), rgba(10, 12, 20, 0.85));
    border-color: rgba(0, 51, 153, 0.35);
}
.home-promo--accent {
    background: linear-gradient(140deg, rgba(255, 102, 0, 0.25), rgba(12, 12, 18, 0.85));
    border-color: rgba(255, 102, 0, 0.4);
}
.home-promo__tag,
.home-article__tag {
    display: inline-flex;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f6c8a2;
}

/* Service rail section */
.home-service__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.home-service__intro {
    background: linear-gradient(150deg, rgba(0, 51, 153, 0.25), rgba(10, 12, 20, 0.95));
    border: 1px solid rgba(0, 51, 153, 0.35);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: var(--shadow);
}

.home-service__title {
    margin: 10px 0 12px;
    font-size: 2rem;
    text-transform: uppercase;
}

.home-service__lead {
    color: #c9d4e8;
    line-height: 1.7;
    margin: 0 0 18px;
}

.home-service__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-service__links a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
}

.home-service__links a:hover {
    color: #ffd7b5;
}

.home-service__rail {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    position: relative;
}

.home-service__rail::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.65), rgba(0, 51, 153, 0.6));
}

.service-rail__step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(10, 12, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    position: relative;
}

.service-rail__badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 102, 0, 0.18);
    border: 1px solid rgba(255, 102, 0, 0.5);
    color: #ffd1ad;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-rail__body h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.service-rail__body p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.6;
}

.service-rail__cta {
    text-decoration: none;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
}

.service-rail__cta:hover {
    color: #ffd7b5;
}

@media (max-width: 900px) {
    .home-service__inner {
        grid-template-columns: 1fr;
    }

    .home-service__rail::before {
        display: none;
    }
}

/* Editorial guides section */
.home-guides__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.home-guides__feature {
    border-radius: 20px;
    padding: 30px;
    background: linear-gradient(150deg, rgba(8, 16, 32, 0.95), rgba(12, 10, 20, 0.85));
    border: 1px solid rgba(255, 102, 0, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-guides__feature::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.25), transparent 70%);
}

.home-guides__feature h2 {
    margin: 12px 0 12px;
    font-size: 2.1rem;
    text-transform: uppercase;
}

.home-guides__feature p {
    color: #c5cedd;
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.home-guides__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 22px;
}

.home-guides__tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: #f3d0b4;
    background: rgba(255, 255, 255, 0.06);
}

.home-guides__cta {
    display: inline-flex;
    text-decoration: none;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.home-guides__cta:hover {
    color: #ffd7b5;
}

.home-guides__list {
    display: grid;
    gap: 14px;
}

.guide-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: rgba(10, 12, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.35);
}

.guide-card__thumb {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #fff;
    background: linear-gradient(140deg, rgba(0, 51, 153, 0.75), rgba(10, 12, 20, 0.8));
    border: 1px solid rgba(0, 51, 153, 0.45);
    flex-shrink: 0;
}

.guide-card__thumb--cool {
    background: linear-gradient(140deg, rgba(0, 180, 220, 0.55), rgba(6, 12, 24, 0.9));
    border-color: rgba(0, 180, 220, 0.4);
}

.guide-card__thumb--upgrade {
    background: linear-gradient(140deg, rgba(140, 80, 220, 0.55), rgba(8, 10, 20, 0.9));
    border-color: rgba(140, 80, 220, 0.45);
}

.guide-card__tag {
    display: inline-flex;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f2b98f;
    font-weight: 800;
}

.guide-card h3 {
    margin: 8px 0 10px;
    font-size: 1rem;
}

.guide-card__cta {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--accent);
}

@media (max-width: 980px) {
    .home-guides__inner {
        grid-template-columns: 1fr;
    }

    .home-guides__feature::after {
        right: -120px;
        top: -90px;
    }
}

@media (max-width: 640px) {
    .guide-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .guide-card__thumb {
        width: 56px;
        height: 56px;
    }
}

/* Upgrade / trade-in CTA */
.home-upgrade__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    padding: 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(20, 10, 32, 0.95), rgba(10, 12, 20, 0.95));
    border: 1px solid rgba(140, 80, 220, 0.35);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-upgrade__panel::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -160px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 80, 220, 0.25), transparent 70%);
}

.home-upgrade__content {
    position: relative;
    z-index: 1;
}

.home-upgrade__kicker {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(140, 80, 220, 0.2);
    border: 1px solid rgba(140, 80, 220, 0.45);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    color: #e1c9ff;
}

.home-upgrade__content h2 {
    margin: 16px 0 12px;
    font-size: 2rem;
    text-transform: uppercase;
}

.home-upgrade__content p {
    color: #c9c2de;
    line-height: 1.7;
    margin: 0 0 18px;
}

.home-upgrade__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.home-upgrade__bullets li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.6;
}

.home-upgrade__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
}

.home-upgrade__aside {
    position: relative;
    z-index: 1;
}

.home-upgrade__card {
    background: rgba(8, 10, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 24px;
    display: grid;
    gap: 12px;
    box-shadow: var(--shadow);
}

.home-upgrade__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f2c3ff;
    font-weight: 900;
}

.home-upgrade__card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.home-upgrade__card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.home-upgrade__actions {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.home-upgrade__actions .btn {
    width: 100%;
}

@media (max-width: 960px) {
    .home-upgrade__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-upgrade__panel {
        padding: 26px;
    }
}

/* New merchandising shortcut tiles */
.home-shortcuts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.shortcut-tile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: var(--text);
    background: linear-gradient(140deg, rgba(14, 20, 36, 0.95), rgba(8, 10, 18, 0.95));
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.shortcut-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: var(--shadow-lg);
}

.shortcut-tile__badge {
    display: inline-flex;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.12);
    border: 1px solid rgba(255, 102, 0, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #ffd7b5;
}

.shortcut-tile h3 {
    margin: 0;
    font-size: 1.2rem;
}

.shortcut-tile p {
    margin: 0;
    color: #dbe3ef;
    line-height: 1.7;
    font-size: 0.98rem;
}

.shortcut-tile__cta {
    margin-top: auto;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.shortcut-tile--ship {
    background: linear-gradient(140deg, rgba(5, 22, 34, 0.98), rgba(4, 10, 20, 0.98));
    border-color: rgba(0, 153, 204, 0.35);
}

.shortcut-tile--ship .shortcut-tile__badge {
    background: rgba(0, 153, 204, 0.16);
    border-color: rgba(0, 153, 204, 0.5);
    color: #a9e7ff;
}

.shortcut-tile--deal {
    background: linear-gradient(140deg, rgba(32, 16, 6, 0.98), rgba(12, 10, 18, 0.98));
    border-color: rgba(255, 102, 0, 0.5);
}

.shortcut-tile--upgrade {
    background: linear-gradient(140deg, rgba(20, 10, 32, 0.98), rgba(10, 10, 18, 0.98));
    border-color: rgba(140, 80, 220, 0.45);
}

.shortcut-tile--upgrade .shortcut-tile__badge {
    background: rgba(140, 80, 220, 0.18);
    border-color: rgba(140, 80, 220, 0.5);
    color: #d9baff;
}

/* Featured build cards */
.build-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.build-card {
    background: rgba(10, 12, 20, 0.92);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.build-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.45);
}

.build-card__media {
    position: relative;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.build-card__media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.build-card:hover .build-card__media img {
    transform: scale(1.06);
}

.build-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.build-card__badge--muted {
    background: rgba(255, 255, 255, 0.18);
    color: #e3e6f5;
}

.build-card__body {
    padding: 22px;
    display: grid;
    gap: 12px;
    height: 100%;
    align-content: start;
}

.build-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f0b385;
    font-weight: 700;
}

.build-card__title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.build-card__title a {
    color: #fff;
    text-decoration: none;
}

.build-card__title a:hover {
    color: var(--accent);
}

.build-card__highlight {
    margin: 0;
    color: #dbe3ef;
    line-height: 1.7;
    font-size: 0.98rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.build-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.build-card__price {
    font-size: 1.35rem;
    font-weight: 900;
}

.build-card__old {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: line-through;
}

.build-card__actions {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
}

/* Promo panels */
.home-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promo-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.promo-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.4);
}

.promo-panel h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
}

.promo-panel__tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ffd2aa;
}

.promo-panel p {
    margin: 0;
    color: #dbe3ef;
    line-height: 1.7;
    font-size: 0.98rem;
}

.promo-panel__list {
    display: grid;
    gap: 8px;
    margin-top: 4px;
}

.promo-panel__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: #eef2ff;
    gap: 12px;
}

.promo-panel__cta {
    margin-top: auto;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    color: var(--accent);
}

.promo-panel__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.promo-panel__pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #d6d9f2;
}

.promo-panel--bundle {
    background: linear-gradient(140deg, rgba(20, 10, 8, 0.98), rgba(8, 8, 16, 0.98));
    border-color: rgba(255, 102, 0, 0.4);
}

.promo-panel--rush {
    background: linear-gradient(140deg, rgba(4, 16, 28, 0.98), rgba(8, 10, 18, 0.98));
    border-color: rgba(0, 153, 204, 0.35);
}

.promo-panel--upgrade {
    background: linear-gradient(140deg, rgba(22, 8, 34, 0.98), rgba(8, 8, 16, 0.98));
    border-color: rgba(140, 80, 220, 0.4);
}

.promo-panel--rush .promo-panel__tag {
    color: #9fe6ff;
}

.promo-panel--upgrade .promo-panel__tag {
    color: #d9baff;
}

@media (max-width: 1100px) {
    .home-shortcuts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .build-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-promos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .home-shortcuts__grid,
    .build-grid,
    .home-promos__grid {
        grid-template-columns: 1fr;
    }

    .build-card__media img {
        height: 170px;
    }

    .build-card__actions {
        grid-template-columns: 1fr;
    }
}
.home-upgrade-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 32px;
    border-radius: 20px;
    background: linear-gradient(120deg, rgba(15, 24, 40, 0.95), rgba(15, 16, 20, 0.95));
    border: 1px solid rgba(255, 102, 0, 0.25);
    box-shadow: var(--shadow-lg);
}
.home-upgrade-cta__kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #f2a774;
    margin-bottom: 12px;
}
.home-upgrade-cta__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Sections */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 60px 0 30px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-blue);
}
.section-title {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}
.section-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: inherit;
}
.section-link:hover {
    text-decoration: underline;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
    background: var(--bg-panel-hover);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-orange);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 2;
    text-transform: uppercase;
}
.product-badge.new {
    background: var(--brand-blue);
}
.product-img-wrap {
    height: 220px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
    border-radius: 8px;
}
.product-card:hover .product-img {
    transform: scale(1.1);
}
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-category {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    height: calc(0.8rem * 1.4 * 2);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-name {
    font-size: 1.15rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: inherit;
    height: calc(1.15rem * 1.4 * 2);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-name:hover {
    color: var(--brand-orange);
}
.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.price-box {
    display: flex;
    flex-direction: column;
}
.price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-current {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-orange);
    font-family: inherit;
}
.btn-cart {
    background: var(--brand-blue);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cart:hover {
    background: var(--brand-orange);
    transform: scale(1.1);
}

/* Category Promos */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}
.promo-banner {
    height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.promo-banner--ps4-pro2 {
    background-image: url('/img/ps4_pro2.webp');
}

.promo-banner--hollow-knight {
    background-image: url('/img/hollow_knight.jpg');
}
.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--brand-blue);
}
.promo-banner::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}
.promo-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}
.promo-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
.promo-text {
    color: #d0d0d0;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Info / SEO Section */
.info-panel {
    position: relative;
    background: linear-gradient(135deg, rgba(var(--brand-rgb),0.08) 0%, rgba(15,23,42,0.95) 60%);
    border: 1px solid rgba(var(--brand-rgb),0.30);
    border-radius: 20px;
    padding: 56px 60px;
    margin: 60px 0;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(var(--brand-rgb),0.08), 0 4px 32px rgba(0,0,0,0.4);
}
.info-panel::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--brand-rgb),0.14) 0%, transparent 70%);
    pointer-events: none;
}
.info-panel h2 {
    position: relative;
    color: var(--brand-orange);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 22px;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff9d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.info-panel h2::after {
    content: '';
    display: block;
    margin-top: 18px;
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}
.info-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
}
.info-content h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-top: 36px;
    font-weight: 700;
}
.info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}
.feature-card {
    background: rgba(0,0,0,0.35);
    padding: 28px 20px;
    border-radius: 14px;
    border: 1px solid rgba(var(--brand-rgb),0.20);
    text-align: center;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover {
    border-color: rgba(var(--brand-rgb),0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(var(--brand-rgb),0.15);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(var(--brand-rgb),0.15);
    border: 1.5px solid rgba(var(--brand-rgb),0.45);
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 16px;
    box-shadow: 0 0 18px rgba(var(--brand-rgb),0.25);
}
.feature-title {
    font-size: 1.05rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Homepage: extra sections after product blocks */
.home-section {
    margin: 32px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.benefit-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.benefit-kicker {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.benefit-title {
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.benefit-text {
    margin: 0;
    color: #cfcfcf;
    line-height: 1.6;
}

.benefit-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 800;
}

.benefit-link:hover {
    text-decoration: underline;
}

.mag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 20px;
}

.mag-card {
    display: block;
    text-decoration: none;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.mag-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-glow);
}

.mag-thumb {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mag-thumb--poster-set2 {
    background-image: url('/assets/img/home-handheld-closeup.webp');
}

.mag-thumb--overwatch {
    background-image: url('/img/overwatch.jpg');
}

.mag-thumb--gran-turismo-2 {
    background-image: url('/img/gran_turismo_2.jpg');
}

/* Legal pages */
.legal-content.legal-content--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 52px 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 12px;
    text-align: center;
    color: #111;
}

.legal-lead {
    text-align: center;
    margin-bottom: 40px;
    color: #687283;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    color: #111;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: #111;
}

.legal-content p,
.legal-content li,
.legal-content address {
    line-height: 1.7;
    margin-bottom: 16px;
    color: #687283;
}

.legal-content address {
    font-style: normal;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content a {
    color: var(--brand);
    text-decoration: underline;
}

.legal-content a.legal-link-plain {
    text-decoration: none;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    table-layout: fixed;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    line-height: 1.5;
    word-break: break-word;
}

.legal-content th {
    background: #f7f1e8;
    font-weight: 700;
    color: #111;
}

.legal-content td {
    background: rgba(255, 255, 255, 0.96);
}

/* Help / FAQ page */
.help-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
}

.help-nav {
    position: sticky;
    top: 100px;
    background: rgba(12, 14, 22, 0.94);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}
.help-nav h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.help-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-nav li {
    margin-bottom: 12px;
}

.help-nav a {
    color: #dbe3ef;
    text-decoration: none;
    font-weight: 700;
    display: block;
    transition: color 0.2s;
}

.help-nav a:hover,
.help-nav a.active {
    color: var(--accent);
}

.help-support-link {
    margin-top: 16px;
    display: inline-block;
    color: var(--accent);
    font-weight: 900;
}

.help-content .faq-section {
    margin-bottom: 60px;
}

.help-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

.result-toolbar-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    color: var(--text-muted);
}

/* Delivery & returns policy page */
.policy-section {
    margin-bottom: 60px;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.policy-section h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.policy-section p {
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 16px;
}

.returns-callout {
    background: rgba(20, 24, 36, 0.92);
    padding: 24px;
    border-left: 4px solid var(--brand);
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.returns-callout ol {
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .help-layout {
        grid-template-columns: 1fr;
    }
    .help-nav {
        position: static;
        margin-bottom: 30px;
    }
}

.mag-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.55));
}

.mag-body {
    padding: 18px;
}

.mag-title {
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.05rem;
    line-height: 1.25;
}

.mag-text {
    margin: 0;
    color: #cfcfcf;
    line-height: 1.6;
}

.home-cta {
    background: linear-gradient(90deg, rgba(0,51,153,0.55), rgba(0,0,0,0.55)), url('/assets/img/home-arcade-hero.webp');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    box-shadow: var(--shadow);
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-cta h2 {
    margin: 0 0 6px 0;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.home-cta p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mag-grid {
        grid-template-columns: 1fr;
    }
    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer */
.footer-main,
.site-footer {
    background: #08080a;
    padding: 60px 0 30px 0;
    border-top: 2px solid rgba(var(--brand-rgb),0.35);
    margin-top: 80px;
    position: relative;
}
.footer-main::before,
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent) 30%, rgba(var(--brand-rgb),0.5) 70%, transparent);
}

/* Footer brand / logo block */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 36px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.footer-logo span { color: var(--accent); }
.footer-logo:hover { color: rgba(255,255,255,0.85); }
.footer-tagline {
    color: rgba(255,255,255,0.42);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    max-width: 480px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    border-bottom: 2px solid var(--brand-orange);
    padding-bottom: 10px;
    display: inline-block;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--brand-orange);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin: 40px 0;
}
@media (max-width: 900px) {
    .product-detail-layout { grid-template-columns: 1fr; }
}
.detail-gallery {
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail-main-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}
.detail-info h1 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}
.detail-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.detail-badge {
    background: var(--brand-blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}
.detail-price-wrap {
    margin: 30px 0;
}
.d-price {
    font-size: 3rem;
    color: var(--brand-orange);
    font-weight: 900;
    font-family: inherit;
    line-height: 1;
}
.d-old-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.buy-box {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.btn-buy-large {
    flex-grow: 1;
    font-size: 1.2rem;
    padding: 18px;
}
.detail-desc {
    margin-top: 40px;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .home-hero { padding: 60px 46px; }
    .home-hero__signals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-grid--2 { grid-template-columns: 1fr; }
    .home-section { padding: 40px 0; }
    .home-section.home-featured,
    .home-section.home-promos,
    .home-section.home-guides,
    .home-section.home-upgrade,
    .home-section.home-service { padding: 42px 0; }
    .home-upgrade-cta { flex-direction: column; align-items: flex-start; }
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .info-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .home-hero { padding: 50px 28px; }
    .home-hero__signals { grid-template-columns: 1fr; }
    .home-grid--3 { grid-template-columns: 1fr; }
    .home-section__title { font-size: 1.8rem; }
    .home-section { padding: 32px 0; }
    .home-section.home-featured,
    .home-section.home-promos,
    .home-section.home-guides,
    .home-section.home-upgrade,
    .home-section.home-service {
        border-radius: 18px;
        padding: 36px 0;
    }
    .home-upgrade-cta { padding: 28px 24px; }
    .hero-title { font-size: 2.5rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { flex-direction: column; align-items: flex-start; gap: 12px; }
    .info-panel { padding: 36px 24px; }
    .faq-accordion summary { font-size: 0.95rem; padding: 14px 16px; }
    .faq-accordion .faq-answer { padding: 0 16px 16px; }
}

/* -----------------------------
   Newer template classes
   ----------------------------- */

.kicker-new,
.kicker {
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 0 12px 0;
}

.page-space { padding: 40px 0; }
.page-content { padding: 40px 0; }
.no-pad-top { padding-top: 0; }
.text-center { text-align: center; }

.page-header-actions { margin-top: 20px; }

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link,
.post-meta-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}
.text-link:hover,
.post-meta-link:hover { text-decoration: underline; }

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}

/* Generic links used across newer templates */
.link-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
}

.link-more:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Catalog hero bits */
.catalog-hero-inner {
    text-align: left;
}

.catalog-hero-inner h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.05;
}

.catalog-meta {
    margin: 12px 0 0 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    max-width: 980px;
}

/* Category pills (catalog page) */
.cat-pills-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px 0;
}

.cat-pills-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
}

.cat-pills-new a:hover {
    background: rgba(0,0,0,0.40);
    border-color: rgba(255,255,255,0.16);
}

.cat-pills-new a.active {
    background: rgba(var(--brand-rgb), 0.25);
    border-color: rgba(var(--brand-rgb), 0.55);
    color: #fff;
}

/* Catalog layout + filter sidebar */
.catalog-page-container {
    margin-bottom: 60px;
}

.catalog-layout-new {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
    align-items: start;
}

.filter-sidebar {
    position: sticky;
    top: 104px; /* account for sticky header */
}

.filter-box,
.filter-panel-new {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.filter-box h2,
.filter-panel-new h2 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
}

.filter-header-new {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.filter-reset-new,
.reset-filters-btn {
    color: var(--accent);
    text-decoration: none;
    font-weight: 900;
}

.filter-reset-new:hover,
.reset-filters-btn:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.filter-group-new {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.filter-group-new label {
    font-weight: 900;
    color: rgba(255,255,255,0.86);
    font-size: 0.9rem;
}

.filter-divider-new {
    height: 1px;
    background: rgba(255,255,255,0.10);
    margin: 16px 0;
}

.check-label-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.86);
    cursor: pointer;
    user-select: none;
}

.check-label-new input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.catalog-content-area,
.catalog-main-new {
    min-width: 0;
}

.active-tags,
.active-filters-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 14px 0;
}

.tag-item,
.filter-tag {
    background: rgba(0,0,0,0.30);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.9rem;
}

.tag-item a {
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    margin-left: 8px;
}

.tag-item a:hover {
    color: var(--accent);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin: 10px 0 16px 0;
}

.results-header h2 {
    margin: 0;
    font-size: 1.35rem;
}

.no-results-box {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.no-results-box--mt { margin-top: 40px; }

.no-results-box h3 {
    margin: 0 0 10px 0;
}

.no-results-box p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
}

/* Forms (contact + filters) */
.custom-select,
.select-wrapper select {
    width: 100%;
}

.custom-select,
.filter-box select,
.filter-panel-new select,
.field-new input,
.field-new select,
.field-new textarea,
.select-wrapper select {
    padding: 12px 12px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-family: inherit;
}

.field-new input::placeholder,
.field-new textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.field-new input:focus,
.field-new select:focus,
.field-new textarea:focus,
.custom-select:focus,
.filter-box select:focus,
.filter-panel-new select:focus,
.select-wrapper select:focus {
    outline: none;
    border-color: rgba(var(--brand-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.18);
}

.field-new textarea {
    resize: vertical;
    min-height: 140px;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 22px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.method-card {
    display: flex;
    gap: 12px;
    background: rgba(12, 14, 22, 0.92);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 14px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), 0.22);
    border: 1px solid rgba(255,255,255,0.12);
    flex: 0 0 40px;
}

.method-card strong {
    display: block;
    margin-bottom: 4px;
}

.method-card a {
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.method-card a:hover {
    color: var(--accent);
}

.method-card address {
    font-style: normal;
    color: #eef2ff;
    line-height: 1.55;
}

.method-card p {
    margin: 8px 0 0 0;
    color: #dbe3ef;
    line-height: 1.6;
}

.method-card .meta {
    color: #b8c4da;
    font-size: 0.9rem;
}

.form-card {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.form-card h2 {
    margin: 0 0 12px 0;
    font-size: 1.45rem;
}

.contact-form-new {
    margin-top: 14px;
}

.form-row-new {
    margin-top: 14px;
}

.field-new {
    display: block;
}

.field-new > span {
    display: block;
    margin: 0 0 6px 0;
    font-weight: 900;
    color: rgba(255,255,255,0.86);
}

/* Empty state blocks (wishlist, order success fallback, etc.) */
.empty-state-new {
    text-align: center;
    padding: 60px 20px;
    background: var(--surface-raised);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state-new h1,
.empty-state-new h2 {
    font-size: 2rem;
    margin: 0 0 12px 0;
}

.empty-state-new p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0 auto 24px auto;
    max-width: 700px;
}

/* Order success page */
.success-hero-new {
    background: linear-gradient(135deg, var(--brand) 0%, rgba(0,0,0,0.65) 100%);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.10);
}

.success-icon {
    background: #fff;
    color: var(--brand);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-hero-new h1 {
    font-size: 2.5rem;
    margin: 0 0 16px 0;
    color: #fff;
}

.success-hero-new p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px auto;
    color: rgba(255,255,255,0.90);
}

.order-ref {
    display: inline-block;
    background: rgba(255,255,255,0.20);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.email-notice-new {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(var(--brand-rgb), 0.10);
    border-left: 4px solid var(--brand);
    padding: 24px;
    border-radius: var(--radius-xs);
    margin-bottom: 40px;
}

.email-notice-new svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.email-notice-new strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.email-notice-new p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.success-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.success-steps-new h2 {
    font-size: 1.8rem;
    margin: 0 0 24px 0;
    border-bottom: 2px solid var(--border);
    padding-bottom: 12px;
}

.step-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
}

.step-list-new li {
    display: flex;
    gap: 20px;
}

.step-num {
    background: var(--surface-raised);
    border: 2px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.success-steps-new strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.success-steps-new p {
    margin: 0;
    color: var(--text-muted);
}

.success-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.order-summary-card-new {
    background: var(--surface-raised);
    padding: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.order-summary-card-new h2 {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
}

.summary-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.summary-lines li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-lines span {
    color: var(--text-muted);
}

.summary-lines small {
    color: var(--text);
    font-weight: 900;
}

.summary-lines strong {
    white-space: nowrap;
}

.success-totals {
    margin: 0;
}

.success-totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.success-totals-row dt {
    font-weight: 500;
}

.success-totals-row dd {
    margin: 0;
}

.success-totals-row--spaced { margin-bottom: 20px; }

.success-totals-row--grand {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 900;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.delivery-address {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

.delivery-address-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 0 0 8px 0;
}

.delivery-address-name {
    font-weight: 900;
    margin: 0 0 4px 0;
}

.delivery-address-lines {
    color: var(--text-muted);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.delivery-address-method {
    margin: 0;
    background: var(--bg);
    padding: 8px 12px;
    border-radius: var(--radius-xs);
    display: inline-block;
}

/* Small modifiers */
.discount-badge--blue {
    background: var(--brand-blue);
}

.info-block-dark--compact {
    padding: 28px;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .catalog-layout-new { grid-template-columns: 1fr; }
    .filter-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .success-layout { grid-template-columns: 1fr; }
    .order-summary-card-new { position: static; }
}

/* Catalog/deals listing templates */
.product-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.product-img-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 16px;
    background: rgba(0,0,0,0.35);
    text-decoration: none;
}

.product-img-link .product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,102,0,0.92);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem;
}

.discount-badge--muted {
    background: var(--muted);
}

.discount-badge--success {
    background: var(--success);
}

.discount-badge--bottom {
    top: auto;
    bottom: 10px;
}

.discount-badge--left-10 {
    left: 10px;
}

.discount-badge--right-auto {
    right: auto;
}

.product-meta {
    margin: 0 0 8px 0;
    color: #cfd9ea;
    font-size: 0.9rem;
    line-height: 1.4;
    height: calc(0.9rem * 1.4 * 2);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 1.08rem;
    line-height: 1.35;
    height: calc(1.05rem * 1.35 * 2);
    overflow: hidden;
}
.product-title a {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a:hover { color: var(--accent); }

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: auto;
}
.current-price {
    color: var(--accent);
    font-weight: 900;
    font-size: 1.25rem;
}
.old-price {
    color: rgba(255,255,255,0.65);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background: rgba(255, 193, 7, 0.95);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
}
.btn-add-cart:hover { background: var(--brand-orange-hover); }
.btn-add-cart[disabled] { opacity: 0.55; cursor: not-allowed; }

.icon-btn-small {
    background: rgba(0,0,0,0.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
}
.icon-btn-small:hover { background: rgba(0,0,0,0.40); }

.icon-btn-small--compact {
    height: 42px;
    width: 42px;
    border-radius: 4px;
}

.icon-btn-small--wishlist {
    height: 42px;
    width: 42px;
    border-radius: 10px;
}

/* Blog landing */
.page-hero-new,
.catalog-hero-new {
    position: relative;
    padding: 90px 0 80px;
    border-radius: 20px;
    margin: 28px 0 40px 0;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb),0.18), 0 8px 48px rgba(0,0,0,0.55);
}
.catalog-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15,23,42,0.75) 100%);
    pointer-events: none;
    z-index: 1;
}
.catalog-hero-new > .container {
    position: relative;
    z-index: 2;
}
.catalog-hero-new .kicker-new {
    display: inline-block;
    background: rgba(var(--brand-rgb),0.18);
    color: var(--accent);
    border: 1px solid rgba(var(--brand-rgb),0.55);
    border-radius: 999px;
    padding: 4px 16px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    box-shadow: 0 0 12px rgba(var(--brand-rgb),0.3);
}
.catalog-hero-new h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 14px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 40px rgba(var(--brand-rgb),0.25);
    line-height: 1.1;
}
.catalog-hero-new .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero backgrounds (avoid inline styles in templates) */
.hero-bg--about-tombraider {
    background: linear-gradient(160deg, rgba(10,18,36,0.62) 0%, rgba(10,18,36,0.88) 100%), url('/img/rise_of_the_tomb_raider.jpg') center/cover no-repeat;
}

.hero-bg--poster-set1-085 {
    background: linear-gradient(160deg, rgba(10,18,36,0.58) 0%, rgba(10,18,36,0.85) 100%), url('/assets/img/editorial-repair-desk.webp') center/cover no-repeat;
}

.hero-bg--poster-set2-085 {
    background: linear-gradient(160deg, rgba(10,18,36,0.58) 0%, rgba(10,18,36,0.85) 100%), url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

.hero-bg--poster-set3-085 {
    background: linear-gradient(160deg, rgba(10,18,36,0.58) 0%, rgba(10,18,36,0.85) 100%), url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
}

.hero-bg--ps4-pro2-086 {
    background: linear-gradient(160deg, rgba(10,18,36,0.52) 0%, rgba(10,18,36,0.88) 100%), url('/img/ps4_pro2.webp') center/cover no-repeat;
}

.hero-bg--switch-std1-085 {
    background: linear-gradient(160deg, rgba(10,18,36,0.55) 0%, rgba(10,18,36,0.85) 100%), url('/img/switch_std1.webp') center/cover no-repeat;
}

.hero-bg--poster-set1-086 {
    background: linear-gradient(160deg, rgba(10,18,36,0.55) 0%, rgba(10,18,36,0.88) 100%), url('/assets/img/editorial-repair-desk.webp') center/cover no-repeat;
}

.hero-bg--hollow-knight-086 {
    background: linear-gradient(160deg, rgba(10,18,36,0.58) 0%, rgba(10,18,36,0.88) 100%), url('/img/hollow_knight.jpg') center/cover no-repeat;
}

.hero-bg--mario-plush {
    background: linear-gradient(160deg, rgba(var(--brand-rgb),0.55) 0%, rgba(0,0,0,0.82) 100%), url('/img/mario_plush.webp') center/cover no-repeat;
}

.hero-bg--sonic-figure {
    background: linear-gradient(160deg, rgba(10,18,36,0.50) 0%, rgba(10,18,36,0.88) 100%), url('/img/sonic_figure_px1.jpg') center/cover no-repeat;
}

.hero-bg--zelda-botw {
    background: linear-gradient(160deg, rgba(10,18,36,0.50) 0%, rgba(10,18,36,0.88) 100%), url('/img/the_legend_of_zelda_breath_of_the_wild.jpg') center/cover no-repeat;
}

/* About page image placeholder (avoid inline styles) */
.about-image-placeholder {
    background-image: url('/img/ps4_pro1.webp');
    border-radius: var(--radius-xs);
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.hero-subtitle {
    max-width: 900px;
    margin: 12px auto 0 auto;
    color: rgba(255,255,255,0.80);
    line-height: 1.7;
    font-size: 1.05rem;
}

.hero-subtitle--left-wide {
    margin: 0 0 18px 0;
    text-align: left;
    max-width: none;
}

/* Franchise pages */
.franchise-hero-inner-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.franchise-hero-new .kicker-new {
    background: rgba(0,0,0,0.22);
    padding: 6px 12px;
    border-radius: 999px;
}

.franchise-hero-new h1 {
    margin: 0 0 12px 0;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
}

.franchise-hero-new p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hero-actions-new {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.franchise-stats-new {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    color: #fff;
}

.franchise-stats-new strong {
    font-size: 1.8rem;
    display: block;
    font-family: inherit;
}

.franchise-stats-new span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.franchise-text-content {
    flex: 1;
    min-width: 0;
}

.franchise-image-mosaic {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.franchise-image-mosaic a {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.30);
    transition: transform 0.2s ease;
    width: 160px;
    height: 160px;
    background: #fff;
}

.franchise-image-mosaic a:hover {
    transform: translateY(-4px);
}

.franchise-image-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.content-section--spaced {
    margin-top: 60px;
}

.info-block-dark {
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.info-block-dark--spaced {
    margin-top: 80px;
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.info-block-dark-inner {
    padding: 60px 20px;
}

.faq {
    text-align: left;
    max-width: 800px;
    margin: 30px auto 0 auto;
}

.faq details {
    background: var(--surface-raised);
    padding: 16px;
    border-radius: var(--radius-xs);
    margin-bottom: 12px;
    border: none;
}

.faq summary {
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq details p {
    margin-top: 12px;
    color: var(--text);
}

@media (max-width: 1024px) {
    .franchise-hero-inner-new {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }
}

/* Franchise hero (older markup used by franchise-pokemon.php) */
.franchise-hero {
    padding: 64px 0;
    border-radius: 16px;
    margin: 28px 0 36px 0;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.franchise-hero--pokemon {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), url('/img/pkmn_sun_moon.webp') center/cover no-repeat;
}

.franchise-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.franchise-stats {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    color: #fff;
}

.franchise-stat strong {
    font-size: 1.8rem;
    display: block;
}

.franchise-stat span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.franchise-hero-img img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: block;
}

@media (max-width: 1024px) {
    .franchise-hero-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .franchise-hero-img img {
        max-width: 420px;
        margin: 0 auto;
    }
}

/* Pokemon generations timeline */
.timeline-section-new {
    margin: 60px 0;
    background: var(--surface-raised);
    padding: 40px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.timeline-section-new h2 {
    text-align: center;
    margin: 0 0 32px 0;
    font-size: 2rem;
}

.generations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gen-card {
    background: var(--surface-raised);
    padding: 20px;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow);
}

.gen-card span {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.gen-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.gen-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-muted);
}

/* Newsletter CTA tweaks (avoid inline margins) */
.newsletter-cta-new--mb-40 {
    margin-bottom: 40px;
}

.newsletter-cta-new--mt-40 {
    margin-top: 40px;
}

.newsletter-cta-new h2 {
    margin: 0 0 10px 0;
}

.newsletter-cta-new p {
    margin: 0 0 16px 0;
    color: rgba(255,255,255,0.78);
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1024px) {
    .blog-grid-new { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .blog-grid-new { grid-template-columns: 1fr; }
}

.blog-card-new {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.blog-card-new:hover {
    transform: translateY(-3px);
    border-color: rgba(255,102,0,0.35);
}

.blog-visual-new {
    height: 190px;
    background: rgba(0,0,0,0.35);
}
.blog-visual-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content-new { padding: 18px 18px 20px 18px; }
.blog-meta-new {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,0.70);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.blog-tag-new {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0,51,153,0.35);
    border: 1px solid rgba(0,51,153,0.55);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.75rem;
}
.blog-title-new { margin: 0 0 10px 0; font-size: 1.25rem; }
.blog-excerpt-new { margin: 0; color: rgba(255,255,255,0.78); line-height: 1.6; }

.newsletter-cta-new {
    margin-top: 34px;
    background: linear-gradient(135deg, rgba(0,51,153,0.35), rgba(255,102,0,0.18));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.input-group-large {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.input-group-large input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.35);
    color: #fff;
}

.btn-primary-large {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.btn-primary-large:hover { background: var(--accent-hover); }

/* Product cards used in sliders (platform/franchise/blog sections) */
.h-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.h-scroll::-webkit-scrollbar { height: 10px; }
.h-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
}

.card {
    scroll-snap-align: start;
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card-media {
    position: relative;
    padding: 16px;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.thumb-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,51,153,0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 0.78rem;
}
.badge.badge-deal { background: rgba(255,102,0,0.9); }

.card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.card-body .meta { margin: 0; color: rgba(255,255,255,0.70); font-size: 0.9rem; }
.card-body h3 { margin: 0; font-size: 1.05rem; line-height: 1.35; }
.card-body h3 a { color: #fff; text-decoration: none; }
.card-body h3 a:hover { color: var(--accent); }

.price-row { display: flex; gap: 10px; align-items: baseline; }
.price-row strong { color: var(--accent); font-size: 1.2rem; }
.price-row span { color: rgba(255,255,255,0.65); text-decoration: line-through; font-size: 0.95rem; }

.card-actions { display: flex; gap: 10px; margin-top: 6px; }
.card-actions button {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,51,153,0.7);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.card-actions button:hover { background: rgba(0,51,153,0.9); }
.card-actions button.ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.18);
}
.card-actions button.ghost:hover { border-color: rgba(255,102,0,0.35); color: var(--accent); }
.card-actions button:disabled { opacity: 0.55; cursor: not-allowed; }

/* Blog post layout (/blog/*.php) */
.post-hero {
    margin: 28px 0 24px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(0,51,153,0.75), rgba(0,0,0,0.55));
    box-shadow: var(--shadow);
    padding: 54px 0;
}

.post-hero h1 { margin: 0; font-size: 2.6rem; line-height: 1.12; }

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255,255,255,0.78);
    margin-top: 14px;
}

.post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

@media (max-width: 1024px) {
    .post-layout { grid-template-columns: 1fr; }
}

.post-body {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    box-shadow: var(--shadow);
}

.post-body h2 { margin-top: 34px; margin-bottom: 20px; }
.post-body h3 { margin-top: 26px; margin-bottom: 8px; }
.post-body ul { margin: 12px 0 16px 18px; }
.post-body li { margin: 6px 0; }

.callout {
    background: var(--surface-raised);
    padding: 24px;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    margin: 22px 0;
}
.callout strong { display: block; margin-bottom: 6px; }
.callout p { margin: 0; color: rgba(255,255,255,0.82); }

.console-rec,
.gem-entry,
.game-entry {
    background: rgba(0,0,0,0.20);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    margin: 18px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.game-entry-num {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    background: rgba(var(--brand-rgb),0.18);
    border: 1px solid rgba(var(--brand-rgb),0.40);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
}

.console-rec-head,
.gem-entry-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.verdict {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,102,0,0.16);
    border: 1px solid rgba(255,102,0,0.35);
    color: #fff;
    font-weight: 900;
    font-size: 0.8rem;
}

.genre-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0,51,153,0.20);
    border: 1px solid rgba(0,51,153,0.55);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 12px 0;
}
@media (max-width: 768px) {
    .pros-cons { grid-template-columns: 1fr; }
}

.pros,
.cons {
    background: rgba(0,0,0,0.24);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 12px;
}

.price-note,
.price-hint { margin: 10px 0 0 0; color: rgba(255,255,255,0.80); }

.post-back { margin-top: 26px; }

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}
.btn.ghost:hover { border-color: rgba(255,102,0,0.35); color: var(--accent); }

/* Sidebar */
.sidebar-card {
    position: sticky;
    top: 100px;
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 { margin: 0 0 10px 0; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin: 10px 0; }
.sidebar-links a { color: rgba(255,255,255,0.86); text-decoration: none; }
.sidebar-links a:hover { color: var(--accent); }

/* Standalone magazine pages (/blog-*.php) */
.article-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-back {
    display: inline-block;
    margin-bottom: 20px;
}

.article-head {
    margin-bottom: 40px;
    text-align: center;
}

.article-meta-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
}

.article-tag {
    background: var(--brand);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.article-lead {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.article-cover {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text);
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body ul {
    margin: 12px 0 16px 18px;
}

.article-body li {
    margin: 6px 0;
}

.article-img {
    width: 100%;
    border-radius: var(--radius-xs);
    margin: 32px 0;
}

.article-callout {
    background: var(--surface-raised);
    padding: 24px;
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-xs);
    margin: 32px 0;
}

.article-callout--blue { border-left-color: var(--brand-blue); }
.article-callout--blue h3 { color: var(--brand-blue); }

.article-callout h3 { margin-bottom: 12px; }
.article-callout p { margin: 0; color: var(--text-muted); }

.article-cta {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.article-cta p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.article-cta .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .article-title { font-size: 2.2rem; }
    .article-body h2 { font-size: 1.6rem; }
}

/* Promo gifts */
.promo-block {
    padding: 40px 16px;
    border-radius: var(--radius);
    margin: 24px 0;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.10);
}

.promo-block--start {
    background: linear-gradient(135deg, rgba(0,0,0,0.62), rgba(0,0,0,0.92)), url('/assets/img/editorial-repair-desk.webp') center/cover;
}

.promo-block--end {
    background: linear-gradient(135deg, rgba(0,0,0,0.42), rgba(0,0,0,0.92)), url('/assets/img/home-arcade-hero.webp') center/cover;
}

.promo-block h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #fff;
}

.promo-block p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.promo-code {
    background: var(--brand);
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 4px;
    display: inline-block;
}

.promo-block .btn {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-xs);
    font-weight: 700;
}

.promo-block--start .btn {
    background: var(--brand);
    border: none;
    color: #fff;
}

.promo-block--end .btn {
    background: var(--surface-raised);
    color: var(--text);
    border: 1px solid var(--line);
}

/* =====================================================
   Platform pages (PS1, SNES, Xbox 360)
   ===================================================== */

.plat-hero {
    padding: 80px 0;
    border-radius: 16px;
    margin: 28px 0 0 0;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.plat-hero--ps1 {
    background:
        linear-gradient(135deg, rgba(30,10,50,0.88) 0%, rgba(10,5,20,0.94) 100%),
        url('/assets/img/plat-ps1.webp') center / cover no-repeat;
}

.plat-hero--snes {
    background:
        linear-gradient(135deg, rgba(10,30,10,0.88) 0%, rgba(5,15,5,0.94) 100%),
        url('/assets/img/plat-snes.webp') center / cover no-repeat;
}

.plat-hero--xbox360 {
    background:
        linear-gradient(135deg, rgba(0,30,0,0.86) 0%, rgba(0,12,0,0.94) 100%),
        url('/assets/img/plat-xbox360.webp') center / cover no-repeat;
}

.plat-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.plat-hero h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin: 12px 0;
    font-weight: 900;
}

.plat-hero > .container > div > p {
    max-width: 560px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin: 0 0 24px 0;
}

.plat-hero-img {
    flex-shrink: 0;
    width: 280px;
}

.plat-hero-img img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55));
}

.plat-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.plat-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.plat-stat span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-top: 4px;
}

/* Split section: image left, text right */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.split-section img {
    width: 100%;
    border-radius: var(--radius-sm);
    display: block;
    box-shadow: var(--shadow);
}

.split-section .text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.split-section .text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Info block wrapper (used on platform pages around product sections) */
.info-block {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 40px;
}

/* Generic auto-fill card grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* Generic card */
.card {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.card-actions form {
    margin: 0;
}

.card-actions form:first-child {
    flex: 1;
}

.card-actions button {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.badge-deal { background: var(--accent); }

/* Values / feature grid used on platform + franchise pages */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.value-card-new {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.value-card-new:hover {
    border-color: rgba(var(--brand-rgb), 0.50);
    transform: translateY(-3px);
}

.value-card-new h3 {
    font-size: 1.15rem;
    margin: 12px 0 10px 0;
}

.value-card-new p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 0.92rem;
}

/* Numbered step badge inside value-card-new */
.step-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--brand);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.15rem;
    border: 3px solid var(--bg);
    box-shadow: 0 4px 12px rgba(0,51,153,0.40);
}

/* Section header row (title + "see all" link side-by-side) */
.section-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Content section wrapper */
.content-section { margin: 40px 0; }

/* Centered section heading */
.section-title-center {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 900;
}

/* =====================================================
   Trade-in page
   ===================================================== */

.trade-hero {
    background: linear-gradient(135deg, var(--brand) 0%, color-mix(in srgb, var(--bg) 40%, #000 60%) 100%);
    padding: 70px 40px;
    border-radius: var(--radius-md);
    color: var(--text);
    text-align: center;
    margin-bottom: 60px;
    border: 1px solid rgba(var(--brand-rgb), 0.35);
    box-shadow: 0 8px 40px rgba(0,51,153,0.30);
    position: relative;
    overflow: hidden;
}

.trade-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--brand-rgb),0.25) 0%, transparent 70%);
    pointer-events: none;
}

.trade-hero .pos-relative { position: relative; }

.trade-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.trade-hero-lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 900;
}

.pos-relative { position: relative; }

/* 2-column form + info layout */
.trade-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Trade form card (prominent surface) */
.form-card--trade {
    background: var(--surface-raised);
    padding: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.form-card--trade h2 {
    margin: 0 0 24px 0;
    font-size: 1.8rem;
}

/* Generic form group */
.form-group {
    margin-bottom: 20px;
}

.form-group--spaced {
    margin-bottom: 30px;
}

.form-group > label:first-child {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}

/* Reusable form inputs */
.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    background: rgba(0,0,0,0.30);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(var(--brand-rgb), 0.65);
    background: rgba(0,0,0,0.40);
}

.form-textarea { resize: vertical; }

.form-hint {
    color: var(--text-muted);
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
}

/* Payment option radio buttons */
.payment-options {
    display: grid;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xs);
    cursor: pointer;
    background: rgba(0,0,0,0.20);
    transition: border-color 0.2s, background 0.2s;
}

.payment-option:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(0,0,0,0.30);
}

.payment-option--featured {
    border-color: rgba(var(--brand-rgb), 0.60);
    background: rgba(var(--brand-rgb), 0.08);
}

.payment-option--featured:hover {
    border-color: rgba(var(--brand-rgb), 0.85);
}

.payment-option input[type="radio"] {
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--brand);
}

.payment-option strong {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

.payment-option span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-option--featured strong {
    color: var(--brand);
}

/* Full-width button */
.btn-full {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

/* "What we buy" 4-card grid */
.buy-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.buy-category-card {
    padding: 20px;
    background: var(--surface-raised);
    border-radius: var(--radius-xs);
    border: 1px solid var(--line);
    transition: border-color 0.2s;
}

.buy-category-card:hover { border-color: rgba(var(--brand-rgb), 0.45); }

.buy-category-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: var(--brand);
}

.buy-category-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Padded info-block-dark variant (trade-in FAQ) */
.info-block-dark--card {
    padding: 30px;
    border-radius: var(--radius-sm);
}

/* Simple FAQ (no surface bg on details, used inside darker blocks) */
.faq-simple details {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-simple details:last-child { border-bottom: none; }

.faq-simple summary {
    font-weight: 700;
    cursor: pointer;
    line-height: 1.4;
}

.faq-simple details p {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* -- Cookie Consent Banner -- */
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(8, 10, 18, 0.97);
    border-top: 1px solid rgba(var(--brand-rgb), 0.5);
    box-shadow: 0 -4px 40px rgba(0,0,0,0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: cookieSlideUp 0.45s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cookie-banner.is-hiding {
    animation: none;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cookie-text strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1px;
}
.cookie-text span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}
.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-text a:hover { opacity: 0.8; }
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}
.btn-sm {
    font-size: 0.83rem;
    padding: 8px 18px;
    border-radius: 8px;
    white-space: nowrap;
}
.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-banner {
        max-height: 46vh;
        overflow-y: auto;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .cookie-text {
        min-width: 0;
    }

    .cookie-text strong {
        font-size: 0.88rem;
    }

    .cookie-text span {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

/* -- FAQ Accordion (info-panel, category pages) ------------- */
.faq-accordion-heading {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin: 36px 0 14px;
    text-transform: uppercase;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-accordion details {
    background: rgba(0,0,0,0.28);
    border: 1px solid rgba(var(--brand-rgb),0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.faq-accordion details[open] {
    border-color: rgba(var(--brand-rgb),0.55);
    box-shadow: 0 4px 20px rgba(var(--brand-rgb),0.10);
}
.faq-accordion summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary:hover { background: rgba(255,255,255,0.04); }
.faq-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .2s;
}
.faq-accordion details[open] > summary::after {
    transform: rotate(45deg);
}
.faq-accordion .faq-answer {
    padding: 0 20px 18px;
    color: rgba(255,255,255,0.68);
    font-size: 0.97rem;
    line-height: 1.75;
    border-top: 1px solid rgba(255,255,255,0.055);
}
.faq-accordion .faq-answer p { margin: 10px 0 0; }

/* Info right column (trade-in) */
.trade-info-col h2 {
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.trade-info-col > p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* =====================================================
   Responsive adjustments
   ===================================================== */

@media (max-width: 920px) {
    .plat-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .plat-hero-img { width: 200px; margin: 0 auto; }
    .plat-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    .split-section { grid-template-columns: 1fr; gap: 30px; }
    .trade-form-section { grid-template-columns: 1fr; }
    .trade-hero { padding: 50px 24px; }
    .trade-hero h1 { font-size: 2.2rem; }
    .info-block { padding: 24px; }
}

/* =====================================================
   Utility helpers
   ===================================================== */

/* Trade-in info column typography */
.trade-info-lead {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Form group standalone label (no for= attribute, e.g. legend-like) */
.form-group-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}

/* =====================================================
   Screen-reader only utility
   ===================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   Navigation count badge (cart / wishlist in header)
   ===================================================== */
.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
    margin-left: 4px;
}

/* =====================================================
   Cart page layout
   ===================================================== */
.cart-shell {
    display: grid;
    gap: 24px;
}

.cart-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    background: rgba(8, 12, 20, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: var(--shadow);
}
.cart-kicker {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #f2a774;
    margin-bottom: 12px;
}
.cart-head h1, .cart-head h2 {
    margin: 10px 0 8px;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}
.cart-sub {
    color: rgba(255, 255, 255, 0.76);
    max-width: 540px;
    line-height: 1.6;
    margin: 0;
}
.cart-head-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cart-head-stat {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 140px;
    display: grid;
    gap: 4px;
}
.cart-head-stat span {
    font-size: 1.1rem;
    font-weight: 900;
}
.cart-head-stat small {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
}

.cart-empty {
    display: grid;
    gap: 18px;
    align-items: center;
    justify-items: start;
}
.cart-empty__panel {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 32px;
    max-width: 640px;
    display: grid;
    gap: 12px;
}
.cart-empty__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 102, 0, 0.12);
    color: #ffd4b2;
}
.cart-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cart-empty__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}
.cart-empty__links a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.cart-empty__links a:hover { color: var(--accent); }

.cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    gap: 24px;
    align-items: start;
}
.cart-list {
    display: grid;
    gap: 14px;
}
.cart-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 18px;
    background: rgba(12, 14, 22, 0.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    align-items: start;
}
.cart-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    text-decoration: none;
}
.cart-card__img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.cart-card__details {
    display: grid;
    gap: 12px;
}
.cart-card__title {
    margin: 0 0 4px;
    font-size: 1.05rem;
    font-weight: 900;
}
.cart-card__title a {
    color: #fff;
    text-decoration: none;
}
.cart-card__title a:hover { color: var(--accent); }
.cart-card__meta {
    margin: 0;
    color: #d3dced;
    font-size: 0.88rem;
}
.cart-card__note {
    margin: 0;
    color: #b6c2d8;
    font-size: 0.82rem;
}
.cart-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.cart-qty-form {
    margin: 0;
}
.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 4px;
}
.cart-qty-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}
.cart-qty-step:hover { background: rgba(255, 255, 255, 0.18); }
.cart-qty-input {
    width: 54px;
    text-align: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 800;
}
.cart-remove {
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}
.cart-remove:hover { color: var(--accent); }
.cart-card__price {
    font-weight: 900;
    font-size: 1.1rem;
    white-space: nowrap;
}

.cart-summary {
    background: rgba(8, 12, 20, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 20px;
    display: grid;
    gap: 10px;
}
.cart-summary__title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 900;
}
.cart-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #d3dced;
}
.cart-summary__total {
    border-bottom: 0;
    font-weight: 900;
    color: #fff;
    font-size: 1.05rem;
    padding-top: 12px;
}
.cart-cta {
    margin-top: 8px;
}
.cart-summary__trust {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    color: #c6d1e3;
    font-size: 0.85rem;
}
.cart-trust-row {
    display: grid;
    gap: 4px;
}
.cart-summary__trust svg {
    margin-top: 6px;
}

@media (max-width: 980px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
}
@media (max-width: 700px) {
    .cart-head {
        padding: 18px;
    }
    .cart-card {
        grid-template-columns: 1fr;
    }
    .cart-card__image {
        width: 100%;
        height: 160px;
    }
    .cart-card__price {
        font-size: 1rem;
    }
}

/* =====================================================
   About page
   ===================================================== */
.trust-strip-new {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}
.trust-item-new {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.trust-item-new:last-child {
    border-right: none;
}
.trust-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1.1;
}
.trust-label {
    font-size: 0.88rem;
    color: #687283;
    display: block;
    margin-top: 6px;
}

.about-content-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    margin-bottom: 56px;
}
.about-text-content {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    min-width: 0;
}
.about-text-content h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0 0 16px 0;
    color: #111;
}
.about-text-content p {
    color: #687283;
    line-height: 1.75;
    margin: 0 0 18px 0;
    font-size: 1rem;
}
.about-image-content {
    position: sticky;
    top: 24px;
    min-width: 0;
    width: 100%;
}
.image-placeholder {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    min-height: 220px;
}
.about-image-placeholder {
    background:
        linear-gradient(145deg, rgba(14, 18, 28, 0.2), rgba(14, 18, 28, 0.55)),
        url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
    min-height: 360px;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 100%;
}

.values-section-new {
    margin-bottom: 56px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}
.section-header-center {
    text-align: center;
    margin-bottom: 32px;
}
.section-header-center h2 {
    font-size: 1.7rem;
    font-weight: 900;
}
.section-header-center p {
    color: #687283;
    margin-top: 8px;
}

.about-section {
    margin-bottom: 56px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 30px 32px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}
.about-section h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 28px 0;
    color: #111;
}

.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 52px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.12);
}
.timeline-item {
    position: relative;
    padding: 0 0 32px 0;
}
.timeline-dot {
    position: absolute;
    left: -52px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    z-index: 1;
}
.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 10px 0;
}
.timeline-content p {
    color: #687283;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .about-content-layout { grid-template-columns: 1fr; }
    .about-image-content { position: static; }
    .trust-item-new { border-right: none; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
    .trust-item-new:last-child { border-bottom: none; }

    .about-content-layout,
    .about-text-content,
    .about-image-content,
    .values-section-new,
    .about-section,
    .about-image-placeholder {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 760px) {
    .legal-content.legal-content--narrow {
        padding: 30px 18px;
    }

    .legal-title {
        font-size: 2.2rem;
    }

    .legal-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 600px) {
    .header-brand__bottom {
        display: none !important;
        padding: 0;
    }

    .header-brand__badges {
        display: none;
    }
}

/* =====================================================
   Blog newsletter CTA
   ===================================================== */
.newsletter-cta-new {
    margin-top: 56px;
    background: linear-gradient(135deg, rgba(var(--brand-rgb),0.22), rgba(0,0,0,0.45));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
}
.cta-inner {
    max-width: 520px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 0 12px 0;
}
.cta-inner p {
    color: var(--muted);
    margin: 0 0 28px 0;
    line-height: 1.65;
}
.newsletter-form-large {
    display: block;
}

/* =====================================================
   Result toolbar (in-stock, catalog listings)
   ===================================================== */
.result-toolbar-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
}
.result-toolbar-title {
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
    color: var(--muted);
}
.result-toolbar-title strong {
    color: #fff;
    font-weight: 900;
}

/* =====================================================
   Custom checkbox (in-stock, deals filter)
   ===================================================== */
.check-label-new {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: rgba(255,255,255,0.86);
}
.check-label-new input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.check-box-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 5px;
    background: rgba(0,0,0,0.35);
    flex: 0 0 18px;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}
.check-label-new input[type="checkbox"]:checked + .check-box-custom {
    background: var(--accent);
    border-color: var(--accent);
}
.check-label-new input[type="checkbox"]:checked + .check-box-custom::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.filter-group-new.checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =====================================================
   Data table (delivery & returns, legal pages)
   ===================================================== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}
.data-table th,
.data-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.data-table th {
    font-weight: 900;
    color: rgba(255,255,255,0.92);
    background: rgba(var(--brand-rgb),0.14);
}
.data-table td {
    color: var(--muted);
}
.data-table tr:last-child td {
    border-bottom: none;
}

/* =====================================================
   Contact page wrappers
   ===================================================== */
.contact-info {
    min-width: 0;
}
.contact-form-container-new {
    min-width: 0;
}
.form-row-new.full-width {
    grid-column: 1 / -1;
}

/* =====================================================
   Checkout page layout
   ===================================================== */
.checkout-header-new {
    margin: 0 0 28px 0;
}
.checkout-header-new h1 {
    font-size: 2rem;
    font-weight: 900;
}

.checkout-layout-new {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

.checkout-form-section {
    min-width: 0;
}

.checkout-form-new {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-section-new {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 16px;
}
.form-section-new h2 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 18px 0;
}
.form-section-new .form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-section-new .form-row-new.full-width {
    grid-template-columns: 1fr;
}

.delivery-options-new h2 {
    margin-bottom: 14px;
}
.delivery-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.delivery-radio-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s;
}
.delivery-radio-card:has(input:checked) {
    border-color: var(--accent);
    background: rgba(255,102,0,0.08);
}
.delivery-radio-card input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}
.card-content {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.method-name {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
}
.method-price {
    font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
}

.checkout-actions-new {
    margin-top: 8px;
}
.fine-print-new {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
}

/* Checkout order summary sidebar */
.checkout-summary-new {
    position: sticky;
    top: 20px;
}
.summary-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}
.summary-box h2 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 18px 0;
}

.checkout-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-item-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.checkout-item-line:last-child {
    border-bottom: none;
}
.item-name-qty {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.item-name-qty .name {
    font-weight: 700;
    color: rgba(255,255,255,0.92);
}
.item-name-qty .qty {
    font-size: 0.82rem;
    color: var(--muted);
}

.summary-totals-new {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.totals-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--muted);
}
.totals-line strong,
.totals-line span:last-child {
    color: rgba(255,255,255,0.9);
}
.grand-total-new {
    font-weight: 900;
    font-size: 1.05rem;
    color: #fff !important;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    margin-top: 4px;
}
.grand-total-new span {
    color: #fff !important;
}
.totals-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 12px;
}

@media (max-width: 900px) {
    .checkout-layout-new {
        grid-template-columns: 1fr;
    }
    .checkout-summary-new {
        position: static;
    }
    .form-section-new .form-row-new {
        grid-template-columns: 1fr;
    }
}

/* ===========================================================
   MOBILE HEADER FIX
   =========================================================== */
@media (max-width: 640px) {
    .top-bar .container {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 5px 0;
    }
    .top-bar-usp {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 12px;
        font-size: 0.73rem;
    }
    .top-bar-usp::-webkit-scrollbar { display: none; }
    .top-bar-links {
        font-size: 0.73rem;
        text-align: right;
        display: flex;
        gap: 8px;
        justify-content: flex-end;
        align-items: center;
    }
    .top-bar-links a { font-weight: 700; }
    .header-main .container {
        gap: 10px;
        padding: 10px 0;
    }
    .logo { font-size: 1.55rem; }
    .logo-img { height: 28px; width: 28px; }
    .search-wrapper { min-width: 0; }
    .header-actions { gap: 8px; }
    .action-item { font-size: 0.78rem; }
    .nav-bar ul { gap: 2px; flex-wrap: wrap; }
    .nav-bar a { font-size: 0.78rem; padding: 6px 7px; }
}
@media (max-width: 400px) {
    .logo { font-size: 1.3rem; }
    .logo-img { height: 24px; width: 24px; }
    .top-bar-usp span:nth-child(3) { display: none; } /* hide Express-Lieferung */
}

/* ===========================================================
   HOMEPAGE GIFT WELCOME STRIP
   =========================================================== */
.gift-welcome-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(120deg, rgba(255,102,0,0.12) 0%, rgba(0,51,153,0.3) 100%);
    border: 1px solid rgba(255,102,0,0.4);
    border-radius: 14px;
    padding: 20px 28px;
    margin: 0 0 36px;
}
.gift-welcome-strip__icon {
    font-size: 2.8rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(255,160,0,0.6));
}
.gift-welcome-strip__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gift-welcome-strip__title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.gift-welcome-strip__sub {
    font-size: 0.92rem;
    color: #c0c8d8;
    line-height: 1.5;
}
.gift-welcome-strip__sub strong {
    color: var(--accent);
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
}
@media (max-width: 640px) {
    .gift-welcome-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }
    .gift-welcome-strip .btn { width: 100%; justify-content: center; }
}

/* ===========================================================
   PRODUCT PAGE GIFT BLOCK � NES RETRO STYLE
   =========================================================== */
.pg-gift-nes {
    margin: 40px 0 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #071428 0%, #0d0d0d 55%, #150800 100%);
    border: 1px solid rgba(255,140,0,0.28);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
}
.pg-gift-nes__visual {
    background-image: url('/img/nes_1.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 320px;
    position: relative;
}
.pg-gift-nes__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, #071428 100%);
}
.pg-gift-nes__body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.pg-gift-nes__eyebrow {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}
.pg-gift-nes__title {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    text-transform: uppercase;
}
.pg-gift-nes__text {
    color: #a8b4c8;
    font-size: 0.93rem;
    line-height: 1.7;
}
.pg-gift-nes__code-label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.pg-gift-nes__code {
    display: inline-block;
    font-family: monospace;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--accent);
    background: rgba(255,102,0,0.12);
    border: 1px dashed rgba(255,102,0,0.55);
    padding: 9px 22px;
    border-radius: 8px;
}
@media (max-width: 760px) {
    .pg-gift-nes { grid-template-columns: 1fr; }
    .pg-gift-nes__visual { min-height: 160px; }
    .pg-gift-nes__visual::after { background: linear-gradient(0deg, #071428 0%, transparent 60%); }
    .pg-gift-nes__body { padding: 28px 22px; }
    .pg-gift-nes__title { font-size: 1.4rem; }
}

/* ===========================================================
   PRODUCT PAGE GIFT BLOCK � BULB BOY INDIE STYLE
   =========================================================== */
.pg-gift-indie {
    margin: 40px 0 60px;
    border-radius: 18px;
    background: radial-gradient(ellipse at 10% 20%, #1e003a 0%, #0b0b1a 55%, #001810 100%);
    border: 1px solid rgba(140,80,220,0.35);
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}
.pg-gift-indie::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,90,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.pg-gift-indie::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,100,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pg-gift-indie__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 44px;
    align-items: center;
}
.pg-gift-indie__eyebrow {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a06aff;
    margin-bottom: 10px;
}
.pg-gift-indie__title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}
.pg-gift-indie__text {
    color: #b8b0cc;
    line-height: 1.7;
    font-size: 0.92rem;
    margin-bottom: 20px;
}
.pg-gift-indie__perks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.pg-gift-indie__perk {
    background: rgba(140,80,220,0.14);
    border: 1px solid rgba(140,80,220,0.35);
    color: #c8a8ff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pg-gift-indie__imgs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pg-gift-indie__imgs img {
    border-radius: 12px;
    width: 100%;
    height: 96px;
    object-fit: cover;
    border: 1px solid rgba(140,80,220,0.2);
}
@media (max-width: 760px) {
    .pg-gift-indie { padding: 32px 22px; }
    .pg-gift-indie__inner { grid-template-columns: 1fr; }
    .pg-gift-indie__imgs { display: none; }
.pg-gift-indie__title { font-size: 1.4rem; }
}

/* ===========================================================
   DISCOVERY CATALOG LAYOUT
   =========================================================== */
.catalog-hero {
    padding: 70px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(140deg, rgba(8, 12, 22, 0.92), rgba(10, 14, 24, 0.98));
    position: relative;
    overflow: hidden;
}
.catalog-hero.catalog-hero-new {
    padding: 90px 0 80px;
    margin: 28px 0 40px 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 0 1px rgba(var(--brand-rgb),0.18), 0 8px 48px rgba(0,0,0,0.55);
}
.catalog-hero.catalog-hero-new.hero-bg--poster-set2-085 {
    background: linear-gradient(160deg, rgba(10,18,36,0.58) 0%, rgba(10,18,36,0.85) 100%), url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}
.catalog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.24), transparent 34%), radial-gradient(circle at bottom left, rgba(67, 97, 238, 0.12), transparent 28%);
    opacity: 0.9;
    pointer-events: none;
}
.catalog-hero.catalog-hero-new::after {
    display: none;
}
.catalog-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 240px;
    gap: 30px;
    align-items: center;
}
.catalog-hero.catalog-hero-new .catalog-hero__inner {
    z-index: 2;
}
.catalog-hero__kicker {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(var(--brand-rgb), 0.12);
    border: 1px solid rgba(255, 102, 0, 0.35);
    color: #ffd6b6;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.catalog-hero__sub {
    color: #d2d9e8;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 560px;
}
.catalog-hero__stats {
    display: grid;
    gap: 12px;
}
.catalog-hero__stat {
    background: rgba(8, 12, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
}
.catalog-hero__stat span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #f2b086;
}
.catalog-hero__stat strong {
    font-size: 1.2rem;
    color: #fff;
}

.catalog-shell {
    padding: 46px 0 70px;
}
.catalog-shell__inner {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 30px;
}
.catalog-rail {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 120px;
    align-self: start;
}
.catalog-rail__panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: var(--shadow);
}
.catalog-rail__panel--note {
    background: linear-gradient(150deg, rgba(255, 102, 0, 0.08), rgba(8, 10, 18, 0.9));
    border-color: rgba(255, 102, 0, 0.35);
}
.catalog-rail__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.catalog-rail__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f2b086;
    margin-bottom: 6px;
    font-weight: 900;
}
.catalog-rail__reset {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
}
.catalog-rail__reset:hover { color: var(--accent-hover); }
.catalog-rail__list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
    color: #c9d2e2;
    font-size: 0.88rem;
}

.catalog-filters {
    display: grid;
    gap: 16px;
}
.catalog-search {
    display: grid;
    gap: 8px;
}
.catalog-search__row {
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
}
.catalog-search__input {
    flex: 1;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 10px 12px;
}
.catalog-search__input:focus { outline: 2px solid rgba(255, 102, 0, 0.5); }
.catalog-search__btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 900;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}
.catalog-search__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
.catalog-filter-group {
    display: grid;
    gap: 6px;
}
.catalog-filter-label {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
.catalog-filter-control {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    padding: 10px 12px;
}
.catalog-filter-control:focus { outline: 2px solid rgba(255, 102, 0, 0.5); }
.catalog-filter-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.catalog-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.86);
}
.catalog-check input[type=\"checkbox\"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.catalog-body {
    display: grid;
    gap: 24px;
    min-width: 0;
}
.catalog-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(140deg, rgba(12, 16, 28, 0.9), rgba(10, 14, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.catalog-summary__kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f6b990;
    font-weight: 900;
}
.catalog-summary__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    min-width: 260px;
}
.catalog-summary__stat {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
}
.catalog-summary__stat span {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0b089;
}
.catalog-summary__stat strong {
    font-size: 1rem;
}
.catalog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.catalog-section-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f2b086;
    font-weight: 900;
    margin-bottom: 6px;
}
.catalog-section-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}
.catalog-collections {
    display: grid;
    gap: 16px;
}
.catalog-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.catalog-collection-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 12px;
    box-shadow: var(--shadow);
}
.catalog-collection-card__head h3 {
    margin: 0;
    font-size: 1.05rem;
}
.catalog-collection-card__head p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.catalog-collection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.catalog-collection-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.catalog-collection-item:hover {
    border-color: rgba(255, 102, 0, 0.35);
    color: #fff;
}
.catalog-collection-item__name {
    font-weight: 800;
    font-size: 0.85rem;
}
.catalog-collection-item__meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}
.catalog-merch {
    display: grid;
    gap: 18px;
}
.catalog-rail-block {
    display: grid;
    gap: 12px;
}
.catalog-rail-block__header h3 {
    margin: 0;
    font-size: 1.1rem;
}
.catalog-rail-block__header p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.7);
}
.catalog-rail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.catalog-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.catalog-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.3);
    color: #f1f5ff;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.82rem;
}
.catalog-pill.is-active {
    background: rgba(0, 51, 153, 0.35);
    border-color: rgba(0, 51, 153, 0.6);
}
.catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.catalog-tag {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 0.8rem;
}

.catalog-results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.catalog-results__links {
    display: flex;
    gap: 12px;
}
.catalog-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}
.catalog-link:hover { color: #ffd7b5; }

.catalog-empty {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.catalog-card {
    background: rgba(12, 14, 22, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease;
    min-height: 100%;
}
.catalog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 102, 0, 0.35);
}
.catalog-card--compact .catalog-card__img {
    height: 160px;
}
.catalog-card--compact .catalog-card__body {
    padding: 14px;
}
.catalog-card--compact .catalog-card__price span {
    font-size: 0.98rem;
}
.catalog-card--compact .catalog-card__cta {
    flex-wrap: wrap;
}
.catalog-card__media {
    position: relative;
    background: rgba(0, 0, 0, 0.35);
}
.catalog-card__media-link {
    display: block;
}
.catalog-card__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
.catalog-card__badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.45);
    font-size: 0.74rem;
    font-weight: 800;
    color: #ffe0c5;
}
.catalog-card__badge--muted {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.18);
}
.catalog-card__badge--stock {
    left: auto;
    right: 12px;
    top: 12px;
    background: rgba(0, 180, 100, 0.25);
    border-color: rgba(0, 180, 100, 0.45);
    color: #d6ffe8;
}
.catalog-card__tier {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(0, 51, 153, 0.6);
    border: 1px solid rgba(0, 51, 153, 0.8);
}
.catalog-card__tier--entry { background: rgba(120, 120, 120, 0.5); border-color: rgba(180, 180, 180, 0.6); }
.catalog-card__tier--core { background: rgba(0, 51, 153, 0.6); border-color: rgba(0, 51, 153, 0.85); }
.catalog-card__tier--boost { background: rgba(0, 120, 180, 0.6); border-color: rgba(0, 120, 180, 0.85); }
.catalog-card__tier--ultra { background: rgba(255, 102, 0, 0.45); border-color: rgba(255, 102, 0, 0.85); }
.catalog-card__tier--elite { background: rgba(140, 80, 220, 0.5); border-color: rgba(140, 80, 220, 0.8); }

.catalog-card__body {
    padding: 18px;
    display: grid;
    gap: 12px;
    grid-template-rows: auto auto auto 1fr auto;
}
.catalog-card__meta {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #d7dfef;
    font-weight: 800;
    line-height: 1.55;
}
.catalog-card__title {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}
.catalog-card__title a {
    color: #fff;
    text-decoration: none;
}
.catalog-card__title a:hover { color: var(--accent); }
.catalog-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.catalog-card__price span {
    font-weight: 900;
    font-size: 1.05rem;
}
.catalog-card__old {
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    font-size: 0.9rem;
}
.catalog-card__availability {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.catalog-card__availability.is-soldout {
    color: #f1b3b3;
    border-color: rgba(255, 140, 140, 0.45);
}
.catalog-card__cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}
.catalog-card__btn {
    flex: 1;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 900;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
}
.catalog-card__btn[disabled] {
    background: rgba(255, 255, 255, 0.15);
    cursor: not-allowed;
}
.catalog-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.catalog-card__icon:hover { border-color: rgba(255, 102, 0, 0.6); }
.catalog-card__cta > form:first-child {
    flex: 1 1 0;
}
.catalog-card__cta > form:first-child .catalog-card__btn {
    width: 100%;
}
.catalog-card__cta > form:last-child {
    flex: 0 0 auto;
}

@media (max-width: 1320px) {
    .catalog-shell__inner {
        grid-template-columns: 1fr;
    }
    .catalog-rail {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .catalog-hero__inner {
        grid-template-columns: 1fr;
    }
    .catalog-shell__inner {
        grid-template-columns: 1fr;
    }
    .catalog-rail {
        position: static;
        grid-template-columns: 1fr;
    }
    .catalog-summary__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .catalog-hero { padding: 50px 0 40px; }
    .catalog-summary { padding: 18px; }
    .catalog-summary__stats {
        grid-template-columns: 1fr;
    }
    .catalog-card__img { height: 180px; }
}

/* ===========================================================
   DISCOVERY DESTINATIONS
   =========================================================== */
.discovery-hero {
    padding: 64px 0;
    background: linear-gradient(150deg, rgba(10, 14, 26, 0.95), rgba(8, 12, 22, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.discovery-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}
.discovery-hero__kicker {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.14);
    border: 1px solid rgba(255, 102, 0, 0.45);
    color: #ffd6b6;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.discovery-hero__sub {
    color: #cfd7e6;
    line-height: 1.7;
    max-width: 620px;
}
.discovery-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.discovery-hero__tags span {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 800;
}
.discovery-hero--games { background: linear-gradient(140deg, rgba(10, 20, 38, 0.95), rgba(8, 12, 22, 0.98)); }
.discovery-hero--consoles { background: linear-gradient(140deg, rgba(18, 12, 24, 0.95), rgba(10, 12, 20, 0.98)); }
.discovery-hero--merch { background: linear-gradient(140deg, rgba(24, 14, 10, 0.95), rgba(10, 12, 20, 0.98)); }
.discovery-hero--deals { background: linear-gradient(140deg, rgba(24, 12, 8, 0.95), rgba(10, 12, 20, 0.98)); }
.discovery-hero--stock { background: linear-gradient(140deg, rgba(10, 22, 18, 0.95), rgba(10, 12, 20, 0.98)); }

.discovery-shell {
    padding: 40px 0 70px;
}
.discovery-shell__inner {
    display: grid;
    gap: 26px;
}

.discovery-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 22px 24px;
}
.discovery-intro__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.discovery-intro__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f6b990;
    font-weight: 900;
}
.discovery-intro__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.discovery-intro__links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}
.discovery-intro__links a:hover { color: #ffd7b5; }

.discovery-shelf {
    margin-top: 30px;
}

/* ===========================================================
   NEW GIFT PAGE: /freischaltung/erststart/
   =========================================================== */
.erststart-hero {
    min-height: 440px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,51,153,0.65) 100%),
        url('/img/retro_poster_set_px1.jpg') center / cover no-repeat;
    padding: 80px 0;
}
.erststart-hero__inner { max-width: 680px; }
.erststart-hero .kicker-new { margin-bottom: 14px; }
.erststart-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 18px;
}
.erststart-hero p {
    font-size: 1.1rem;
    color: #dde4f0;
    line-height: 1.65;
    margin-bottom: 32px;
}
.erststart-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 50px 0 10px;
}
.erststart-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
}
.erststart-step__num {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 0 18px rgba(255,102,0,0.35);
}
.erststart-step h3 {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #fff;
}
.erststart-step p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.erststart-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 50px 0;
}
.erststart-offer-card {
    border-radius: 18px;
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.erststart-offer-card--a {
    background: linear-gradient(135deg, #001940 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,102,0,0.3);
}
.erststart-offer-card--b {
    background: linear-gradient(135deg, #1b0030 0%, #0c0c0c 100%);
    border: 1px solid rgba(130,70,210,0.35);
}
.erststart-offer-card__icon { font-size: 2.5rem; line-height: 1; }
.erststart-offer-card__title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}
.erststart-offer-card__text {
    color: #b0b8c8;
    font-size: 0.9rem;
    line-height: 1.65;
}
.erststart-offer-card__code {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 3px;
    background: rgba(255,102,0,0.1);
    border: 1px dashed rgba(255,102,0,0.45);
    padding: 8px 18px;
    border-radius: 8px;
    width: fit-content;
}
.erststart-cat-section { margin: 60px 0 40px; }
.erststart-cat-section h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}
.erststart-cat-section p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 28px;
}
.erststart-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.erststart-cat-tile {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    background: var(--surface);
    transition: transform .2s, border-color .2s;
    display: block;
}
.erststart-cat-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.erststart-cat-tile img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}
.erststart-cat-tile span {
    display: block;
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.03em;
}
.erststart-faq { margin: 60px 0; }
.erststart-faq h2 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
}
.erststart-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.erststart-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
}
.erststart-faq-item strong {
    display: block;
    color: #fff;
    font-weight: 900;
    margin-bottom: 7px;
}
.erststart-faq-item p { color: var(--muted); font-size: 0.87rem; line-height: 1.6; margin: 0; }
.erststart-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 50px 0;
}
.erststart-trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
}
.erststart-trust-card__icon { font-size: 2rem; margin-bottom: 10px; }
.erststart-trust-card h3 { font-size: 0.92rem; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0 0 6px; }
.erststart-trust-card p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.5; }
@media (max-width: 760px) {
    .erststart-hero { min-height: 300px; padding: 50px 0; }
    .erststart-hero h1 { font-size: 2rem; }
    .erststart-steps { grid-template-columns: 1fr; gap: 14px; margin: 36px 0 0; }
    .erststart-offer-grid { grid-template-columns: 1fr; }
    .erststart-cat-grid { grid-template-columns: 1fr 1fr; }
    .erststart-faq-grid { grid-template-columns: 1fr; }
    .erststart-trust-row { grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   GESCHENK / UEBERRASCHUNG PAGE
   =========================================================== */
.gesch-hero {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(to top, rgba(5,8,20,1) 0%, rgba(5,8,20,0.6) 45%, rgba(5,8,20,0.25) 100%),
        url('/img/mario_plush.jpg') center / cover no-repeat;
    padding: 0 0 60px;
    margin-bottom: 0;
}
.gesch-hero__inner { max-width: 700px; }
.gesch-hero .kicker-new { margin-bottom: 16px; }
.gesch-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.gesch-hero p {
    font-size: 1.1rem;
    color: #dde4f0;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 560px;
}
.gesch-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) {
    .gesch-hero { min-height: 360px; padding: 0 0 40px; }
    .gesch-hero h1 { font-size: 2rem; }
}

/* Personas grid */
.gesch-personas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 50px 0;
}
.gesch-persona {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    transition: transform .2s, border-color .2s;
    display: block;
}
.gesch-persona:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}
.gesch-persona__icon { font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.gesch-persona__title {
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 8px;
}
.gesch-persona__text { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin: 0; }
@media (max-width: 640px) {
    .gesch-personas { grid-template-columns: 1fr 1fr; }
}

/* Budget banner */
.gesch-budget-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 50px 0 30px;
}
.gesch-budget-card {
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    transition: transform .2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gesch-budget-card:hover { transform: translateY(-4px); }
.gesch-budget-card--a {
    background: linear-gradient(135deg, #0a1428 0%, #0d1020 100%);
    border: 1px solid rgba(255,102,0,0.3);
}
.gesch-budget-card--b {
    background: linear-gradient(135deg, #0a1a10 0%, #0a0a16 100%);
    border: 1px solid rgba(0,180,80,0.3);
}
.gesch-budget-card--c {
    background: linear-gradient(135deg, #1a0a28 0%, #100a1a 100%);
    border: 1px solid rgba(140,80,220,0.35);
}
.gesch-budget-card__range {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.gesch-budget-card--a .gesch-budget-card__range { color: var(--accent); }
.gesch-budget-card--b .gesch-budget-card__range { color: #3ddc84; }
.gesch-budget-card--c .gesch-budget-card__range { color: #a06aff; }
.gesch-budget-card__label {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}
.gesch-budget-card__text { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 4px 0 0; }
@media (max-width: 640px) {
    .gesch-budget-row { grid-template-columns: 1fr; gap: 12px; }
}

/* Tips grid */
.gesch-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 50px 0;
}
.gesch-tip {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.gesch-tip__num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--brand-orange);
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(255,102,0,0.3);
}
.gesch-tip h3 { font-size: 0.92rem; font-weight: 900; color: #fff; text-transform: uppercase; margin: 0 0 6px; }
.gesch-tip p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 760px) {
    .gesch-tips { grid-template-columns: 1fr; }
}

/* SEO editorial block */
.gesch-editorial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 48px 44px;
    margin: 50px 0;
}
.gesch-editorial h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}
.gesch-editorial p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin: 0 0 14px;
}
.gesch-editorial p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
    .gesch-editorial { padding: 28px 20px; }
}

/* Divider heading */
.gesch-section-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 60px 0 28px;
}
.gesch-section-divider::before,
.gesch-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.gesch-section-divider span {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    white-space: nowrap;
}

/* FAQ */
.gesch-faq { margin: 50px 0; }
.gesch-faq h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}
.gesch-faq-list { display: flex; flex-direction: column; gap: 12px; }
.gesch-faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
}
.gesch-faq-item strong { display: block; color: #fff; font-weight: 900; margin-bottom: 7px; }
.gesch-faq-item p { color: var(--muted); font-size: 0.87rem; line-height: 1.65; margin: 0; }

/* ===========================================================
   CHECKOUT
   =========================================================== */
.checkout-shell {
    padding: 40px 0 70px;
}
.checkout-hero {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: var(--shadow);
}
.checkout-hero__kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 900;
    color: #f6b990;
}
.checkout-hero h1 {
    margin: 0;
    font-size: 2.2rem;
}
 .checkout-hero h2 {
    margin: 0;
    font-size: 2.2rem;
 }
.checkout-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 640px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: start;
}
.checkout-main {
    display: grid;
    gap: 20px;
}
.checkout-form {
    display: grid;
    gap: 20px;
}
.checkout-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 22px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
}
.checkout-panel h2 {
    margin: 0;
    font-size: 1.2rem;
}
.checkout-panel__note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.checkout-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.checkout-field-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.checkout-field {
    display: grid;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}
.checkout-field span {
    font-weight: 800;
}
.checkout-field input,
.checkout-field select {
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: 700;
}
.checkout-field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}
.checkout-delivery-grid {
    display: grid;
    gap: 12px;
}
.checkout-delivery-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
}
.checkout-delivery-card input {
    margin-top: 4px;
    accent-color: var(--accent);
}
.checkout-delivery-content {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    align-items: center;
}
.checkout-delivery-meta strong {
    display: block;
    font-size: 1rem;
}
.checkout-delivery-meta span {
    color: var(--muted);
    font-size: 0.85rem;
}
.checkout-delivery-price {
    font-weight: 900;
}
.checkout-actions {
    display: grid;
    gap: 10px;
}
.checkout-terms {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}
.checkout-summary {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
}
.checkout-summary-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
}
.checkout-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.checkout-summary-header h2 {
    margin: 0;
}
.checkout-summary-count {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.checkout-summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.checkout-summary-item {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.checkout-summary-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.checkout-summary-thumb {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
}
.checkout-summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.checkout-summary-info {
    display: grid;
    gap: 4px;
}
.checkout-summary-name {
    font-weight: 800;
}
.checkout-summary-qty {
    color: var(--muted);
    font-size: 0.85rem;
}
.checkout-summary-price {
    font-weight: 900;
}
.checkout-summary-totals {
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
}
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}
.checkout-summary-row--grand {
    font-size: 1.1rem;
    font-weight: 900;
}
.checkout-summary-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}
.checkout-summary-support {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    display: grid;
    gap: 8px;
}
.checkout-summary-support h3 {
    margin: 0;
}
.checkout-summary-support p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===========================================================
   ORDER SUCCESS
   =========================================================== */
.success-shell {
    padding: 40px 0 70px;
}
.success-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 26px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}
.success-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.success-hero__icon svg {
    width: 32px;
    height: 32px;
}
.success-hero__kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 900;
    color: #f6b990;
    margin: 0 0 6px;
}
.success-hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
}
.success-hero p {
    margin: 0;
    color: var(--muted);
}
.success-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.success-email {
    margin-top: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 18px;
}
.success-email svg {
    width: 34px;
    height: 34px;
}
.success-email strong {
    display: block;
    margin-bottom: 6px;
}
.success-email p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.success-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    margin-top: 26px;
    align-items: start;
}
.success-steps {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow);
}
.success-steps h2 {
    margin: 0;
}
.success-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.success-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
}
.success-step strong {
    display: block;
    margin-bottom: 6px;
}
.success-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}
.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.success-summary {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 22px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}
.success-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.success-summary-header h2 {
    margin: 0;
}
.success-summary-delivery {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--muted);
}
.success-summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.success-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
}
.success-summary-item small {
    color: var(--muted);
    font-size: 0.8rem;
    margin-left: 6px;
}
.success-summary-totals {
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    margin: 0;
}
.success-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.success-summary-row--grand {
    font-size: 1.05rem;
    font-weight: 900;
}
.success-address {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
}
.success-address-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 900;
}
.success-address-name {
    margin: 0;
    font-weight: 900;
}
.success-address-lines,
.success-address-phone {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .checkout-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }
    .checkout-summary,
    .success-summary {
        position: static;
    }
    .checkout-field-grid--triple {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .checkout-field-grid,
    .checkout-field-grid--triple {
        grid-template-columns: 1fr;
    }
    .checkout-summary-item {
        grid-template-columns: 54px 1fr;
    }
    .checkout-summary-price {
        justify-self: start;
        grid-column: 2 / 3;
    }
    .success-hero {
        grid-template-columns: 1fr;
        text-align: left;
    }
}


/* ===========================================================
   ORDER SUCCESS
   =========================================================== */
.success-shell {
    padding: 40px 0 70px;
}
.success-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 26px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95), rgba(8, 12, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}
.success-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 102, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.success-hero__icon svg {
    width: 32px;
    height: 32px;
}
.success-hero__kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 900;
    color: #f6b990;
    margin: 0 0 6px;
}
.success-hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
}
.success-hero p {
    margin: 0;
    color: var(--muted);
}
.success-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.success-email {
    margin-top: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 18px;
}
.success-email svg {
    width: 34px;
    height: 34px;
}
.success-email strong {
    display: block;
    margin-bottom: 6px;
}
.success-email p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}
.success-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    margin-top: 26px;
    align-items: start;
}
.success-steps {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 24px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow);
}
.success-steps h2 {
    margin: 0;
}
.success-steps-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.success-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px;
}
.success-step strong {
    display: block;
    margin-bottom: 6px;
}
.success-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
}
.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.success-summary {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px 22px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}
.success-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.success-summary-header h2 {
    margin: 0;
}
.success-summary-delivery {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: var(--muted);
}
.success-summary-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.success-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
}
.success-summary-item small {
    color: var(--muted);
    font-size: 0.8rem;
    margin-left: 6px;
}
.success-summary-totals {
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    margin: 0;
}
.success-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.success-summary-row--grand {
    font-size: 1.05rem;
    font-weight: 900;
}
.success-address {
    background: rgba(8, 12, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
}
.success-address-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 900;
}
.success-address-name {
    margin: 0;
    font-weight: 900;
}
.success-address-lines,
.success-address-phone {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
    .success-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .success-hero {
        grid-template-columns: 1fr;
        text-align: left;
    }
}



/* ===============================================
   BRAND LIGHT THEME OVERRIDES
   =============================================== */
body.theme-brand {
    color: #0d0d0d;
    background-color: #f5f5f5;
    background-image:
        radial-gradient(1200px 700px at 15% 10%, rgba(255, 193, 7, 0.16), rgba(0, 0, 0, 0) 60%),
        radial-gradient(900px 560px at 85% 20%, rgba(36, 116, 255, 0.08), rgba(0, 0, 0, 0) 55%),
        linear-gradient(to bottom, rgba(245, 245, 245, 0.94), rgba(245, 245, 245, 1));
}

body.theme-brand .page-header,
body.theme-brand .home-section,
body.theme-brand .home-upgrade__panel,
body.theme-brand .home-service__inner,
body.theme-brand .home-guides__inner {
    color: #0d0d0d;
}

body.theme-brand .btn-outline {
    color: #0d0d0d;
    border-color: #0d0d0d;
}

body.theme-brand .btn-outline:hover {
    background: #0d0d0d;
    color: #fff;
}

body.theme-brand .header-main,
body.theme-brand .nav-bar,
body.theme-brand .top-bar {
    background: #ffffff;
    color: #0d0d0d;
}

body.theme-brand .top-bar {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

body.theme-brand .top-bar-usp,
body.theme-brand .top-bar-links {
    color: #0d0d0d;
}

body.theme-brand .top-bar-links a {
    color: #0d0d0d;
    font-weight: 800;
}

body.theme-brand .header-main {
    border-bottom: 3px solid #ffc107;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body.theme-brand .logo {
    color: #0d0d0d;
}

body.theme-brand .logo span {
    color: #ffc107;
}

body.theme-brand .header-brand__links a {
    color: #0d0d0d;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
}

body.theme-brand .header-actions .action-item {
    color: #0d0d0d;
}

body.theme-brand .header-actions .action-item:hover,
body.theme-brand .header-brand__links a:hover {
    color: #f9ab00;
}

body.theme-brand .header-cta {
    padding: 10px 16px;
    font-size: 0.85rem;
}

body.theme-brand .search-wrapper {
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.12);
}

body.theme-brand .search-wrapper input {
    color: #0d0d0d;
}

body.theme-brand .search-wrapper input::placeholder {
    color: rgba(0,0,0,0.55);
}

body.theme-brand .search-wrapper button {
    background: #ffc107;
    color: #0d0d0d;
}

body.theme-brand .nav-bar {
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

body.theme-brand .nav-bar a {
    color: #0d0d0d;
    font-weight: 900;
}

body.theme-brand .nav-bar a.highlight,
body.theme-brand .nav-bar a.active {
    background: rgba(255, 193, 7, 0.2);
    outline: 1px solid rgba(255, 193, 7, 0.4);
}

.header-brand__top,
.header-brand__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-brand__top {
    justify-content: space-between;
    padding: 14px 0 10px;
}

.header-brand__bottom {
    padding: 10px 0 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.header-brand__links {
    display: flex;
    gap: 16px;
}

.header-brand__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
    color: #0d0d0d;
}

.header-brand__badges span {
    background: rgba(255, 193, 7, 0.18);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 6px 10px;
    border-radius: 999px;
}

/* HERO */
body.theme-brand .home-hero {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

body.theme-brand .home-hero::before {
    content: '';
    position: absolute;
    inset: -40% 20% auto auto;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,193,7,0.4), rgba(255,193,7,0));
    opacity: 0.6;
}

body.theme-brand .home-hero__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 28px;
    position: relative;
    z-index: 1;
}

body.theme-brand .home-hero__signals {
    display: grid;
    gap: 14px;
}

body.theme-brand .home-hero__signal {
    background: #0d0d0d;
    color: #fff;
    padding: 16px 18px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
}

body.theme-brand .home-hero__signal-value {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

body.theme-brand .home-hero__content {
    padding: 6px 0;
}

body.theme-brand .home-hero__kicker {
    color: #0d0d0d;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
}

body.theme-brand .home-hero__title {
    color: #0d0d0d;
    font-size: 3rem;
}

body.theme-brand .home-hero__lead {
    color: #555;
    font-size: 1.05rem;
}

body.theme-brand .home-hero__visual {
    display: grid;
    gap: 12px;
}

body.theme-brand .home-hero__plate {
    background: #0d0d0d;
    color: #fff;
    padding: 18px;
    border-radius: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.theme-brand .home-hero__plate--alt {
    background: #ffc107;
    color: #0d0d0d;
}

/* SHORTCUTS */
body.theme-brand .home-shortcuts {
    position: relative;
    overflow: hidden;
}

body.theme-brand .home-shortcuts::before {
    content: '';
    position: absolute;
    inset: -40px;
    background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.04) 0, rgba(0,0,0,0.04) 6px, transparent 6px, transparent 14px);
    opacity: 0.5;
}

body.theme-brand .home-shortcuts__grid {
    position: relative;
    z-index: 1;
}

body.theme-brand .shortcut-tile {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* FEATURED */
body.theme-brand .home-featured {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 24px;
}

body.theme-brand .home-featured__strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
    margin: 12px 0 20px;
}

body.theme-brand .home-featured__strip span {
    background: #0d0d0d;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
}

body.theme-brand .build-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

body.theme-brand .build-card__media {
    background: #ece4da;
    border-radius: 24px 24px 0 0;
}

body.theme-brand .build-card__title a {
    color: #111 !important;
    text-decoration: none;
}

body.theme-brand .build-card__meta,
body.theme-brand .build-card__highlight {
    color: #667283;
}

body.theme-brand .build-card__meta span {
    color: #8a6e4a;
}

body.theme-brand .build-card__price {
    color: #111;
}

body.theme-brand .build-card__old {
    color: #8c95a3;
}

body.theme-brand .build-card__badge {
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    border: 0;
    border-radius: 999px;
}

body.theme-brand .home-section__link--bottom {
    display: inline-flex;
    margin-top: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* PROMOS */
body.theme-brand .home-promos__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.theme-brand .promo-panel {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

body.theme-brand .promo-panel--upgrade {
    grid-column: span 2;
    grid-row: span 2;
}

body.theme-brand .promo-panel__tag {
    background: #0d0d0d;
    color: #fff;
}

body.theme-brand .promo-panel__cta {
    color: #0d0d0d;
    font-weight: 900;
}

/* SERVICE */
body.theme-brand .home-service__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

body.theme-brand .home-service__inner::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255,193,7,0.35), rgba(255,193,7,0));
}

body.theme-brand .home-service__panel {
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #0d0d0d;
    color: #fff;
}

/* GUIDES */
body.theme-brand .home-guides__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

body.theme-brand .guide-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
}

body.theme-brand .guide-card__thumb {
    background: #0d0d0d;
    color: #fff;
}

/* UPGRADE */
body.theme-brand .home-upgrade__panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 28px;
}

body.theme-brand .home-upgrade__card {
    background: #0d0d0d;
    color: #fff;
}

@media (max-width: 980px) {
    body.theme-brand .home-hero__inner {
        grid-template-columns: 1fr;
    }
    body.theme-brand .header-brand__top,
    body.theme-brand .header-brand__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    body.theme-brand .home-promos__grid {
        grid-template-columns: 1fr;
    }
    body.theme-brand .promo-panel--upgrade {
        grid-column: auto;
        grid-row: auto;
    }
    body.theme-brand .home-service__inner,
    body.theme-brand .home-guides__inner,
    body.theme-brand .home-upgrade__panel {
        grid-template-columns: 1fr;
    }
}

body.theme-brand .home-hero {
    padding: 42px;
    background:
        linear-gradient(110deg, rgba(248, 245, 238, 0.92) 0%, rgba(248, 245, 238, 0.78) 42%, rgba(10, 16, 28, 0.2) 100%),
        url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body.theme-brand .home-hero::before {
    background:
        radial-gradient(460px 240px at 16% 18%, rgba(255, 193, 7, 0.32), transparent 70%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    opacity: 1;
}

body.theme-brand .home-hero::after {
    display: none;
}

body.theme-brand .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
    align-items: end;
}

body.theme-brand .home-hero__signals {
    grid-column: 1 / -1;
}

body.theme-brand .home-hero__signal {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-hero__signal-title {
    color: #9d5f26;
}

body.theme-brand .home-hero__signal-value,
body.theme-brand .home-hero__title {
    color: #111;
}

body.theme-brand .home-hero__content {
    max-width: none;
}

body.theme-brand .home-hero__visual {
    display: grid;
    gap: 14px;
    align-content: stretch;
}

body.theme-brand .home-hero__photo {
    min-height: 340px;
    padding: 20px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(180deg, rgba(10, 14, 22, 0.1) 0%, rgba(10, 14, 22, 0.72) 100%),
        url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

body.theme-brand .home-hero__photo-badge,
body.theme-brand .home-hero__photo-meta,
body.theme-brand .home-hero__plate {
    position: relative;
    z-index: 1;
}

body.theme-brand .home-hero__photo-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.9);
    color: #111;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

body.theme-brand .home-hero__photo-meta {
    display: grid;
    gap: 6px;
    color: #fff;
}

body.theme-brand .home-hero__photo-meta span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

body.theme-brand .home-hero__photo-meta strong {
    font-size: 1.35rem;
    line-height: 1.35;
}

body.theme-brand .home-hero__plate {
    background: rgba(255, 255, 255, 0.88);
    color: #111;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

body.theme-brand .home-hero__plate span {
    color: #8a5926;
}

body.theme-brand .home-hero__plate--alt {
    background: #111;
    color: #fff;
}

body.theme-brand .home-shortcuts {
    padding-top: 18px;
}

body.theme-brand .shortcut-tile {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    justify-content: flex-end;
    color: #fff;
    border: 0;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

body.theme-brand .shortcut-tile::before,
body.theme-brand .promo-panel::before,
body.theme-brand .home-scene-card::before,
body.theme-brand .guide-card__media::before,
body.theme-brand .home-service__photo::before,
body.theme-brand .home-upgrade__visual::before {
    content: '';
    position: absolute;
    inset: 0;
}

body.theme-brand .shortcut-tile::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.06) 0%, rgba(7, 10, 18, 0.88) 100%);
}

body.theme-brand .shortcut-tile > * {
    position: relative;
    z-index: 1;
}

body.theme-brand .shortcut-tile p {
    color: rgba(255, 255, 255, 0.82);
}

body.theme-brand .shortcut-tile__cta {
    color: #ffd36c;
}

body.theme-brand .shortcut-tile--tier {
    background: url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
}

body.theme-brand .shortcut-tile--ship {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
}

body.theme-brand .shortcut-tile--deal {
    background: url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
}

body.theme-brand .shortcut-tile--upgrade {
    background: url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

body.theme-brand .home-scene {
    border-radius: 26px;
    padding: 22px 0 8px;
}

body.theme-brand .home-scene__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 249, 238, 0.95), rgba(243, 236, 224, 0.88));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body.theme-brand .home-scene__feature {
    padding: 28px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
        url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.theme-brand .home-scene__lead {
    color: #555;
    line-height: 1.8;
    margin: 14px 0 0;
}

body.theme-brand .home-scene__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

body.theme-brand .home-scene__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.theme-brand .home-scene-card {
    position: relative;
    min-height: 280px;
    padding: 22px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

body.theme-brand .home-scene-card::before {
    background: linear-gradient(180deg, rgba(8, 10, 18, 0.08) 0%, rgba(8, 10, 18, 0.88) 100%);
}

body.theme-brand .home-scene-card > * {
    position: relative;
    z-index: 1;
}

body.theme-brand .home-scene-card__tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.88);
    color: #111;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.theme-brand .home-scene-card h3 {
    margin: 12px 0 8px;
    font-size: 1.25rem;
    line-height: 1.35;
}

body.theme-brand .home-scene-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

body.theme-brand .home-scene-card--controller {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
}

body.theme-brand .home-scene-card--board {
    background: url('/assets/img/home-boardgame-table.webp') center/cover no-repeat;
}

body.theme-brand .home-scene-card--handheld {
    background: url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

body.theme-brand .home-featured,
body.theme-brand .home-promos,
body.theme-brand .home-service,
body.theme-brand .home-guides,
body.theme-brand .home-upgrade {
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

body.theme-brand .home-featured {
    background: linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(246, 238, 223, 0.92));
}

body.theme-brand .home-featured__strip span {
    background: rgba(17, 17, 17, 0.92);
}

body.theme-brand .build-card {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

body.theme-brand .home-promos {
    background: linear-gradient(135deg, rgba(248, 245, 239, 0.96), rgba(237, 244, 248, 0.9));
}

body.theme-brand .promo-panel {
    min-height: 280px;
    border: 0;
    color: #fff;
    justify-content: flex-end;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

body.theme-brand .promo-panel::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.08) 0%, rgba(7, 10, 18, 0.9) 100%);
}

body.theme-brand .promo-panel > * {
    position: relative;
    z-index: 1;
}

body.theme-brand .promo-panel--upgrade {
    background: url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

body.theme-brand .promo-panel--bundle {
    background: url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
}

body.theme-brand .promo-panel--rush {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
}

body.theme-brand .promo-panel__tag {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.88);
    color: #111;
}

body.theme-brand .promo-panel__cta {
    color: #ffd36c;
}

body.theme-brand .home-service {
    background: linear-gradient(135deg, rgba(246, 244, 239, 0.96), rgba(232, 241, 247, 0.88));
}

body.theme-brand .home-service__inner {
    background: transparent;
    border: 0;
    padding: 0;
}

body.theme-brand .home-service__intro {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 252, 0.9));
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.theme-brand .home-service__lead,
body.theme-brand .service-rail__body p,
body.theme-brand .home-upgrade__content p,
body.theme-brand .home-upgrade__bullets li,
body.theme-brand .home-guides__feature p {
    color: #555;
}

body.theme-brand .service-rail__step {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-service__photo {
    min-height: 220px;
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
}

body.theme-brand .home-service__photo::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.08) 0%, rgba(7, 10, 18, 0.82) 100%);
}

body.theme-brand .home-service__photo span,
body.theme-brand .home-service__photo strong {
    position: relative;
    z-index: 1;
}

body.theme-brand .home-service__photo span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.82);
}

body.theme-brand .home-service__photo strong {
    margin-top: 8px;
    font-size: 1.25rem;
    line-height: 1.35;
}

body.theme-brand .home-service__panel {
    background: #111;
}

body.theme-brand .home-guides {
    background: linear-gradient(135deg, rgba(248, 243, 237, 0.96), rgba(244, 238, 249, 0.9));
}

body.theme-brand .home-guides__feature {
    background: linear-gradient(145deg, #ffffff, #f8f3ed);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

body.theme-brand .guide-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

body.theme-brand .guide-card__media {
    position: relative;
    min-height: 150px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px;
}

body.theme-brand .guide-card__media::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.08) 0%, rgba(7, 10, 18, 0.72) 100%);
}

body.theme-brand .guide-card__thumb {
    position: relative;
    z-index: 1;
    background: rgba(17, 17, 17, 0.92);
    border: 0;
}

body.theme-brand .guide-card--gba .guide-card__media {
    background: url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

body.theme-brand .guide-card--halo .guide-card__media {
    background: url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
}

body.theme-brand .guide-card--ps2 .guide-card__media {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
}

body.theme-brand .home-upgrade {
    background: linear-gradient(135deg, rgba(247, 244, 239, 0.96), rgba(243, 236, 249, 0.88));
}

body.theme-brand .home-upgrade__panel {
    background: transparent;
    border: 0;
    padding: 0;
}

body.theme-brand .home-upgrade__aside {
    display: grid;
    gap: 18px;
}

body.theme-brand .home-upgrade__visual {
    min-height: 260px;
    padding: 20px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
}

body.theme-brand .home-upgrade__visual::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.08) 0%, rgba(7, 10, 18, 0.84) 100%);
}

body.theme-brand .home-upgrade__visual span,
body.theme-brand .home-upgrade__visual strong {
    position: relative;
    z-index: 1;
}

body.theme-brand .home-upgrade__visual span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.82);
}

body.theme-brand .home-upgrade__visual strong {
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.35;
}

body.theme-brand .home-upgrade__card {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

body.theme-brand .hero-bg--poster-set1-085,
body.theme-brand .hero-bg--poster-set1-086 {
    background: linear-gradient(160deg, rgba(10, 18, 36, 0.52) 0%, rgba(10, 18, 36, 0.82) 100%), url('/assets/img/editorial-repair-desk.webp') center/cover no-repeat;
}

body.theme-brand .hero-bg--poster-set2-085,
body.theme-brand .catalog-hero.catalog-hero-new.hero-bg--poster-set2-085 {
    background: linear-gradient(160deg, rgba(10, 18, 36, 0.52) 0%, rgba(10, 18, 36, 0.82) 100%), url('/assets/img/home-handheld-closeup.webp') center/cover no-repeat;
}

body.theme-brand .hero-bg--poster-set3-085 {
    background: linear-gradient(160deg, rgba(10, 18, 36, 0.52) 0%, rgba(10, 18, 36, 0.82) 100%), url('/assets/img/home-arcade-hero.webp') center/cover no-repeat;
}

body.theme-brand .mag-thumb--poster-set2 {
    background-image: url('/assets/img/home-handheld-closeup.webp');
}

@media (max-width: 1100px) {
    body.theme-brand .home-hero__inner,
    body.theme-brand .home-scene__layout,
    body.theme-brand .home-guides__inner,
    body.theme-brand .home-upgrade__panel {
        grid-template-columns: 1fr;
    }

    body.theme-brand .home-scene__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body.theme-brand .home-hero {
        padding: 24px;
    }

    body.theme-brand .home-hero__signals,
    body.theme-brand .guide-card {
        grid-template-columns: 1fr;
    }

    body.theme-brand .home-hero__photo,
    body.theme-brand .home-scene-card,
    body.theme-brand .promo-panel,
    body.theme-brand .home-upgrade__visual {
        min-height: 220px;
    }

    body.theme-brand .home-scene__layout,
    body.theme-brand .home-featured,
    body.theme-brand .home-promos,
    body.theme-brand .home-service,
    body.theme-brand .home-guides,
    body.theme-brand .home-upgrade {
        padding: 22px;
    }
}

.header-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.header-mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #111;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #111;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: #111;
    color: #fff;
}

.top-bar,
.header-main,
.nav-bar,
.footer-main {
    background: rgba(255, 255, 255, 0.96);
    color: #111;
}

.top-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-main,
.nav-bar,
.footer-main {
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.logo,
.action-item,
.nav-bar a,
.top-bar-links a,
.footer-logo,
.footer-col a,
.footer-bottom a {
    color: #111;
}

.top-bar-usp,
.top-bar-links,
.footer-tagline,
.footer-business p,
.footer-col li,
.footer-bottom {
    color: #5b6472;
}

.search-wrapper {
    background: #f4efe7;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.search-wrapper input {
    color: #111;
}

.search-wrapper input::placeholder {
    color: rgba(17, 17, 17, 0.58);
}

.search-wrapper button {
    background: #ffc107;
    color: #111;
}

.nav-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-bar a:hover,
.action-item:hover,
.top-bar-links a:hover,
.footer-col a:hover,
.footer-bottom a:hover {
    color: #d18c00;
}

.card,
.product-card,
.pdp-related__card,
.gen-card,
.benefit-card,
.buy-category-card,
.form-card,
.method-card,
.order-summary-card-new {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.card-media,
.product-img-wrap,
.pdp-related__media {
    background: #efe8df;
}

.card-body .meta,
.product-category,
.price-old,
.footer-business,
.method-card p,
.method-card address,
.method-card .meta {
    color: #6a7280;
}

.card-body h3 a,
.product-name,
.section-title,
.faq-accordion-heading,
.method-card a,
.footer-col h3 {
    color: #111;
}

.card-actions button.ghost,
.btn-ghost {
    color: #111;
    border-color: rgba(0, 0, 0, 0.18);
}

.cookie-banner {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.12);
}

.cookie-text strong {
    color: #111;
}

.cookie-text span {
    color: #5b6472;
}

.cookie-text a {
    color: #d18c00;
}

body.theme-brand .h-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.16);
}

body.theme-brand .shortcut-tile::before,
body.theme-brand .promo-panel::before,
body.theme-brand .home-scene-card::before,
body.theme-brand .home-service__photo::before,
body.theme-brand .home-upgrade__visual::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.2) 0%, rgba(7, 10, 18, 0.9) 100%);
}

body.theme-brand .guide-card {
    min-height: 210px;
    align-items: stretch;
}

body.theme-brand .guide-card__media {
    width: 180px;
    min-height: 170px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 18px;
}

body.theme-brand .guide-card__media::before {
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.18) 0%, rgba(7, 10, 18, 0.74) 100%);
}

body.theme-brand .guide-card__content {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
}

body.theme-brand .guide-card h3 {
    margin: 0;
    color: #111;
    font-size: 1.18rem;
    line-height: 1.35;
}

body.theme-brand .guide-card p {
    margin: 0;
    color: #55606f;
    line-height: 1.72;
}

body.theme-brand .guide-card__cta {
    margin-top: auto;
}

body.theme-brand .home-service__inner {
    align-items: start;
}

body.theme-brand .service-rail__step {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

body.theme-brand .service-rail__body h3 {
    color: #111;
}

body.theme-brand .service-rail__body p {
    color: #55606f;
}

body.theme-brand .home-service__intro {
    display: grid;
    gap: 14px;
    align-content: start;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 236, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-service__lead {
    color: #55606f;
}

body.theme-brand .home-service__panel {
    background: linear-gradient(145deg, rgba(255, 249, 238, 0.95), rgba(244, 237, 227, 0.92));
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-service__panel p {
    color: #55606f;
}

body.theme-brand .home-service__photo {
    min-height: 182px;
    padding: 22px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
}

body.theme-brand .home-service__photo span,
body.theme-brand .home-service__photo strong {
    position: relative;
    z-index: 1;
}

body.theme-brand .home-curated {
    padding: 10px 0 14px;
}

body.theme-brand .home-curated__shell {
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 251, 245, 0.98), rgba(246, 240, 231, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-section__head--slider {
    align-items: flex-end;
}

body.theme-brand .home-curated__lead {
    margin: 14px 0 0;
    max-width: 860px;
    color: #55606f;
    line-height: 1.8;
}

body.theme-brand .home-slider-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

body.theme-brand .home-curated__slider {
    margin-top: 24px;
    grid-auto-columns: minmax(280px, 340px);
}

body.theme-brand .home-slider-card {
    border-radius: 22px;
    overflow: hidden;
}

body.theme-brand .home-slider-card__media {
    padding: 0;
}

body.theme-brand .home-slider-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

body.theme-brand .home-slider-card__body {
    min-height: 320px;
}

body.theme-brand .home-slider-card__text {
    margin: 0;
    min-height: 5em;
    color: #55606f;
    line-height: 1.7;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.theme-brand .home-slider-card__actions {
    margin-top: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.theme-brand .home-slider-card__view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    padding: 10px 12px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
}

body.theme-brand .home-slider-card__view:hover {
    background: #111;
    color: #fff;
}

body.theme-brand .build-grid {
    align-items: stretch;
}

body.theme-brand .build-card__body {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 12px;
    padding: 20px;
}

body.theme-brand .build-card__title {
    min-height: 0;
}

body.theme-brand .build-card__highlight {
    min-height: 0;
    color: #667283;
}

body.theme-brand .build-card__pricing {
    margin-top: auto;
}

body.theme-brand .build-card__actions {
    align-items: stretch;
    gap: 12px;
}

body.theme-brand .build-card__actions button {
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    border: 0;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(255, 193, 7, 0.28);
}

body.theme-brand .build-card__actions button:hover {
    filter: brightness(0.96);
}

body.theme-brand .build-card__actions .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f5efe6;
    color: #111;
}

body.theme-brand .build-card__actions .btn-outline:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 980px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .header-mobile-toggle {
        display: inline-flex;
    }

    .header-brand__top {
        flex-wrap: wrap;
    }

    .header-brand__nav,
    .header-brand__bottom {
        display: none;
        width: 100%;
    }

    .header-brand--menu-open .header-brand__nav {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 14px 0 2px;
    }

    .header-brand--menu-open .header-brand__bottom {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 12px;
    }

    .header-brand__links,
    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .header-brand__links a,
    .action-item {
        display: block;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(244, 239, 231, 0.92);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .quick-panel-wrap,
    .header-cta,
    .search-wrapper {
        width: 100%;
    }

    .header-brand__badges {
        width: 100%;
    }

    .nav-bar {
        display: none;
    }

    body.theme-brand .guide-card {
        flex-direction: column;
    }

    body.theme-brand .guide-card__media {
        width: 100%;
        min-height: 180px;
    }

    body.theme-brand .home-curated__shell {
        padding: 22px;
    }
}

@media (max-width: 700px) {
    body.theme-brand .home-slider-card__actions,
    body.theme-brand .build-card__actions {
        grid-template-columns: 1fr;
    }

    body.theme-brand .home-curated__slider {
        grid-auto-columns: minmax(84vw, 84vw);
    }
}

.discovery-hero,
.discovery-hero--games,
.discovery-hero--consoles,
.discovery-hero--merch,
.discovery-hero--deals,
.discovery-hero--stock,
.catalog-hero,
.catalog-hero.catalog-hero-new {
    background: linear-gradient(145deg, rgba(255, 251, 244, 0.98), rgba(245, 239, 229, 0.94));
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.discovery-hero {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.discovery-hero h1,
.catalog-hero h1,
.catalog-summary h2,
.catalog-section-header h2,
.catalog-collection-card__head h3,
.catalog-card__title a,
.catalog-rail__header h2 {
    color: #111;
}

.discovery-hero__sub,
.catalog-hero__sub,
.catalog-summary p,
.catalog-rail__header p,
.catalog-collection-card__head p,
.catalog-search__meta,
.catalog-section-meta,
.catalog-card__meta,
.catalog-card__old,
.catalog-rail__list {
    color: #5f6978;
}

.discovery-hero__kicker,
.catalog-hero__kicker,
.catalog-summary__kicker,
.catalog-section-kicker,
.catalog-rail__kicker {
    color: #b46b2a;
}

.discovery-hero__tags span,
.catalog-hero__stat,
.catalog-summary__stat,
.catalog-collection-item,
.catalog-card__badge--muted {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
}

.catalog-shell {
    background: linear-gradient(180deg, rgba(249, 246, 241, 0.78), rgba(244, 239, 232, 0));
}

.catalog-rail__panel,
.catalog-summary,
.catalog-collection-card,
.catalog-card,
.info-panel,
.page-header {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}

.page-header,
.info-panel {
    color: #111;
}

.page-header p,
.info-panel p,
.info-panel li {
    color: #5f6978;
}

.info-panel {
    background: linear-gradient(145deg, rgba(255, 250, 243, 0.98), rgba(246, 240, 231, 0.94));
}

.info-panel h2,
.info-panel h3,
.info-panel strong {
    color: #111;
    -webkit-text-fill-color: initial;
}

.info-panel::before,
.catalog-hero::after {
    opacity: 0.45;
}

.catalog-search__input,
.catalog-filter-control {
    background: #f5efe6;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111;
}

.catalog-search__btn,
.catalog-card__btn,
.catalog-card__icon {
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.catalog-check {
    color: #111;
}

.catalog-summary__stat span,
.catalog-card__availability,
.catalog-card__tier,
.catalog-card__badge {
    color: #5b6472;
}

.catalog-card__media {
    background: #efe8df;
}

.catalog-card__price span,
.catalog-collection-item__meta {
    color: #111;
}

.catalog-card__availability {
    border-color: rgba(0, 0, 0, 0.14);
}

.catalog-card__availability.is-soldout {
    color: #b44f4f;
    border-color: rgba(180, 79, 79, 0.3);
}

.header-brand__links a,
.header-actions .action-item {
    color: #111;
    text-decoration: none;
}

.header-brand__links a:hover,
.header-actions .action-item:hover {
    color: #d18c00;
}

body.theme-brand .home-curated {
    padding: 18px 0 18px;
}

body.theme-brand .home-curated__shell {
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(255, 193, 7, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 252, 247, 0.99), rgba(244, 237, 227, 0.95));
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 24px 48px rgba(28, 22, 14, 0.09);
}

body.theme-brand .home-section__head--slider {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-curated__intro {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

body.theme-brand .home-curated__intro .home-section__kicker {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.14);
    color: #a35b08;
}

body.theme-brand .home-curated__intro .home-section__title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

body.theme-brand .home-curated__lead {
    margin: 0;
    max-width: 700px;
    color: #667283;
    line-height: 1.72;
}

body.theme-brand .home-slider-controls {
    align-self: start;
    gap: 12px;
}

body.theme-brand .home-slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 227, 0.94));
    color: #111;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-slider-arrow:hover {
    transform: translateY(-2px);
    background: #111;
    color: #fff;
}

body.theme-brand .home-curated__slider {
    margin-top: 28px;
    grid-auto-columns: minmax(300px, 360px);
    gap: 18px;
}

body.theme-brand .home-slider-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

body.theme-brand .home-slider-card__media {
    position: relative;
    background: #ece4da;
}

body.theme-brand .home-slider-card__media img {
    height: 240px;
}

body.theme-brand .home-slider-card .badge {
    top: 16px;
    left: 16px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    border: 0;
}

body.theme-brand .home-slider-card__body {
    min-height: 340px;
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 14px;
    padding: 20px;
}

body.theme-brand .home-slider-card__body .meta {
    margin: 0;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #8a6e4a;
}

body.theme-brand .home-slider-card__body h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.32;
}

body.theme-brand .home-slider-card__body h3 a,
body.theme-brand .card-body h3 a {
    color: #111 !important;
    text-decoration: none;
}

body.theme-brand .home-slider-card__text {
    min-height: 4.9em;
    color: #667283;
}

body.theme-brand .home-slider-card__body .price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

body.theme-brand .home-slider-card__body .price-row strong {
    font-size: 1.2rem;
    color: #111;
}

body.theme-brand .home-slider-card__body .price-row span {
    color: #8c95a3;
}

body.theme-brand .home-slider-card__actions {
    gap: 12px;
}

body.theme-brand .home-slider-card__actions button,
body.theme-brand .home-slider-card__view {
    min-height: 48px;
    border-radius: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

body.theme-brand .home-slider-card__actions button {
    border: 0;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(255, 193, 7, 0.28);
}

body.theme-brand .home-slider-card__actions button:hover {
    filter: brightness(0.96);
}

body.theme-brand .home-slider-card__view {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f5efe6;
}

body.theme-brand .home-upgrade {
    padding-top: 18px;
}

body.theme-brand .home-upgrade__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 252, 248, 0.99), rgba(244, 239, 231, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

body.theme-brand .home-upgrade__panel::after {
    display: none;
}

body.theme-brand .home-upgrade__aside {
    display: grid;
    gap: 14px;
}

body.theme-brand .home-upgrade__visual {
    min-height: 230px;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(8, 10, 18, 0.08) 0%, rgba(8, 10, 18, 0.78) 100%),
        url('/assets/img/hero-tradein.webp') center/cover no-repeat;
    box-shadow: none;
}

body.theme-brand .home-upgrade__visual::before {
    background: linear-gradient(180deg, rgba(8, 10, 18, 0.08) 0%, rgba(8, 10, 18, 0.82) 100%);
}

body.theme-brand .home-upgrade__card {
    display: grid;
    gap: 14px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

body.theme-brand .home-upgrade__label {
    color: #8a6e4a;
}

body.theme-brand .home-upgrade__card h3,
body.theme-brand .home-upgrade__content h2 {
    color: #111;
}

body.theme-brand .home-upgrade__card p,
body.theme-brand .home-upgrade__content p,
body.theme-brand .home-upgrade__bullets li {
    color: #667283;
}

body.theme-brand .home-upgrade__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4px;
}

body.theme-brand .home-upgrade__actions .btn {
    min-height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.theme-brand .home-upgrade__actions .btn-outline {
    background: #f4efe7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

body.theme-brand .home-upgrade__content {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 8px 4px 8px 0;
}

body.theme-brand .home-upgrade__kicker {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(177, 125, 255, 0.12);
    border: 1px solid rgba(177, 125, 255, 0.24);
    color: #8850c6;
}

body.theme-brand .home-upgrade__content h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    text-transform: none;
    max-width: 12ch;
}

body.theme-brand .home-upgrade__content p {
    margin: 0;
    max-width: 56ch;
    line-height: 1.75;
}

body.theme-brand .home-upgrade__bullets {
    gap: 16px;
    padding-top: 6px;
}

body.theme-brand .home-upgrade__bullets li {
    padding-left: 24px;
}

body.theme-brand .home-upgrade__bullets li::before {
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ffc107;
    box-shadow: none;
}

.catalog-hero,
.catalog-hero.catalog-hero-new,
.discovery-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    min-height: 320px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f1e7;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.catalog-hero.catalog-hero-new {
    margin: 0 0 28px 0;
    border-radius: 0 0 30px 30px;
    border-left: 0;
    border-right: 0;
}

.catalog-hero::before,
.discovery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(94deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.84) 30%, rgba(255, 250, 243, 0.42) 52%, rgba(255, 250, 243, 0.04) 78%, rgba(255, 250, 243, 0) 100%);
    z-index: 1;
}

.catalog-hero::after,
.discovery-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 193, 7, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.02) 0%, rgba(8, 10, 18, 0.16) 100%);
    z-index: 1;
}

.catalog-hero.catalog-hero-new::after {
    display: block;
    opacity: 1;
}

.catalog-hero > .container,
.discovery-hero > .container,
.catalog-hero__inner,
.discovery-hero__inner {
    position: relative;
    z-index: 2;
}

.catalog-hero__inner,
.discovery-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 28px;
    align-items: end;
}

.catalog-hero__text {
    padding-right: 12px;
}

.catalog-hero__text,
.discovery-hero__inner > div:first-child {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.catalog-hero--catalog {
    background: url('/assets/img/home-arcade-hero.webp') right center/cover no-repeat;
}

.discovery-hero--stock {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat;
}

.discovery-hero--deals {
    background: url('/assets/img/hero-deals.webp') center/cover no-repeat;
}

.discovery-hero--games {
    background: url('/assets/img/hero-games.webp') center/cover no-repeat;
}

.discovery-hero--consoles {
    background: url('/assets/img/hero-consoles.webp') center/cover no-repeat;
}

.discovery-hero--merch {
    background: url('/assets/img/hero-merch.webp') center/cover no-repeat;
}

.catalog-hero .kicker-new,
.discovery-hero__kicker {
    width: fit-content;
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a6e4a;
    font-weight: 900;
    box-shadow: none;
}

.catalog-hero h1,
.catalog-hero-new h1,
.discovery-hero h1 {
    margin: 0;
    color: #111;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-shadow: none;
}

.catalog-hero .hero-subtitle,
.catalog-hero__sub,
.discovery-hero__sub {
    margin: 0;
    max-width: 58ch;
    color: #5e6876;
    font-size: 1.05rem;
    line-height: 1.78;
}

.catalog-hero__stats,
.discovery-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.catalog-hero__stat,
.discovery-hero__tags span {
    min-width: 132px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 760px) {
    .catalog-hero,
    .catalog-hero.catalog-hero-new,
    .discovery-hero {
        min-height: 0;
        padding: 58px 0 50px;
        background-position: center;
    }

    .catalog-hero::before,
    .discovery-hero::before {
        background: linear-gradient(180deg, rgba(255, 250, 243, 0.93) 0%, rgba(255, 250, 243, 0.82) 58%, rgba(255, 250, 243, 0.72) 100%);
    }
}

.catalog-hero__stat span,
.discovery-hero__tags span {
    color: #7a6140;
    font-weight: 800;
}

.catalog-hero__stat strong {
    color: #111;
}

.catalog-shell,
.discovery-shell {
    padding: 34px 0 76px;
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.88), rgba(255, 255, 255, 0));
}

body.catalog-page .catalog-shell {
    background: linear-gradient(180deg, #fcfaf7 0%, #f8f3eb 34%, #fcfaf7 100%);
}

body.catalog-page .catalog-rail {
    position: static;
    top: auto;
}

body.catalog-page .catalog-results__links,
body.catalog-page .catalog-rail__panel--note,
body.catalog-page .catalog-pill-row,
body.catalog-page .catalog-section-meta,
body.catalog-page .catalog-merch,
body.catalog-page .catalog-collections {
    display: none;
}

body.catalog-page .catalog-shell__inner {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 24px;
}

body.stock-page .catalog-shell__inner,
body.deals-page .catalog-shell__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 24px;
}

body.stock-page .catalog-rail,
body.deals-page .catalog-rail {
    order: 2;
    grid-column: 2;
}

body.stock-page .catalog-body,
body.deals-page .catalog-body {
    order: 1;
    grid-column: 1;
}

body.catalog-page .catalog-summary {
    background: linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(248, 242, 234, 0.96));
}

.catalog-shell__inner {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.catalog-rail {
    position: sticky;
    gap: 16px;
    top: 112px;
    z-index: 2;
    align-self: start;
}

.catalog-body {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.catalog-rail__panel,
.catalog-summary,
.catalog-collection-card,
.discovery-intro,
.catalog-empty {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.catalog-rail__panel {
    padding: 24px;
}

.catalog-rail__panel > * {
    min-width: 0;
}

.catalog-rail,
.catalog-rail__panel,
.catalog-filters,
.catalog-search,
.catalog-filter-group,
.catalog-search__row,
.catalog-search__input,
.catalog-search__btn,
.catalog-filter-control {
    min-width: 0;
}

.catalog-rail__panel,
.catalog-filters,
.catalog-search,
.catalog-filter-group,
.catalog-search__input,
.catalog-search__btn,
.catalog-filter-control {
    width: 100%;
    box-sizing: border-box;
}

.catalog-rail__panel--note {
    background: linear-gradient(145deg, rgba(255, 249, 241, 0.98), rgba(247, 240, 231, 0.95));
    border-color: rgba(0, 0, 0, 0.08);
}

.catalog-rail__header,
.catalog-summary,
.catalog-section-header,
.discovery-intro {
    gap: 16px;
}

.catalog-rail__header h2,
.catalog-summary h2,
.catalog-section-header h2,
.discovery-intro h2 {
    margin: 0;
    color: #111;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.18;
}

.catalog-rail__header p,
.catalog-summary p,
.catalog-collection-card__head p,
.discovery-intro p,
.catalog-empty p {
    margin: 0;
    color: #687283;
    line-height: 1.72;
}

.catalog-rail__kicker,
.catalog-summary__kicker,
.catalog-section-kicker,
.discovery-intro__kicker {
    color: #8a6e4a;
}

.catalog-search,
.catalog-filter-group {
    gap: 8px;
}

.catalog-search__row {
    gap: 10px;
}

.catalog-search__input,
.catalog-filter-control {
    min-height: 48px;
    border-radius: 14px;
    background: #f4efe6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

.catalog-search__btn {
    min-height: 48px;
    border-radius: 14px;
    padding: 0 18px;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    box-shadow: 0 10px 16px rgba(255, 193, 7, 0.22);
}

.catalog-filter-label,
.catalog-check {
    color: #111;
}

.catalog-filter-divider {
    background: rgba(0, 0, 0, 0.08);
}

.catalog-summary {
    position: relative;
    isolation: isolate;
    padding: 26px 28px;
}

.catalog-summary__stats {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
}

.catalog-summary__stat {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7f1e8;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.catalog-summary__stat span,
.catalog-section-meta {
    color: #7a6140;
}

.catalog-collection-grid,
.catalog-grid,
.catalog-rail-grid {
    gap: 18px;
}

.catalog-collection-card {
    padding: 18px;
}

.catalog-collection-item {
    background: #f6f0e8;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 52px;
    align-items: center;
}

.catalog-collection-item:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.catalog-collection-item__meta {
    color: inherit;
}

.discovery-intro {
    padding: 24px 26px;
}

.discovery-intro__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f4efe7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
    font-size: 0.75rem;
}

.discovery-intro__links a:hover {
    background: #111;
    color: #fff;
}

.catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 193, 7, 0.5);
}

.catalog-card__media {
    background: #ece4da;
}

.catalog-card__img {
    height: 228px;
}

.catalog-card__badge {
    background: rgba(17, 17, 17, 0.84);
    border: 0;
    color: #fff;
}

.catalog-card__badge--stock {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.catalog-card__badge--muted {
    background: rgba(17, 17, 17, 0.84);
    border: 0;
    color: #fff;
}

.catalog-card__tier {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.catalog-card__body {
    padding: 18px;
    gap: 14px;
}

.catalog-card__meta {
    color: #8a6e4a;
}

.catalog-card__title a {
    color: #111;
}

.catalog-card__price-row {
    align-items: center;
}

.catalog-card__price span {
    color: #111;
}

.catalog-card__old {
    color: #8c95a3;
}

.catalog-card__availability {
    background: #f4efe7;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.catalog-card__cta {
    gap: 12px;
}

.catalog-card__btn,
.catalog-card__icon {
    min-height: 48px;
    border-radius: 14px;
}

.catalog-card__btn {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    box-shadow: 0 10px 18px rgba(255, 193, 7, 0.24);
}

.catalog-card__btn[disabled] {
    background: #d8dbe0;
    color: #717885;
}

.catalog-card__icon {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f4efe7;
    color: #111;
}

.catalog-card__icon:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.support-hero,
.journal-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 78px;
    margin: 0 0 28px 0;
    border-radius: 0 0 30px 30px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f7f1e7;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}

.support-hero {
    min-height: 320px;
}

.support-hero::before,
.journal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(96deg, rgba(255, 250, 243, 0.97) 0%, rgba(255, 250, 243, 0.88) 34%, rgba(255, 250, 243, 0.48) 58%, rgba(255, 250, 243, 0.08) 100%);
    z-index: 1;
}

.support-hero::after,
.journal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 22%, rgba(255, 193, 7, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(8, 10, 18, 0.02) 0%, rgba(8, 10, 18, 0.14) 100%);
    z-index: 1;
}

.support-hero > .container,
.journal-hero > .container {
    position: relative;
    z-index: 2;
}

.support-hero .kicker-new,
.journal-hero .kicker-new {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a6e4a;
}

.support-hero h1,
.journal-hero h1 {
    margin: 0;
    color: #111;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.support-hero .hero-subtitle,
.journal-hero .hero-subtitle {
    margin-top: 14px;
    color: #5e6876;
    max-width: 62ch;
}

.support-hero--delivery {
    background: url('/assets/img/home-boardgame-table.webp') right center/cover no-repeat;
}

.support-hero--warranty {
    background: url('/assets/img/home-handheld-closeup.webp') right center/cover no-repeat;
}

.support-hero--contact {
    background: url('/assets/img/home-lounge-player.webp') right center/cover no-repeat;
}

.journal-hero {
    background: url('/assets/img/blog-header-bg.webp') right center/cover no-repeat;
}

body.page-support,
body.page-journal {
    background: linear-gradient(180deg, #f7f1e7 0%, #f4ede4 24%, #fcfaf7 60%, #fcfaf7 100%);
}

body.page-legal {
    background: linear-gradient(180deg, #f7f1e7 0%, #f4ede4 24%, #fcfaf7 60%, #fcfaf7 100%);
}

.support-page {
    position: relative;
    padding-top: 10px;
    padding-bottom: 84px;
    background: transparent;
    border-radius: 32px;
    isolation: isolate;
}

.support-page::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: none;
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.96), rgba(255, 255, 255, 0.88));
    z-index: 0;
}

.support-page > * {
    position: relative;
    z-index: 1;
}

.support-layout {
    gap: 28px;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    padding: 18px 0 30px;
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.96), rgba(255, 255, 255, 0.88));
    box-shadow: 0 0 0 100vmax rgba(252, 250, 247, 0.92);
    clip-path: inset(0 -100vmax);
}

.help-nav,
.policy-section,
.form-card,
.method-card {
    border-radius: 24px;
}

.help-nav {
    top: 112px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.help-nav h3,
.policy-section h2,
.contact-info h2,
.form-card h2 {
    color: #111;
}

.help-nav a {
    color: #5f6978;
    padding: 8px 0;
}

.help-nav a:hover,
.help-nav a.active {
    color: #111;
}

.help-content {
    display: grid;
    gap: 18px;
}

.policy-section {
    margin-bottom: 0;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.policy-section h2 {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.policy-section p,
.policy-section li,
.policy-section td,
.policy-section address,
.contact-info > p {
    color: #687283;
}

.returns-callout {
    background: linear-gradient(145deg, rgba(255, 249, 241, 0.98), rgba(247, 240, 231, 0.95));
    border-left-color: #ffc107;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.returns-callout p,
.returns-callout li,
.returns-callout strong {
    color: #111;
}

.data-table {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.data-table th {
    color: #111;
    background: #f7f1e8;
}

.data-table td {
    background: rgba(255, 255, 255, 0.96);
    color: #5f6978;
}

.contact-grid--support {
    gap: 28px;
}

.contact-methods {
    gap: 16px;
    margin-top: 18px;
}

.method-card {
    padding: 18px;
    align-items: flex-start;
}

.icon-circle {
    background: #f4efe7;
    color: #8a6e4a;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.journal-shell {
    margin-top: 10px;
    padding-bottom: 84px;
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.96), rgba(255, 255, 255, 0.88));
    border-radius: 32px;
    box-shadow: 0 0 0 100vmax rgba(252, 250, 247, 0.92);
    clip-path: inset(0 -100vmax);
}

.blog-card-new,
.newsletter-cta-new,
.article-wrap,
.post-body,
.post-sidebar,
.callout,
.console-rec,
.gem-entry,
.game-entry {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.blog-card-new {
    border-radius: 24px;
    overflow: hidden;
}

.blog-visual-new {
    height: 220px;
    background: #ece4da;
}

.blog-content-new {
    padding: 20px 20px 22px 20px;
}

.blog-meta-new,
.blog-excerpt-new,
.cta-inner p,
.post-body,
.callout p,
.article-body,
.article-lead {
    color: #687283;
}

.blog-tag-new {
    background: #f4efe7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a6e4a;
}

.blog-title-new,
.post-body h1,
.post-body h2,
.post-body h3,
.article-body h2,
.article-body h3,
.cta-inner h2 {
    color: #111;
}

.newsletter-cta-new {
    background: linear-gradient(145deg, rgba(255, 249, 241, 0.98), rgba(247, 240, 231, 0.95));
}

.input-group-large input {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

.field-new input,
.field-new select,
.field-new textarea,
.custom-select {
    background: #f8f4ee;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

.field-new input::placeholder,
.field-new textarea::placeholder {
    color: #8a93a1;
}

.field-new input:focus,
.field-new select:focus,
.field-new textarea:focus,
.custom-select:focus {
    background: #fff;
    border-color: rgba(255, 193, 7, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.18);
}

.post-hero {
    margin: 0 0 28px 0;
    border-radius: 0 0 30px 30px;
    border-left: 0;
    border-right: 0;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}

.post-body,
.article-wrap {
    color: #687283;
}

.callout,
.console-rec,
.gem-entry,
.game-entry {
    color: #687283;
}

@media (max-width: 1024px) {
    .support-layout {
        grid-template-columns: 1fr;
    }

    .help-nav {
        position: static;
    }
}

@media (max-width: 1100px) {
    body.theme-brand .home-section__head--slider,
    .catalog-hero__inner,
    .discovery-hero__inner,
    .catalog-shell__inner,
    body.theme-brand .home-upgrade__panel {
        grid-template-columns: 1fr;
    }

    .catalog-hero__stats,
    .discovery-hero__tags {
        justify-content: flex-start;
    }

    .catalog-rail {
        position: static;
        top: auto;
        z-index: auto;
    }

    body.stock-page .catalog-rail,
    body.deals-page .catalog-rail,
    body.catalog-page .catalog-rail,
    body.stock-page .catalog-body,
    body.deals-page .catalog-body {
        order: initial;
        grid-column: auto;
    }

    .catalog-shell__inner {
        gap: 22px;
    }

    body.catalog-page .catalog-shell__inner,
    body.stock-page .catalog-shell__inner,
    body.deals-page .catalog-shell__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 760px) {
    body.theme-brand .home-curated__shell,
    body.theme-brand .home-upgrade__panel,
    .catalog-rail__panel,
    .catalog-summary,
    .discovery-intro {
        padding: 22px;
    }

    body.theme-brand .home-curated__slider {
        grid-auto-columns: minmax(84vw, 84vw);
    }

    body.theme-brand .home-upgrade__actions,
    .catalog-search__row,
    .catalog-summary__stats {
        grid-template-columns: 1fr;
        display: grid;
    }

    .catalog-card__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-shell,
    .discovery-shell {
        padding: 22px 0 54px;
    }

    .catalog-shell__inner {
        gap: 18px;
    }

    body.catalog-page .catalog-shell__inner,
    body.stock-page .catalog-shell__inner,
    body.deals-page .catalog-shell__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-rail__panel {
        position: static;
    }

    .catalog-card__cta > form:last-child {
        flex: 1 1 auto;
    }

    .catalog-card__icon {
        width: 100%;
    }

    .support-hero,
    .journal-hero {
        min-height: 0;
        padding: 60px 0 52px;
        background-position: center;
    }

    .support-hero::before,
    .journal-hero::before {
        background: linear-gradient(180deg, rgba(255, 250, 243, 0.94) 0%, rgba(255, 250, 243, 0.84) 60%, rgba(255, 250, 243, 0.74) 100%);
    }

    .policy-section,
    .form-card,
    .help-nav,
    .newsletter-cta-new,
    .article-wrap,
    .post-body {
        padding-left: 22px;
        padding-right: 22px;
    }
}

body.page-support {
    background: linear-gradient(180deg, #f7f1e7 0%, #f4ede4 24%, #fcfaf7 60%, #fcfaf7 100%) !important;
}

body.page-journal {
    background: linear-gradient(180deg, #f7f1e7 0%, #f4ede4 24%, #fcfaf7 60%, #fcfaf7 100%) !important;
}

body > .support-page {
    background: #fcfaf7 !important;
    box-shadow: 0 0 0 100vmax #fcfaf7 !important;
    clip-path: inset(0 -100vmax) !important;
}

body > .support-page .support-layout {
    background: linear-gradient(180deg, rgba(249, 245, 239, 0.96), rgba(255, 255, 255, 0.9)) !important;
    padding: 18px 0 30px !important;
}

body > .journal-shell {
    background: #fcfaf7 !important;
    box-shadow: 0 0 0 100vmax #fcfaf7 !important;
    clip-path: inset(0 -100vmax) !important;
    padding-top: 18px !important;
}

.search-wrapper input {
    background: transparent;
    font-weight: 600;
}

.search-wrapper input::placeholder,
.catalog-search__input::placeholder {
    color: rgba(17, 17, 17, 0.72);
}

.search-wrapper button,
.catalog-search__btn {
    color: #111;
    font-weight: 900;
}

.catalog-search__input,
.catalog-filter-control {
    font-weight: 600;
}

.support-hero--help {
    background: url('/assets/img/home-arcade-hero.webp') right center/cover no-repeat;
}

.page-support .support-layout {
    align-items: start;
}

.page-support .help-nav {
    align-self: start;
}

.page-support .help-nav ul {
    display: grid;
    gap: 6px;
}

.page-support .help-nav li {
    margin-bottom: 0;
}

.page-support .help-nav a {
    padding: 10px 12px;
    border-radius: 12px;
}

.page-support .help-nav a:hover,
.page-support .help-nav a.active {
    background: #f5efe6;
    color: #111;
}

.page-support .help-content .faq-section {
    margin-bottom: 0;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
}

.page-support .help-content h2 {
    color: #111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.page-support .faq details {
    background: #fcfaf7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
}

.page-support .faq summary {
    color: #111;
    font-size: 1rem;
}

.page-support .faq details p {
    color: #687283;
}

body.pdp-view {
    background: linear-gradient(180deg, #f7f1e7 0%, #f4ede4 24%, #fcfaf7 60%, #fcfaf7 100%) !important;
}

body.pdp-view .pdp-context,
body.pdp-view .pdp-showcase__media,
body.pdp-view .pdp-purchase,
body.pdp-view .pdp-performance-card,
body.pdp-view .pdp-trust__card,
body.pdp-view .pdp-specs-board__panel,
body.pdp-view .pdp-specs-card,
body.pdp-view .pdp-specs-stack {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.06);
    color: #111;
}

body.pdp-view .pdp-context__title,
body.pdp-view .pdp-purchase__title,
body.pdp-view .pdp-section__header h2,
body.pdp-view .pdp-richtext h4,
body.pdp-view .pdp-specs-stack h3,
body.pdp-view .pdp-trust__card h3,
body.pdp-view .pdp-related__title {
    color: #111;
}

body.pdp-view .pdp-context__kicker,
body.pdp-view .pdp-showcase__kicker,
body.pdp-view .pdp-upgrade__kicker {
    color: #b46b2a;
}

body.pdp-view .pdp-context__links a,
body.pdp-view .pdp-link {
    color: #b46b2a;
}

body.pdp-view .pdp-context__links a:hover,
body.pdp-view .pdp-link:hover,
body.pdp-view .pdp-related__title:hover {
    color: #8a6e4a;
}

body.pdp-view .pdp-purchase__meta,
body.pdp-view .pdp-tier__summary,
body.pdp-view .pdp-price__old,
body.pdp-view .pdp-price__note,
body.pdp-view .pdp-section__header p,
body.pdp-view .pdp-performance-card__label,
body.pdp-view .pdp-performance-card p,
body.pdp-view .pdp-richtext p,
body.pdp-view .pdp-showcase__card,
body.pdp-view .pdp-specs-card,
body.pdp-view .pdp-specs-stack li,
body.pdp-view .pdp-related__meta,
body.pdp-view .pdp-upgrade p {
    color: #687283;
}

body.pdp-view .pdp-price__current,
body.pdp-view .pdp-related__price,
body.pdp-view .pdp-showcase__card strong,
body.pdp-view .pdp-specs-card strong {
    color: #111;
}

body.pdp-view .pdp-showcase__main,
body.pdp-view .pdp-showcase__thumb {
    background: #f4efe7;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

body.pdp-view .pdp-showcase__thumb.is-active {
    border-color: rgba(255, 193, 7, 0.75);
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

body.pdp-view .pdp-tier {
    background: rgba(255, 193, 7, 0.13);
    border: 1px solid rgba(255, 193, 7, 0.25);
    color: #92692f;
    font-size: 0.68rem;
}

body.pdp-view .pdp-tier--entry {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
    color: #687283;
}

body.pdp-view .pdp-tier--boost {
    background: rgba(0, 120, 180, 0.08);
    border-color: rgba(0, 120, 180, 0.2);
    color: #1a6e8a;
}

body.pdp-view .pdp-tier--ultra {
    background: rgba(255, 102, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.2);
    color: #b46b2a;
}

body.pdp-view .pdp-tier--elite {
    background: rgba(140, 80, 220, 0.08);
    border-color: rgba(140, 80, 220, 0.2);
    color: #7a4db0;
}

body.pdp-view .pdp-tier__summary {
    color: #687283;
    font-size: 0.88rem;
    line-height: 1.55;
}

body.pdp-view .pdp-availability {
    background: #f8f3ec;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #687283;
    font-size: 0.82rem;
    text-align: center;
}

body.pdp-view .pdp-availability.is-available {
    background: rgba(227, 246, 235, 0.95);
    border-color: rgba(20, 122, 77, 0.18);
    color: #147a4d;
}

body.pdp-view .pdp-availability.is-unavailable {
    background: rgba(255, 237, 237, 0.95);
    border-color: rgba(190, 85, 85, 0.18);
    color: #a14b4b;
}

body.pdp-view .pdp-qty {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111;
    border-radius: 14px;
    font-weight: 700;
}

body.pdp-view .pdp-cta {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    border-radius: 14px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.3);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

body.pdp-view .pdp-cta:hover {
    filter: brightness(0.96);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

body.pdp-view .pdp-related__cta {
    color: #111;
}

body.pdp-view .pdp-ghost {
    background: #f5efe6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
    border-radius: 14px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    transition: background 0.15s ease;
}

body.pdp-view .pdp-ghost:hover {
    background: #ebe3d6;
}

body.pdp-view .pdp-upgrade {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.18);
    border-radius: 16px;
}

body.pdp-view .pdp-upgrade__kicker {
    color: #92692f;
}

body.pdp-view .pdp-upgrade p {
    color: #687283 !important;
    font-size: 0.88rem;
    line-height: 1.6;
}

body.pdp-view .pdp-specs-tags span {
    background: #f5efe6;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

body.pdp-view .header-main--pdp {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.pdp-view .pdp-context,
body.pdp-view .pdp-showcase__media,
body.pdp-view .pdp-purchase,
body.pdp-view .pdp-performance-card,
body.pdp-view .pdp-trust__card,
body.pdp-view .pdp-specs-board__panel,
body.pdp-view .pdp-specs-card,
body.pdp-view .pdp-specs-stack {
    background: rgba(255, 255, 255, 0.98) !important;
}

body.pdp-view .pdp-purchase,
body.pdp-view .pdp-showcase__media,
body.pdp-view .pdp-context {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 24px;
}

body.pdp-view .pdp-purchase {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

body.pdp-view .pdp-showcase__media {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.05);
}

body.pdp-view .pdp-showcase__card,
body.pdp-view .pdp-specs-card,
body.pdp-view .pdp-specs-stack,
body.pdp-view .pdp-performance-card,
body.pdp-view .pdp-trust__card {
    background: #fcfaf7 !important;
}

body.pdp-view .pdp-purchase__meta,
body.pdp-view .pdp-tier__summary,
body.pdp-view .pdp-price__note,
body.pdp-view .pdp-price__old,
body.pdp-view .pdp-section__header p,
body.pdp-view .pdp-performance-card__label,
body.pdp-view .pdp-performance-card p,
body.pdp-view .pdp-richtext p,
body.pdp-view .pdp-showcase__card,
body.pdp-view .pdp-specs-card,
body.pdp-view .pdp-specs-stack li,
body.pdp-view .pdp-related__meta,
body.pdp-view .pdp-upgrade p {
    color: #687283 !important;
}

body.pdp-view .pdp-purchase__title,
body.pdp-view .pdp-price__current,
body.pdp-view .pdp-related__title,
body.pdp-view .pdp-section__header h2,
body.pdp-view .pdp-showcase__card strong,
body.pdp-view .pdp-specs-card strong,
body.pdp-view .pdp-richtext h4,
body.pdp-view .pdp-specs-stack h3 {
    color: #111 !important;
}

body.pdp-view .pdp-ghost {
    background: #f5efe6 !important;
    color: #111 !important;
}

body.pdp-view .pdp-cta,
body.pdp-view .pdp-related__cta {
    color: #111 !important;
}

.catalog-hero--catalog {
    background: url('/assets/img/home-arcade-hero.webp') right center/cover no-repeat !important;
}

.discovery-hero--stock {
    background: url('/assets/img/home-controller-closeup.webp') center/cover no-repeat !important;
}

.discovery-hero--deals {
    background: url('/assets/img/hero-deals.webp') center/cover no-repeat !important;
}

.page-support .help-nav {
    min-width: 0;
}

.page-support .help-content {
    min-width: 0;
}

.pdp-welcome-offer {
    margin-top: 32px;
    border-radius: 28px;
    padding: 34px;
    display: grid;
    gap: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.08);
}

.pdp-welcome-offer--satin {
    background: linear-gradient(145deg, rgba(255, 250, 243, 0.98), rgba(243, 237, 230, 0.95));
}

.pdp-welcome-offer--elite {
    background: linear-gradient(145deg, rgba(244, 247, 251, 0.98), rgba(233, 239, 246, 0.95));
}

.pdp-welcome-offer__copy {
    display: grid;
    gap: 14px;
}

.pdp-welcome-offer__eyebrow {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a6e4a;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pdp-welcome-offer h2,
.offer-story h1,
.offer-section__header h2,
.offer-card h3,
.offer-hero__content h1 {
    margin: 0;
    color: #111;
}

.pdp-welcome-offer p,
.offer-story p,
.offer-card p,
.offer-section__header p,
.offer-points li,
.offer-faq details p {
    margin: 0;
    color: #687283;
    line-height: 1.75;
}

.pdp-welcome-offer__grid,
.offer-grid,
.offer-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.pdp-welcome-offer__card,
.offer-card,
.offer-story,
.offer-faq details,
.offer-callout {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.offer-shell {
    padding: 24px 0 72px;
}

.offer-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 92px 0 84px;
    background-color: #f7f1e7;
}

.offer-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255, 250, 243, 0.96) 0%, rgba(255, 250, 243, 0.84) 38%, rgba(255, 250, 243, 0.18) 72%, rgba(255, 250, 243, 0) 100%);
}

.offer-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    display: grid;
    gap: 16px;
}

.offer-hero__kicker {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #8a6e4a;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.offer-hero--save-point {
    background: url('/assets/img/home-lounge-player.webp') center/cover no-repeat;
}

.offer-hero--memory-card {
    background: url('/img/ps2_px1.jpg') center/cover no-repeat;
}

.offer-hero--respawn {
    background: url('/assets/img/plat-xbox360.webp') center/cover no-repeat;
}

.offer-section {
    margin-top: 26px;
    display: grid;
    gap: 18px;
}

.offer-section__header {
    display: grid;
    gap: 10px;
}

.offer-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-points li {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 18px 20px;
}

.offer-faq {
    display: grid;
    gap: 14px;
}

.offer-faq details summary {
    color: #111;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 760px) {
    .pdp-welcome-offer,
    .offer-card,
    .offer-story,
    .offer-faq details,
    .offer-callout {
        padding: 20px;
    }

    .offer-hero {
        min-height: 0;
        padding: 70px 0 58px;
        background-position: center;
    }
}

.catalog-results h2,
.catalog-results h2 strong {
    color: #111;
}

.catalog-results p {
    color: #5b6472;
    font-weight: 600;
}

body.pdp-view .pdp-showcase__main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: min(72vh, 680px);
}

body.pdp-view .pdp-showcase__main img {
    width: 100%;
    max-width: 100%;
    max-height: min(72vh, 680px);
    object-fit: contain;
    object-position: center;
}

@media (max-width: 640px) {
    body.pdp-view .pdp-showcase__main {
        min-height: 240px;
        max-height: min(58vh, 420px);
    }

    body.pdp-view .pdp-showcase__main img {
        max-height: min(58vh, 420px);
    }
}

body.savepoint-page {
    background: linear-gradient(180deg, #fff8ef 0%, #f5ede2 24%, #fbfaf8 60%, #fbfaf8 100%) !important;
}

.savepoint-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 54px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 193, 7, 0.24), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(95, 145, 255, 0.26), transparent 24%),
        linear-gradient(135deg, #111623 0%, #1a1330 48%, #1f2742 100%);
}

.savepoint-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 12, 22, 0.92) 0%, rgba(9, 12, 22, 0.82) 38%, rgba(9, 12, 22, 0.28) 68%, rgba(9, 12, 22, 0.1) 100%),
        url('/assets/img/blog-header-bg.webp') right center/cover no-repeat;
    opacity: 0.92;
}

.savepoint-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
}

.savepoint-hero__content {
    display: grid;
    gap: 18px;
    max-width: 760px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(13, 19, 34, 0.92), rgba(28, 20, 49, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.savepoint-hero__kicker,
.savepoint-section-kicker {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffd979;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.savepoint-hero__content h1,
.savepoint-editorial__story h2,
.savepoint-showcase__header h2,
.savepoint-journey__intro h2,
.savepoint-banner__copy h2,
.savepoint-card h3,
.savepoint-hero-card__body strong {
    margin: 0;
    color: #111;
}

.savepoint-hero__content h1 {
    color: #fff;
}

.savepoint-hero__lead,
.savepoint-ribbon__item span,
.savepoint-editorial__story p,
.savepoint-showcase__header p,
.savepoint-card p,
.savepoint-journey__grid p,
.savepoint-faq-grid details p,
.savepoint-banner__copy p,
.savepoint-hero-card__body span {
    margin: 0;
    color: #647082;
    line-height: 1.78;
}

.savepoint-hero__lead {
    color: rgba(239, 243, 255, 0.82);
}

.savepoint-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.savepoint-hero__actions .btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.savepoint-hero__actions .btn-primary {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
}

.savepoint-hero__actions .btn-primary:hover {
    background: linear-gradient(135deg, #ffd34d, #ffc107);
}

.savepoint-hero__actions .btn-ghost {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: #111;
}

.savepoint-hero__actions .btn-ghost:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.savepoint-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.savepoint-hero__pills span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
}

.savepoint-hero__visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.savepoint-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 30px 56px rgba(0, 0, 0, 0.12);
}

.savepoint-hero-card img,
.savepoint-tile img,
.savepoint-card--photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.savepoint-hero-card--feature {
    grid-column: 1 / -1;
    min-height: 360px;
    border-color: rgba(255, 255, 255, 0.18);
}

.savepoint-hero-card--mini {
    min-height: 192px;
}

.savepoint-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0.04) 0%, rgba(5, 8, 20, 0.52) 100%);
    pointer-events: none;
}

.savepoint-hero-card__body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.98));
    backdrop-filter: blur(10px);
    display: grid;
    gap: 6px;
    z-index: 1;
}

.savepoint-shell {
    padding: 30px 0 82px;
    display: grid;
    gap: 28px;
}

.savepoint-ribbon,
.savepoint-editorial,
.savepoint-showcase,
.savepoint-journey,
.savepoint-banner,
.savepoint-faq-wrap {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 32px;
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.savepoint-ribbon {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.savepoint-ribbon__item {
    padding: 20px 22px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 250, 243, 0.98), rgba(246, 240, 232, 0.92));
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 10px;
}

.savepoint-ribbon__item strong {
    color: #111;
    font-size: 1.1rem;
}

.savepoint-editorial {
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.savepoint-editorial__story {
    display: grid;
    gap: 16px;
    align-content: center;
}

.savepoint-editorial__visuals {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

.savepoint-tile {
    overflow: hidden;
    border-radius: 24px;
    min-height: 170px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.savepoint-tile--tall {
    grid-row: 1 / span 2;
    min-height: 360px;
}

.savepoint-showcase,
.savepoint-journey,
.savepoint-faq-wrap {
    padding: 30px;
}

.savepoint-showcase__header,
.savepoint-journey__intro {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.savepoint-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.savepoint-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
    min-height: 250px;
    display: grid;
    gap: 12px;
    align-content: end;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.savepoint-card--gold {
    background: linear-gradient(145deg, #fff9ef, #f5ead8);
}

.savepoint-card--violet {
    background: linear-gradient(145deg, #f5f0ff, #ebe3ff);
}

.savepoint-card--ink {
    background: linear-gradient(145deg, #eef3ff, #dde7fb);
}

.savepoint-card--photo {
    padding: 0;
    min-height: 250px;
}

.savepoint-card__overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.95));
    backdrop-filter: blur(10px);
}

.savepoint-journey__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.savepoint-journey__grid article {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(248,244,238,0.94));
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 10px;
}

.savepoint-journey__grid strong,
.savepoint-banner__link {
    color: #111;
}

.savepoint-banner {
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background:
        linear-gradient(115deg, rgba(255, 193, 7, 0.16), rgba(255, 255, 255, 0.9) 36%, rgba(135, 85, 220, 0.14) 100%),
        rgba(255, 255, 255, 0.88);
}

.savepoint-banner__copy {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.savepoint-banner__link {
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 999px;
    background: #111;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
}

.savepoint-banner__link:hover {
    background: #ffc107;
    color: #111;
}

.savepoint-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.savepoint-faq-grid details {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(248,244,238,0.94));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.05);
}

.savepoint-faq-grid summary {
    color: #111;
    font-weight: 900;
    cursor: pointer;
}

.savepoint-faq-grid a {
    color: #92692f;
}

@media (max-width: 1080px) {
    .savepoint-hero__grid,
    .savepoint-editorial {
        grid-template-columns: 1fr;
    }

    .savepoint-card-grid,
    .savepoint-journey__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .savepoint-hero {
        padding: 64px 0 40px;
    }

    .savepoint-hero__content {
        padding: 24px;
        border-radius: 24px;
    }

    .savepoint-shell {
        gap: 20px;
    }

    .savepoint-ribbon,
    .savepoint-card-grid,
    .savepoint-journey__grid,
    .savepoint-faq-grid,
    .savepoint-editorial__visuals,
    .savepoint-hero__visual {
        grid-template-columns: 1fr;
    }

    .savepoint-showcase,
    .savepoint-journey,
    .savepoint-faq-wrap,
    .savepoint-editorial,
    .savepoint-banner {
        padding: 22px;
    }

    .savepoint-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .savepoint-hero-card--feature,
    .savepoint-tile--tall {
        min-height: 260px;
    }
}

/* Header stays white — no dark overrides */

.home-hero__welcome {
    margin-top: 18px;
    max-width: 560px;
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(18, 22, 36, 0.92), rgba(10, 14, 28, 0.95));
    border: 1px solid rgba(255, 193, 7, 0.32);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-hero__welcome-kicker {
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.18);
    color: #ffd36d;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero__welcome p {
    margin: 0;
    color: #eef2f8;
    line-height: 1.7;
}

body.checkout-page {
    color: #111;
    background-color: #f6efe5;
    background-image:
        radial-gradient(900px 540px at 10% 0%, rgba(255, 193, 7, 0.14), rgba(255, 255, 255, 0) 60%),
        radial-gradient(760px 460px at 100% 10%, rgba(42, 98, 214, 0.1), rgba(255, 255, 255, 0) 58%),
        linear-gradient(180deg, #f8f3ec 0%, #f2ebdf 100%);
}

body.checkout-page .checkout-hero,
body.checkout-page .checkout-panel,
body.checkout-page .checkout-summary-card,
body.checkout-page .checkout-summary-support {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

body.checkout-page .checkout-hero__kicker,
body.checkout-page .checkout-summary-count,
body.checkout-page .checkout-terms,
body.checkout-page .checkout-panel__note,
body.checkout-page .checkout-summary-note,
body.checkout-page .checkout-delivery-meta span,
body.checkout-page .checkout-summary-qty {
    color: #6c7383;
}

body.checkout-page .checkout-hero h1,
body.checkout-page .checkout-hero h2,
body.checkout-page .checkout-panel h2,
body.checkout-page .checkout-summary-header h2,
body.checkout-page .checkout-summary-name,
body.checkout-page .checkout-summary-price,
body.checkout-page .checkout-delivery-meta strong,
body.checkout-page .checkout-field,
body.checkout-page .checkout-summary-row,
body.checkout-page .checkout-summary-support h3,
body.checkout-page .checkout-summary-support p {
    color: #111;
}

body.checkout-page .checkout-field input,
body.checkout-page .checkout-field select,
body.checkout-page .checkout-delivery-card {
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.checkout-page .checkout-field input::placeholder {
    color: rgba(17, 17, 17, 0.5);
}

body.checkout-page .checkout-summary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.checkout-page .checkout-summary-thumb {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

body.checkout-page .checkout-summary-row--grand {
    color: #111;
}

body.checkout-page .checkout-summary-support a,
body.checkout-page .checkout-terms a {
    color: #9a6b1b;
}

@media (max-width: 1024px) {
    .header-brand--menu-open .header-brand__nav,
    .header-brand--menu-open .header-brand__bottom {
        display: flex !important;
    }

    .header-brand--menu-open .header-brand__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .header-brand__badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .home-hero__welcome {
        padding: 16px;
        border-radius: 16px;
    }

    .header-brand--menu-open .header-brand__bottom {
        display: flex !important;
        padding-top: 12px;
    }

    .header-brand--menu-open .search-wrapper {
        width: 100%;
        max-width: none;
    }

    body.checkout-page .checkout-hero,
    body.checkout-page .checkout-panel,
    body.checkout-page .checkout-summary-card,
    body.checkout-page .checkout-summary-support {
        border-radius: 16px;
        padding: 18px;
    }
}

/* ===============================================================
   CART / ORDER-SUCCESS / WISHLIST — light content overrides
   (all reuse body.checkout-page, header stays white)
   =============================================================== */

body.checkout-page .cart-head,
body.checkout-page .cart-empty__panel,
body.checkout-page .cart-card,
body.checkout-page .cart-summary,
body.checkout-page .success-hero,
body.checkout-page .success-email,
body.checkout-page .success-steps,
body.checkout-page .success-summary,
body.checkout-page .success-address,
body.checkout-page .empty-state-new {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    color: #111;
}

body.checkout-page .cart-head h2,
body.checkout-page .cart-card__title a,
body.checkout-page .cart-summary__title,
body.checkout-page .cart-summary__total,
body.checkout-page .success-hero h1,
body.checkout-page .success-steps h2,
body.checkout-page .success-summary h2,
body.checkout-page .success-step strong,
body.checkout-page .success-summary-item strong,
body.checkout-page .success-summary-row dt,
body.checkout-page .success-summary-row dd,
body.checkout-page .success-summary-row--grand dt,
body.checkout-page .success-summary-row--grand dd,
body.checkout-page .success-address-name,
body.checkout-page .empty-state-new h2 {
    color: #111;
}

body.checkout-page .cart-kicker,
body.checkout-page .cart-sub,
body.checkout-page .cart-card__meta,
body.checkout-page .cart-card__note,
body.checkout-page .cart-head-stat small,
body.checkout-page .cart-summary__line span,
body.checkout-page .success-hero__kicker,
body.checkout-page .success-hero p,
body.checkout-page .success-step p,
body.checkout-page .success-email p,
body.checkout-page .success-address-label,
body.checkout-page .success-address-lines,
body.checkout-page .success-address-phone,
body.checkout-page .success-summary-delivery,
body.checkout-page .success-summary-item span,
body.checkout-page .empty-state-new p {
    color: #5b6472;
}

body.checkout-page .cart-card__price,
body.checkout-page .cart-head-stat span,
body.checkout-page .cart-summary__total span {
    color: #111;
    font-weight: 900;
}

body.checkout-page .cart-card__img {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    background: #fff;
}

body.checkout-page .cart-qty-stepper {
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 10px;
}

body.checkout-page .cart-qty-input {
    color: #111;
    background: transparent;
}

body.checkout-page .cart-remove {
    color: #9b3a3a;
}

body.checkout-page .cart-trust-row {
    color: #5b6472;
}

body.checkout-page .cart-summary__trust a {
    color: #9a6b1b;
}

body.checkout-page .success-hero__icon {
    color: #2e7d32;
}

body.checkout-page .success-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

body.checkout-page .success-step-num {
    background: rgba(255, 193, 7, 0.15);
    color: #92692f;
}

body.checkout-page .success-email svg {
    stroke: #92692f;
}

body.checkout-page .product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
}

body.checkout-page .product-title a,
body.checkout-page .current-price {
    color: #111;
}

body.checkout-page .product-meta,
body.checkout-page .old-price {
    color: #5b6472;
}

body.checkout-page .page-hero-new h1 {
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.5px;
}

body.checkout-page .page-hero-new .kicker-new {
    display: inline-block;
    background: rgba(255, 193, 7, 0.9);
    color: #111;
    border: 0;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 900;
    text-shadow: none;
    margin-bottom: 14px;
}

body.checkout-page .page-hero-new .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

body.checkout-page .page-hero-new {
    padding: 72px 0 62px;
    border-radius: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
}


body.checkout-page .checkout-shell,
body.checkout-page .cart-shell,
body.checkout-page .success-shell {
    padding-top: 32px;
}

body.checkout-page .checkout-main,
body.checkout-page .checkout-summary {
    color: #111;
}

body.checkout-page .checkout-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    padding: 28px;
    color: #111;
}

body.checkout-page .checkout-panel h2 {
    color: #111;
}

body.checkout-page .checkout-panel__note {
    color: #6c7383;
}

body.checkout-page .checkout-field span {
    color: #444;
}

body.checkout-page .checkout-field input,
body.checkout-page .checkout-field select {
    background: #fff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
}

body.checkout-page .checkout-field input::placeholder {
    color: rgba(17, 17, 17, 0.45);
}

body.checkout-page .checkout-delivery-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
}

body.checkout-page .checkout-delivery-meta strong {
    color: #111;
}

body.checkout-page .checkout-delivery-meta span {
    color: #6c7383;
}

body.checkout-page .checkout-delivery-price {
    color: #111;
    font-weight: 900;
}

body.checkout-page .checkout-summary-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    color: #111;
}

body.checkout-page .checkout-summary-card h2 {
    color: #111;
}

body.checkout-page .checkout-summary-count {
    color: #6c7383;
}

body.checkout-page .checkout-summary-name {
    color: #111;
}

body.checkout-page .checkout-summary-qty {
    color: #6c7383;
}

body.checkout-page .checkout-summary-price {
    color: #111;
}

body.checkout-page .checkout-summary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.checkout-page .checkout-summary-thumb {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

body.checkout-page .checkout-summary-row {
    color: #444;
}

body.checkout-page .checkout-summary-row--grand {
    color: #111;
    font-weight: 900;
}

body.checkout-page .checkout-summary-note {
    color: #6c7383;
}

body.checkout-page .checkout-summary-support {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    color: #111;
}

body.checkout-page .checkout-summary-support h3 {
    color: #111;
}

body.checkout-page .checkout-summary-support p {
    color: #5b6472;
}

body.checkout-page .checkout-summary-support a,
body.checkout-page .checkout-terms a {
    color: #9a6b1b;
}

body.checkout-page .checkout-terms {
    color: #6c7383;
}

body.checkout-page .checkout-hero {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 235, 0.94));
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    color: #111;
}

body.checkout-page .checkout-hero h2 {
    color: #111;
}

body.checkout-page .checkout-hero__kicker,
body.checkout-page .checkout-hero p {
    color: #6c7383;
}

/* ── Checkout form polish ── */
body.checkout-page .checkout-field input:focus,
body.checkout-page .checkout-field select:focus {
    outline: none;
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

body.checkout-page .checkout-field input,
body.checkout-page .checkout-field select {
    padding: 12px 14px;
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.checkout-page .checkout-field span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

body.checkout-page .checkout-delivery-card {
    border-radius: 16px;
    padding: 16px 18px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

body.checkout-page .checkout-delivery-card:has(input:checked) {
    border-color: rgba(255, 193, 7, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
    background: rgba(255, 248, 230, 0.6);
}

body.checkout-page .checkout-actions .btn-orange {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.04em;
    border: 0;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 22px rgba(255, 193, 7, 0.3);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

body.checkout-page .checkout-actions .btn-orange:hover {
    filter: brightness(0.96);
    box-shadow: 0 6px 14px rgba(255, 193, 7, 0.2);
}

body.checkout-page .checkout-summary-thumb img {
    border-radius: 10px;
}

body.checkout-page .checkout-summary-row--grand {
    font-size: 1.1rem;
}

/* ── Wishlist page polish ── */
body.checkout-page .page-header-actions {
    margin: 24px 0 8px;
}

body.checkout-page .page-header-actions .ghost {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 10px 20px;
    color: #111;
    font-weight: 800;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.15s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

body.checkout-page .page-header-actions .ghost:hover {
    background: #f5efe6;
}

body.checkout-page .product-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

body.checkout-page .product-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.checkout-page .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.checkout-page .product-img {
    border-radius: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    display: block;
}

body.checkout-page .product-info {
    padding: 18px;
}

body.checkout-page .product-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

body.checkout-page .product-title {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    line-height: 1.3;
}

body.checkout-page .product-title a {
    text-decoration: none;
}

body.checkout-page .product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

body.checkout-page .current-price {
    font-size: 1.15rem;
    font-weight: 900;
}

body.checkout-page .old-price {
    text-decoration: line-through;
    font-size: 0.88rem;
}

body.checkout-page .action-buttons-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

body.checkout-page .btn-add-cart {
    flex: 1;
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(255, 193, 7, 0.25);
    transition: filter 0.15s ease;
}

body.checkout-page .btn-add-cart:hover {
    filter: brightness(0.96);
}

body.checkout-page .btn-add-cart[disabled] {
    background: #e0dbd4;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
}

body.checkout-page .icon-btn-small {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #9b3a3a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.checkout-page .icon-btn-small:hover {
    background: rgba(155, 58, 58, 0.08);
}

body.checkout-page .empty-state-new {
    text-align: center;
    padding: 60px 28px;
    border-radius: 24px;
}

body.checkout-page .empty-state-new .btn {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #111;
    border: 0;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 900;
    font-size: 0.88rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 193, 7, 0.25);
}

body.checkout-page .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

body.checkout-page .product-img-link {
    position: relative;
    display: block;
    overflow: hidden;
}
