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

:root {
    --brand-blue: #003399; /* Deep MediaMarkt Blue */
    --brand-orange: #FF6600; /* Vibrant Orange */
    --brand-blue-hover: #001a40;
    --brand-orange-hover: #cc4b00;

    --bg-dark: #0f1014;
    --bg-panel: rgba(22, 22, 26, 0.85); /* Dark translucent panels */
    --bg-panel-hover: rgba(30, 30, 36, 0.95);

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

    --border-color: rgba(255, 102, 0, 0.2); /* Orange tinted borders */
    --shadow-glow: 0 10px 30px rgba(0, 51, 153, 0.3);

    /* Alias tokens used across templates */
    --brand: var(--brand-blue);
    --brand-hover: var(--brand-blue-hover);
    --brand-rgb: 0, 51, 153;
    --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.35);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.45);

    /* Keep in palette: success/danger map to accent */
    --success: var(--accent);
    --danger: var(--accent);
}

/* 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(0, 51, 153, 0.22), rgba(0, 0, 0, 0) 60%),
        radial-gradient(1000px 600px at 85% 30%, rgba(255, 102, 0, 0.10), rgba(0, 0, 0, 0) 55%),
        linear-gradient(to bottom, rgba(15, 16, 20, 0.92), rgba(15, 16, 20, 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(0,51,153, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 4px solid var(--brand-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.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(0, 51, 153, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.logo {
    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);
}

.search-wrapper {
    display: flex;
    flex: 1;
    max-width: 620px;
    min-width: 200px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.18);
    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(0, 0, 0, 0.25);
    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);
    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;
    }
}

/* 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('/img/poster_set2.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;
}

/* 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;
    -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;
    -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 {
    background: var(--bg-panel);
    border: 1px solid var(--brand-blue);
    border-radius: 16px;
    padding: 50px;
    margin: 60px 0;
    backdrop-filter: blur(10px);
}
.info-panel h2 {
    color: var(--brand-orange);
    font-size: 2.4rem;
    margin-top: 0;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.info-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ccc;
}
.info-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 30px;
}
.info-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.feature-card {
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 15px;
}
.feature-title {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

/* Homepage: extra sections after product blocks */
.home-section {
    margin: 60px 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('/img/poster_set2.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: 60px 20px;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 16px;
    text-align: center;
}

.legal-lead {
    text-align: center;
    margin-bottom: 60px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 8px;
}

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

.legal-content p,
.legal-content li,
.legal-content address {
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.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;
}

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

.legal-content th {
    background: var(--surface-raised);
    font-weight: 700;
}

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

.help-nav {
    position: sticky;
    top: 100px;
    background: var(--surface-raised);
    padding: 24px;
    border-radius: var(--radius-sm);
}

.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: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: color 0.2s;
}

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

.help-support-link {
    margin-top: 16px;
    display: inline-block;
    color: var(--brand);
    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: var(--surface-raised);
    padding: 24px;
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-xs);
}

.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('/img/poster_set3.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 */
.site-footer {
    background: #08080a;
    padding: 60px 0 30px 0;
    border-top: 5px solid var(--brand-blue);
    margin-top: 80px;
}
.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;
    margin-left: 15px;
}
.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) {
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .info-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* -----------------------------
   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);
    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);
    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(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    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: rgba(255,255,255,0.86);
    line-height: 1.55;
}

.method-card p {
    margin: 8px 0 0 0;
    color: rgba(255,255,255,0.80);
    line-height: 1.6;
}

.method-card .meta {
    color: rgba(255,255,255,0.66);
    font-size: 0.9rem;
}

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

.form-card h2 {
    margin: 0 0 12px 0;
}

.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 rgba(255,255,255,0.10);
}

.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: 0 var(--radius-sm) var(--radius-sm) 0;
    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;
    gap: 16px;
    flex-wrap: wrap;
}

.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: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.4;
    height: calc(0.9rem * 1.4 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    line-height: 1.35;
    height: calc(1.05rem * 1.35 * 2);
    overflow: hidden;
}
.product-title a {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    -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(0,51,153,0.75);
    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: rgba(0,51,153,0.95); }
.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 {
    padding: 64px 0;
    border-radius: 16px;
    margin: 28px 0 36px 0;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* Hero backgrounds (avoid inline styles in templates) */
.hero-bg--about-tombraider {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('/img/rise_of_the_tomb_raider.jpg') center/cover no-repeat;
}

.hero-bg--poster-set1-085 {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('/img/poster_set1.webp') center/cover no-repeat;
}

.hero-bg--poster-set2-085 {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('/img/poster_set2.webp') center/cover no-repeat;
}

.hero-bg--poster-set3-085 {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('/img/poster_set3.webp') center/cover no-repeat;
}

.hero-bg--ps4-pro2-086 {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), url('/img/ps4_pro2.webp') center/cover no-repeat;
}

.hero-bg--switch-std1-085 {
    background: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('/img/switch_std1.webp') center/cover no-repeat;
}

.hero-bg--poster-set1-086 {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), url('/img/poster_set1.webp') center/cover no-repeat;
}

.hero-bg--hollow-knight-086 {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), url('/img/hollow_knight.jpg') center/cover no-repeat;
}

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

.hero-bg--sonic-figure {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), url('/img/sonic_figure_px1.jpg') center/cover no-repeat;
}

.hero-bg--zelda-botw {
    background: linear-gradient(rgba(15,23,42,0.86), rgba(15,23,42,0.86)), 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;
    }
}

/* Pokémon 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);
    padding: 20px;
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.08);
}

.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;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

/* 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);
    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);
    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);
    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: 10px; }
.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);
    border: 1px solid rgba(255,255,255,0.10);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 18px 18px 16px 18px;
    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);
    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('/img/poster_set1.webp') center/cover;
}

.promo-block--end {
    background: linear-gradient(135deg, rgba(0,0,0,0.42), rgba(0,0,0,0.92)), url('/img/poster_set3.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);
    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;
}

/* 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-header-new {
    margin: 0 0 24px 0;
}
.cart-header-new h1 {
    font-size: 2rem;
    font-weight: 900;
}

.cart-layout-new {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.cart-items-list-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item-new {
    display: flex;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    align-items: flex-start;
}

.item-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    flex: 0 0 90px;
    background: rgba(0,0,0,0.35);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
}
.item-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-details-new {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-size: 1rem;
    font-weight: 900;
    margin: 0 0 4px 0;
}
.item-title a {
    color: #fff;
    text-decoration: none;
}
.item-title a:hover {
    color: var(--accent);
}

.item-meta {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0 0 12px 0;
}

.item-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qty-form {
    display: flex;
    align-items: center;
}
.qty-select {
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.divider {
    color: rgba(255,255,255,0.25);
    user-select: none;
}

.btn-remove-text {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.88rem;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.btn-remove-text:hover {
    color: var(--accent);
}

.item-price-new {
    font-weight: 900;
    font-size: 1.05rem;
    white-space: nowrap;
    padding-left: 8px;
}

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

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    color: var(--muted);
}
.summary-line.total {
    border-bottom: none;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    padding-top: 14px;
    margin-top: 4px;
}

.secure-badge-new {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.85rem;
}

@media (max-width: 860px) {
    .cart-layout-new {
        grid-template-columns: 1fr;
    }
    .cart-summary-new {
        position: static;
    }
    .cart-item-new {
        flex-wrap: wrap;
    }
}

/* =====================================================
   About page
   ===================================================== */
.trust-strip-new {
    display: flex;
    flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}
.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 var(--line);
}
.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: var(--muted);
    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 h2 {
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0 0 16px 0;
}
.about-text-content p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 18px 0;
}
.about-image-content {
    position: sticky;
    top: 24px;
}
.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(135deg, rgba(var(--brand-rgb),0.35), rgba(0,0,0,0.5));
}

.values-section-new {
    margin-bottom: 56px;
}
.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: var(--muted);
    margin-top: 8px;
}

.about-section {
    margin-bottom: 56px;
}
.about-section h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 28px 0;
}

.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: var(--line);
}
.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: var(--muted);
    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 var(--line); }
    .trust-item-new:last-child { border-bottom: 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 {
    /* inherits .input-group-large inside */
}

/* =====================================================
   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;
    color: var(--muted);
    margin: 0;
}
.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 {
    /* first column in contact-grid; inherits grid placement */
}
.contact-form-container-new {
    /* second column in contact-grid; inherits grid placement */
}
.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 {
    /* left column */
}

.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; }
    .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; }
    .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; }
}

/* ═══════════════════════════════════════════════════════════
   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; }


