@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@600;700;800&display=swap');

:root {
    --bg: #fafaf9;
    --surface: #ffffff;
    --surface-raised: #f5f5f4;
    --text: #1c1917;
    --muted: #78716c;
    --brand: #292524;
    --brand-soft: #f5f5f4;
    --accent: #d97706;
    --accent-dark: #b45309;
    --accent-light: #fef3c7;
    --secondary: #7c3aed;
    --danger: #dc2626;
    --line: #e7e5e4;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.1);
    --gap: clamp(16px, 3vw, 32px);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ── Base Button Styles ── */
button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}

button:hover,
.btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

button.ghost,
.btn.ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

button.ghost:hover,
.btn.ghost:hover {
    border-color: var(--brand);
    background: var(--surface-raised);
}

.btn.small,
button.small {
    padding: 6px 14px;
    font-size: 0.82rem;
}

button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* Reset for non-styled buttons */
.slider-arrow,
.icon-btn,
details summary,
.radio input,
.filter-check input,
input[type="checkbox"],
input[type="radio"],
select {
    background: revert;
    border: revert;
    color: revert;
    padding: revert;
    border-radius: revert;
    font-weight: revert;
}

/* ── Badges ── */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-xs);
    z-index: 1;
    letter-spacing: 0.02em;
}

.badge-deal {
    background: var(--danger);
    color: #fff;
}

.badge-out {
    background: var(--brand);
    color: #fff;
    opacity: 0.85;
}

.badge-new {
    background: var(--accent);
    color: #fff;
}

/* ── Header Bubble Counts ── */
.bubble {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--accent);
    border-radius: 99px;
    pointer-events: none;
}

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

.container {
    width: min(1180px, 92vw);
    margin-left: auto;
    margin-right: auto;
}

/* ── Header & Navigation ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.3s ease;
}

.header-main {
    padding: 0;
}

.nav-row {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 16px;
    border-radius: 99px;
    transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--text);
    background: var(--surface-raised);
}

.main-nav a.highlight {
    color: var(--accent);
}

.main-nav a.highlight:hover {
    background: var(--accent-light);
}

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

.search-bar {
    position: relative;
    width: 240px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

.search-bar input {
    width: 100%;
    height: 40px;
    padding: 0 16px 0 40px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--surface-raised);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.search-bar input:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
    font-size: inherit;
    line-height: normal;
}

.icon-btn:hover,
.icon-btn[aria-expanded="true"] {
    background: var(--surface-raised);
    border-color: var(--line);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

.cart-dropdown {
    position: relative;
}

.mini-cart {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 360px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 50;
}

.cart-dropdown.open .mini-cart,
.cart-dropdown:hover .mini-cart,
.cart-dropdown:focus-within .mini-cart {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mini-cart-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.mini-cart-body {
    max-height: 320px;
    overflow-y: auto;
    padding: 0;
}

.empty-msg {
    padding: 32px;
    text-align: center;
    color: var(--muted);
}

.mini-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mini-cart-items li {
    border-bottom: 1px solid var(--line);
}

.mini-cart-items .item-link {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 16px 20px;
    transition: background 0.2s;
}

.mini-cart-items .item-link:hover {
    background: var(--surface-raised);
}

.mini-cart-items .item-link img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: var(--surface-raised);
}

.item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.item-info .name {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
}

.item-info .price {
    font-size: 0.85rem;
    color: var(--muted);
}

.mini-cart-foot {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--surface-raised);
    border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
    .nav-row { height: 64px; }
    .main-nav { display: none; }
    .search-bar { display: none; }
}

.hero {
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--brand);
    color: #fff;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-bg.webp') center/cover no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 80px) 20px;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-visual {
    display: none;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217,119,6,0.15);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
}

.hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.hero p {
    margin: 0;
    opacity: 0.6;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-actions .btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    font-size: 0.93rem;
}

.hero-actions .btn:hover {
    background: var(--accent-dark);
}

.hero-actions .btn.ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-actions .btn.ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.4);
}

.section {
    margin-top: 0;
    margin-bottom: 32px;
}

/* ── Welcome Strip — now a single-line scrolling ticker ── */
.welcome-strip {
    background: var(--surface);
    color: var(--muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.welcome-strip-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: ticker 30s linear infinite;
    width: max-content;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.welcome-strip-text {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.82rem;
}

.welcome-strip-text strong {
    color: var(--accent-dark);
    font-size: .82rem;
    white-space: nowrap;
}

.welcome-strip-text span {
    font-size: .82rem;
    color: var(--muted);
}

.welcome-strip-perks {
    display: flex;
    gap: 32px;
    white-space: nowrap;
}

.welcome-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.welcome-perk svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

.welcome-perk span {
    font-size: .82rem;
    color: var(--muted);
}

/* ── Promo Banner ── */
.promo-banner-section {
    margin-bottom: 32px;
    overflow: hidden;
}

.promo-banner {
    background: linear-gradient(135deg, var(--brand) 0%, #44403c 100%);
    color: #fff;
    display: grid;
    grid-template-columns: 340px 1fr;
    min-height: 200px;
    overflow: hidden;
    border-radius: var(--radius);
}

.promo-banner-left {
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.promo-banner-left::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.promo-banner-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.promo-banner-title {
    margin: 0;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.promo-banner-title span {
    color: var(--accent);
}

.promo-banner-title {
    font-family: 'Syne', sans-serif;
}

.promo-banner-sub {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.promo-banner-discount {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 8px;
    width: fit-content;
}

.promo-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.promo-banner-actions .btn {
    background: #fff;
    color: var(--brand);
    font-weight: 700;
}

.promo-banner-actions .btn:hover {
    background: var(--accent);
    color: #fff;
}

.promo-banner-actions .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.promo-banner-actions .btn.ghost:hover {
    border-color: #fff;
    color: #fff;
}

.promo-banner-right {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.promo-banner-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, var(--brand), transparent);
    z-index: 1;
    pointer-events: none;
}

.promo-products {
    display: flex;
    gap: 2px;
    overflow: hidden;
    width: 100%;
}

.promo-product {
    flex: 1;
    background: rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.2s;
}

.promo-product:hover {
    background: rgba(255,255,255,0.1);
}

.promo-product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
}

.promo-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.promo-product:hover .promo-product-img img {
    transform: scale(1.04);
}

.promo-product-info {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-product-brand {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.promo-product-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-product-badge {
    display: inline-flex;
    align-items: center;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-product-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.promo-product-old {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
}

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

    .promo-banner-right {
        display: none;
    }
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
}

.slider-section {
    margin-bottom: 32px;
    overflow: hidden;
}

.slider-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 max(16px, calc((100vw - 1180px) / 2));
}

.slider-head h2 {
    margin: 0;
}

.slider-head-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-arrows {
    display: flex;
    gap: 6px;
}

.slider-arrow {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: var(--radius-xs);
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
    font-size: inherit;
    line-height: normal;
}

.slider-arrow:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.h-scroll {
    display: flex;
    align-items: stretch;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.h-scroll > .card {
    height: auto;
}

.h-scroll::-webkit-scrollbar {
    height: 6px;
}

.h-scroll::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 4px;
}

.h-scroll::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 4px;
}

.h-scroll > * {
    scroll-snap-align: start;
    flex: 0 0 260px;
}

/* ── Modern Product Page ── */
.product-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 16px;
}

.main-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-thumb {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.product-details {
    padding-top: 20px;
}

.product-cat {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
}

.product-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.product-price-box {
    background: var(--surface-raised);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-bottom: 32px;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #15803d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.stock-status.out {
    color: var(--danger);
}

.stock-dot {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.big-price {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.big-old-price {
    font-size: 1.2rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 400;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.btn-huge {
    padding: 18px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
    margin: 32px 0;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.spec-item dt {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.spec-item dd {
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .product-hero {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: static;
    }
}


.layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.filters,
.summary,
.card,
.empty-state,
.product-layout,
.basket-item,
.content-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.content-card {
    padding: 24px;
}

.content-card.inner {
    padding: 20px;
    box-shadow: none;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.bullet {
    margin: 10px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

.notice {
    margin: 14px 0;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.success-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.summary-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: grid;
    gap: 8px;
}

.summary-lines li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--brand-soft);
}

.summary-lines small {
    color: var(--muted);
    font-size: 0.86em;
}

.success-totals {
    display: grid;
    gap: 8px;
    margin: 0;
}

.success-totals div {
    display: flex;
    justify-content: space-between;
}

.success-totals .grand {
    font-size: 1.1rem;
    font-weight: 800;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.field {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

.span-2 {
    grid-column: span 2;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    background: #fff;
    font-size: 0.92rem;
    transition: border-color .2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

textarea {
    resize: vertical;
}

.delivery-box {
    margin: 12px 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--brand-soft);
}

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

.radio {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.radio + .radio {
    margin-top: 10px;
}

.radio input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.radio span {
    display: grid;
    gap: 2px;
    color: var(--text);
}

.radio small {
    color: var(--muted);
}

.fine-print {
    color: var(--muted);
    font-size: 0.86rem;
}

.faq {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 16px 20px;
}

.faq details[open] {
    border-color: var(--accent);
    background: var(--accent-light);
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.93rem;
    color: var(--text);
    font-family: 'Syne', sans-serif;
}

.faq p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.87rem;
}

.filters {
    align-self: start;
    padding: 16px;
    position: sticky;
    top: 94px;
}

.filters h2 {
    margin: 0 0 10px;
}

.filter-form {
    display: grid;
    gap: 10px;
}

.filter-form label {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

select,
input[type="number"] {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    background: #fff;
    font-size: 0.9rem;
}

.check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
}

.check input {
    width: 18px;
    height: 18px;
}

.text-link {
    color: var(--accent-dark);
    font-weight: 600;
    transition: color .15s;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
}

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

.result-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-form select {
    width: auto;
    min-width: 190px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.grid.compact {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

/* ── Footer Unique Rules ── */
.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons img {
    width: 38px;
    height: auto;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
}

.newsletter-box {
    background: rgba(255,255,255,0.05);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-box h3 {
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 12px;
}

.newsletter-box p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Card Fixes ── */
.card {
    position: relative; /* Essential for link overlay */
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
    z-index: 2;
}

.card-media {
    position: relative;
    aspect-ratio: 4/3;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
}

.card-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s;
}

.card:hover .card-media img {
    transform: scale(1.05);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.meta {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card h3 a {
    text-decoration: none;
}

.card h3 a::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 8px;
}

.price-row strong {
    font-size: 1.05rem;
    color: var(--brand);
}

.price-row span {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: line-through;
}

/* ── Games Page Info Block ── */
.info-block-dark {
    background: var(--brand);
    color: #fff;
    padding: 64px 0;
    margin-top: 80px;
}

.info-block-dark h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.info-block-dark p.intro {
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.quality-grid {
    display: grid;
    gap: 32px;
    margin-top: 48px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: left;
}

.quality-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.quality-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ── Consoles Page Info Block ── */
.info-block-split {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 64px 0;
    margin-top: 80px;
}

.info-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.info-split-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.info-split-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.refurb-list li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.refurb-list span {
    color: var(--accent);
    font-weight: bold;
}

.packaging-card {
    background: var(--surface-raised);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.packaging-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.packaging-card h3 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 12px;
}

.packaging-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .info-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.card-actions {
    padding-top: 10px;
    display: flex;
    gap: 8px;
    opacity: 1;
    transform: none;
    position: relative;
    z-index: 2;
}

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

.card-actions button {
    width: 100%;
    padding: 8px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
    background: var(--brand);
    color: #fff;
    border: 1px solid var(--brand);
    border-radius: var(--radius-xs);
}

.card-actions button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.card-actions button.ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.card-actions button.ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.card-actions .icon-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
}

/* ── Merch Page Info Block ── */
.merch-info-section {
    margin-top: 64px;
    margin-bottom: 64px;
}

.merch-info-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.merch-info-section p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 32px;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.merch-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.merch-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.merch-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Syne', sans-serif;
}

.merch-card p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.badge-stock {
    background: var(--surface);
    color: var(--text);
    right: auto;
    left: 10px;
    top: 10px;
    border: 1px solid var(--line);
}

/* h-scroll card sizing handled in main .h-scroll block */

/* ── Deals Highlight Section ── */
.deals-highlight-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 50%, #fefce8 100%);
    border-top: 3px solid var(--accent);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    margin-bottom: 32px;
}

.deals-highlight-section .section-head h2 {
    color: var(--accent-dark);
}

.deal-card {
    border-color: var(--accent);
}

.deal-card:hover {
    border-color: var(--accent-dark);
}

.page-space {
    padding: 26px 0 40px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 16px;
}

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

.image-hint {
    color: var(--muted);
    font-size: 0.86rem;
}

.product-content h1 {
    margin: 8px 0;
}

.specs {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.specs div {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: 1px dashed var(--line);
    border-radius: 8px;
}

.specs dt {
    color: var(--muted);
}

.description {
    line-height: 1.5;
}

.related {
    margin-top: 20px;
}

.basket-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 14px;
}

.basket-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.basket-item h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.line-total {
    font-weight: 700;
    align-self: center;
}

.summary {
    align-self: start;
    padding: 14px;
    position: sticky;
    top: 92px;
}

.summary h2 {
    margin-top: 0;
}

.summary dl {
    display: grid;
    gap: 8px;
    margin: 0 0 12px;
}

.summary dl div {
    display: flex;
    justify-content: space-between;
}

.summary .grand {
    font-size: 1.1rem;
    font-weight: 800;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.full {
    width: 100%;
    margin-bottom: 8px;
}

.empty-state {
    padding: 30px;
    text-align: center;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0f172a;
    color: #fff;
    z-index: 9999;
    border-top: 3px solid var(--accent);
    box-shadow: 0 -4px 24px rgba(15,23,42,0.4);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-banner-text strong {
    font-size: .95rem;
    color: var(--accent);
}

.cookie-banner-text span {
    font-size: .82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    font-size: .88rem;
    padding: 8px 18px;
    white-space: nowrap;
}

.cookie-banner-actions .btn.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    font-size: .88rem;
    padding: 8px 18px;
}

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; text-align: center; }
}

/* ── Catalog & Filters ── */
.catalog-hero {
    background: linear-gradient(135deg, #0f172a 0%, #164e63 60%, #0f172a 100%);
    color: #fff;
    padding: clamp(28px, 5vw, 52px) 0;
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-games.webp') center/cover no-repeat;
    opacity: 0.18;
}

.catalog-hero .container {
    position: relative;
    z-index: 1;
}

.catalog-hero h1 {
    margin: 0 0 6px;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-family: 'Syne', sans-serif;
}

.catalog-hero p {
    margin: 0;
    opacity: .8;
    font-size: .95rem;
    max-width: 60ch;
}

.catalog-hero .kicker {
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 64px;
}

.filter-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.filter-panel h2 {
    margin: 0 0 20px;
    font-size: 1.1rem;
    font-family: 'Syne', sans-serif;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-group select:hover,
.filter-group select:focus {
    border-color: var(--accent);
    outline: none;
}

.filter-group .check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
}

.filter-group .check-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    border-radius: 4px;
}

.filter-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 20px 0;
}

.filter-reset {
    font-size: .85rem;
    color: var(--muted);
    display: block;
    text-align: center;
    margin-top: 16px;
}

.result-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.result-toolbar h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--brand-soft);
    border: 1px solid var(--accent);
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
}

.active-filter-tag a {
    color: var(--muted);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.active-filter-tag a:hover {
    color: var(--danger);
}

.cat-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cat-pills a {
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.cat-pills a:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.cat-pills a.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--brand);
    font-weight: 700;
}

@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filter-panel {
        position: static;
        margin-bottom: 32px;
    }
}

.site-footer {
    border-top: none;
    padding: 56px 0 32px;
    color: rgba(255,255,255,0.6);
    background: var(--brand);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    text-align: left;
    max-width: none;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px;
}

.footer-brand {
    text-align: left;
}

.footer-brand strong {
    display: inline-block;
    margin-bottom: 6px;
    color: #fff;
}

.footer-brand p {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links strong {
    display: block;
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    height: 40px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}

.newsletter-form button {
    height: 40px;
    border-radius: var(--radius-xs);
    padding: 0 18px;
    background: var(--accent);
}

.newsletter-form button:hover {
    background: var(--accent-dark);
}

.footer-links a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    transition: color .15s;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-fine {
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 32px;
    grid-column: 1 / -1;
}

.footer-fine p {
    margin: 0 0 4px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-fine a {
    color: rgba(255,255,255,0.4);
}

/* ── Info Pages (About, Help, Contact) ── */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #164e63 100%);
    color: #fff;
    padding: clamp(48px, 6vw, 80px) 0;
    margin-bottom: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/page-hero-bg.webp') center/cover no-repeat;
    opacity: 0.15;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-family: 'Syne', sans-serif;
}

.page-hero p {
    margin: 0;
    opacity: .9;
    font-size: 1.15rem;
    max-width: 60ch;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 64px;
}

.about-section h2 {
    font-size: 2rem;
    margin: 0 0 24px;
    font-family: 'Syne', sans-serif;
}

.about-section p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 20px;
    max-width: 75ch;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    border-top: 4px solid var(--accent);
}

.value-card .icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.value-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Syne', sans-serif;
}

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

.trust-strip {
    background: var(--surface-raised);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    margin-bottom: 64px;
}

.trust-item strong {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-dark);
    margin-bottom: 4px;
    font-family: 'Syne', sans-serif;
    line-height: 1;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline {
    display: grid;
    gap: 0;
    position: relative;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.timeline-item {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    border: 4px solid var(--surface);
    box-shadow: 0 0 0 1px var(--line);
}

.timeline-content h3 {
    margin: 8px 0 8px;
    font-size: 1.2rem;
    font-family: 'Syne', sans-serif;
}

/* Help Layouts */
.help-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

.help-nav {
    position: sticky;
    top: 90px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.help-nav h3 {
    margin: 0 0 16px;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.help-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.help-nav a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    transition: all 0.2s;
}

.help-nav a:hover {
    background: var(--brand-soft);
    color: var(--brand);
}

.help-nav a.active {
    background: var(--brand);
    color: #fff;
}

.help-content h1 {
    font-size: 2.5rem;
    margin: 0 0 16px;
    font-family: 'Syne', sans-serif;
}

.help-content .meta {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 60ch;
}

.faq-section {
    margin-bottom: 48px;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    font-family: 'Syne', sans-serif;
}

.delivery-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.delivery-table th {
    background: var(--surface-raised);
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
}

.delivery-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.delivery-table tr:last-child td {
    border-bottom: none;
}

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

.toast-host {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    gap: 10px;
    z-index: 99;
}

.toast {
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: min(420px, 90vw);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.toast strong {
    font-size: 0.95rem;
}

/* ── Homepage Sections ── */
.welcome-strip {
    background: #0f172a;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 0;
    overflow: hidden;
}

.welcome-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-strip-text {
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.welcome-strip-perks {
    display: flex;
    gap: 24px;
    z-index: 2;
    background: #0f172a;
    padding-left: 24px;
}

.welcome-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
    margin-top: 32px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.wide {
    grid-column: span 2;
}

.bento-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-bg {
    transform: scale(1.05);
}

.bento-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    width: 100%;
}

.bento-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 4px;
}

.bento-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.bento-item.trade-in {
    background: var(--brand);
}

.bento-item.trade-in .bento-content {
    background: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.bento-item.trade-in svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: var(--accent);
}

.bento-item.trade-in .bento-title {
    font-size: 1.2rem;
}

.spotlight-section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    margin: 64px 0;
}

.spotlight-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-tag {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.spotlight-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 16px;
    line-height: 1.1;
}

.spotlight-desc {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.spotlight-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.spotlight-old-price {
    font-size: 1.25rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500;
}

.spotlight-visual {
    background: var(--surface-raised);
    position: relative;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Blog Page ── */
.blog-header {
    text-align: center;
    padding: 80px 0;
    background: var(--brand) url('/assets/img/blog-header-bg.webp') center/cover no-repeat;
    background-blend-mode: overlay;
    color: #fff;
    position: relative;
    border-bottom: 1px solid var(--line);
    margin-bottom: 64px;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Syne', sans-serif;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.blog-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-visual {
    aspect-ratio: 16/10;
    background: var(--surface-raised);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.blog-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-visual img {
    transform: scale(1.04);
}

.blog-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.03);
    transition: opacity 0.2s;
}

.blog-card:hover .blog-visual::after {
    opacity: 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-tag {
    color: var(--accent);
}

.blog-title {
    font-size: 1.5rem;
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
    margin: 0;
    transition: color 0.2s;
}

.blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-excerpt {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsletter-cta {
    background: #0f172a;
    color: #fff;
    border-radius: var(--radius);
    padding: 64px 24px;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.newsletter-cta h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    margin: 0 0 16px;
}

.newsletter-cta p {
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

.newsletter-form-large {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form-large input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.newsletter-form-large button {
    background: #fff;
    color: #0f172a;
}

/* ── Trade-In Page ── */
.trade-hero {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--radius);
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.trade-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-tradein.webp') center/cover no-repeat;
    opacity: 0.25;
}

.trade-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Syne', sans-serif;
    margin: 0 0 16px;
    position: relative;
}

.trade-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 32px;
    color: #cbd5e1;
    position: relative;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.step-card h3 {
    margin-top: 16px;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.trade-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-raised);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.radio-grid {
    display: grid;
    gap: 12px;
}

.radio-option {
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option input:checked + .radio-label {
    border-color: var(--accent);
    background: #fffbeb;
}

.radio-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--line);
    border-radius: 50%;
    margin-right: 12px;
    display: grid;
    place-items: center;
}

.radio-option input:checked + .radio-label .radio-check {
    border-color: var(--accent);
}

.radio-option input:checked + .radio-label .radio-check::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

/* ── Cart Page ── */
.basket-page {
    padding-top: 40px;
    padding-bottom: 80px;
}

.basket-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.basket-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.basket-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.basket-img {
    aspect-ratio: 1;
    background: var(--surface-raised);
    border-radius: var(--radius-sm);
    object-fit: contain;
    padding: 8px;
}

.basket-details h2 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-family: 'Syne', sans-serif;
}

.basket-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-raised);
}

.qty-control select {
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-weight: 600;
    cursor: pointer;
}

.remove-link {
    font-size: 0.85rem;
    color: var(--danger);
    text-decoration: underline;
    margin-left: 16px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.line-price {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.summary-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand);
    border-top: 1px solid var(--line);
    padding-top: 16px;
    margin-top: 16px;
    margin-bottom: 32px;
}

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

/* ── Contact Page ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-soft);
    display: grid;
    place-items: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Syne', sans-serif;
}

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

.map-frame {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 24px;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 240px;
    }
    .spotlight-section {
        grid-template-columns: 1fr;
    }
    .spotlight-visual {
        height: 300px;
        order: -1;
    }
    .trade-form-section {
        grid-template-columns: 1fr;
    }
    .basket-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .welcome-strip-perks {
        display: none;
    }
}

/* ── Collections / Franchises ── */
.collections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .collections {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .collection-card {
        min-height: 120px;
        font-size: 1.1rem;
    }
}

.collection-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Syne', sans-serif;
    text-align: center;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.collection-card:hover::before {
    background: rgba(0,0,0,0);
}

.collection-card strong {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* franchise background images set in franchise color block below */

/* ── Features Grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.feature-card svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Syne', sans-serif;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Policy Sections (Delivery, Returns) ── */
.policy-section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 48px;
}

.policy-section h2 {
    font-family: 'Syne', sans-serif;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.policy-section h3 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
}

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

.policy-section ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--muted);
}

/* ── Editorial / Testimonials ── */
.editorial-section {
    background: var(--brand) url('/assets/img/editorial-bg.webp') center/cover no-repeat;
    background-blend-mode: overlay;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 64px;
    position: relative;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.editorial-content h2 {
    color: #fff;
    margin: 0 0 20px;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
}

.editorial-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 50ch;
}

.testimonial-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}

.testimonial-stars {
    color: #00b67a;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.testimonial-card p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ── Franchise Colors ── */
.franchise-mario {
    background: linear-gradient(135deg, rgba(239,68,68,0.8), rgba(185,28,28,0.85)), url('/assets/img/fan-mario.webp') center/cover no-repeat;
}
.franchise-zelda {
    background: linear-gradient(135deg, rgba(22,163,74,0.8), rgba(21,128,61,0.85)), url('/assets/img/fan-zelda.webp') center/cover no-repeat;
}
.franchise-pokemon {
    background: linear-gradient(135deg, rgba(234,179,8,0.8), rgba(161,98,7,0.85)), url('/assets/img/fan-pokemon.webp') center/cover no-repeat;
    color: #111 !important;
}
.franchise-pokemon strong {
    text-shadow: none !important;
}
.franchise-sonic {
    background: linear-gradient(135deg, rgba(59,130,246,0.8), rgba(29,78,216,0.85)), url('/assets/img/fan-sonic.webp') center/cover no-repeat;
}

@media (max-width: 900px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Utility Classes (Inline Style Replacements) ── */
.text-center { text-align: center; }
.pos-relative { position: relative; z-index: 1; }
.inline-form { display: inline; }
.display-contents { display: contents; }

.syne-heading {
    font-family: 'Syne', sans-serif;
    margin-top: 0;
}

.syne-heading.mb-sm { margin-bottom: 16px; }
.syne-heading.mb-md { margin-bottom: 24px; }
.syne-heading.mb-lg { margin-bottom: 32px; }

.btn.large {
    font-size: 1.1rem;
    padding: 12px 32px;
}

.btn.full-lg {
    width: 100%;
    font-size: 1.1rem;
}

.btn.checkout-lg {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

.btn-accent {
    background: var(--accent) !important;
    border: none !important;
    color: #fff !important;
}

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

.radio-desc {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Trade-In "What We Buy" Section ── */
.trade-buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.trade-buy-card {
    background: var(--surface);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.trade-buy-card strong {
    display: block;
    margin-bottom: 8px;
}

.trade-buy-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.trade-buy-intro {
    color: var(--muted);
    margin-bottom: 32px;
}

.trade-faq {
    margin-top: 48px;
}

.trade-faq h3 {
    font-family: 'Syne', sans-serif;
}

.trade-faq details {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}

.trade-faq summary {
    font-weight: 600;
    cursor: pointer;
}

.trade-faq p {
    margin-top: 8px;
    color: var(--muted);
}

/* ── Product Page Extras ── */
.product-page {
    margin-top: 48px;
}

.main-image-wrapper {
    position: relative;
}

.gallery-deal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.btn-wishlist-square {
    padding: 0;
    width: 56px;
    display: grid;
    place-items: center;
}

.product-trust {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.product-trust-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.product-trust-item svg {
    color: var(--brand);
    flex-shrink: 0;
}

.product-description {
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.product-description h3 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 16px;
}

.empty-state--hero {
    padding: 64px 0;
    text-align: center;
}

.empty-state--hero h1 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 16px;
}

.empty-state--hero p {
    color: var(--muted);
    margin-bottom: 32px;
}

/* ── Cart Page Extras ── */
.basket-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
}

.basket-header h1 {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
}

.empty-state--basket {
    padding: 80px 0;
    text-align: center;
}

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

.empty-state--basket h2 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 16px;
}

.empty-state--basket p {
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.qty-row {
    display: flex;
    align-items: center;
}

.summary-title {
    margin-top: 0;
    font-family: 'Syne', sans-serif;
    margin-bottom: 24px;
}

/* ── Contact Page Extras ── */
.contact-hint {
    font-size: 0.85rem;
    margin-top: 4px;
    color: var(--muted);
}

.contact-info h2 {
    font-family: 'Syne', sans-serif;
    margin-top: 0;
    margin-bottom: 32px;
}

.contact-form-wrapper h2 {
    font-family: 'Syne', sans-serif;
    margin-top: 0;
    margin-bottom: 24px;
}

/* ── Footer Extras ── */
.logo-inverted {
    filter: brightness(0) invert(1);
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.newsletter-box .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-box .newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.newsletter-box .newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-box .newsletter-form button {
    width: 100%;
    background: #fff;
    color: #0f172a;
}

/* ── Games/Consoles Hero Overrides ── */
.catalog-hero--games {
    min-height: 300px;
    margin-bottom: 40px;
}

.catalog-hero--games::before {
    background-image: url('/assets/img/hero-games.webp');
}

.catalog-hero--consoles {
    min-height: 300px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.catalog-hero--consoles::before {
    background-image: url('/assets/img/hero-consoles.webp');
}

.catalog-hero--deals {
    min-height: 300px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
}

.catalog-hero--deals::before {
    background-image: url('/assets/img/hero-deals.webp');
}

.catalog-hero--merch {
    min-height: 300px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #4c1d95 0%, #1e1b4b 100%);
}

.catalog-hero--merch::before {
    background-image: url('/assets/img/hero-merch.webp');
}

.catalog-hero--instock {
    min-height: 300px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
}

.no-pad-top {
    padding-top: 0;
}

.reduced-merch-section {
    margin-bottom: 48px;
}

/* ── Franchise Pages ── */
.franchise-hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: clamp(40px, 7vw, 80px) 0;
    margin-bottom: 40px;
}

.franchise-hero--mario {
    background-image:
        linear-gradient(120deg, rgba(180,20,20,0.90) 0%, rgba(220,40,40,0.80) 50%, rgba(180,20,20,0.90) 100%),
        url('/assets/img/franchise-mario.webp');
}

.franchise-hero--zelda {
    background-image:
        linear-gradient(120deg, rgba(10,80,30,0.92) 0%, rgba(20,140,50,0.80) 50%, rgba(10,80,30,0.92) 100%),
        url('/assets/img/franchise-zelda.webp');
}

.franchise-hero--pokemon {
    background-image:
        linear-gradient(120deg, rgba(200,160,0,0.90) 0%, rgba(240,190,10,0.78) 50%, rgba(200,160,0,0.90) 100%),
        url('/assets/img/franchise-pokemon.webp');
}

.franchise-hero--sonic {
    background-image:
        linear-gradient(120deg, rgba(0,40,180,0.92) 0%, rgba(20,80,220,0.80) 50%, rgba(0,40,180,0.92) 100%),
        url('/assets/img/franchise-sonic.webp');
}

.franchise-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
}

.franchise-hero .kicker { color: #fde68a; }
.franchise-hero h1 { margin: 0 0 14px; font-size: clamp(2rem, 5vw, 3.2rem); }
.franchise-hero p { margin: 0 0 22px; opacity: .9; font-size: 1.05rem; line-height: 1.65; }

.franchise-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.franchise-stat strong { display: block; font-size: 2rem; color: var(--accent); }
.franchise-stat span { font-size: .8rem; opacity: .7; }

.franchise-hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.franchise-hero-mosaic a {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255,255,255,.1);
    display: block;
}

.franchise-hero-mosaic img { width: 100%; height: 100%; object-fit: cover; }

.franchise-hero-fallback {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255,255,255,.15);
}

.franchise-hero-fallback img { width: 100%; height: 100%; object-fit: cover; }

/* ── Platform Pages ── */
.plat-hero {
    background-size: cover;
    color: #fff;
    padding: clamp(40px, 7vw, 80px) 0;
    margin-bottom: 40px;
}

.plat-hero--ps1 {
    background-image:
        linear-gradient(120deg, rgba(0,32,96,0.93) 0%, rgba(0,56,168,0.82) 55%, rgba(0,32,96,0.93) 100%),
        url('/assets/img/plat-ps1.webp');
    background-position: center 35%;
}

.plat-hero--snes {
    background-image:
        linear-gradient(120deg, rgba(60,0,120,0.92) 0%, rgba(100,20,180,0.80) 55%, rgba(60,0,120,0.92) 100%),
        url('/assets/img/plat-snes.webp');
    background-position: center;
}

.plat-hero--xbox360 {
    background-image:
        linear-gradient(120deg, rgba(16,96,16,0.92) 0%, rgba(30,140,30,0.80) 55%, rgba(16,96,16,0.92) 100%),
        url('/assets/img/plat-xbox360.webp');
    background-position: center;
}

.plat-hero-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
}

.plat-hero .kicker { color: #a0c4ff; }
.plat-hero h1 { margin: 0 0 14px; font-size: clamp(2rem, 4.5vw, 3rem); }
.plat-hero p { margin: 0 0 22px; opacity: .88; font-size: 1.05rem; line-height: 1.65; }

.plat-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.plat-stat strong { display: block; font-size: 2rem; color: var(--accent); }
.plat-stat span { font-size: .8rem; opacity: .7; }

.plat-hero-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.5);
    aspect-ratio: 3/2;
}

.plat-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Shared: Info Block, Split Section, Era Grid ── */
.info-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.info-block h2 { margin-top: 0; }
.info-block p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.info-block p:last-child { margin-bottom: 0; }

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.split-section img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    object-fit: cover;
}

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

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

.era-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    background: var(--brand-soft);
}

.era-card strong { display: block; font-size: 1rem; margin-bottom: 6px; color: #c00; }
.era-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.count-label {
    font-weight: 400;
    color: var(--muted);
    font-size: 1rem;
}

/* ── Order Success Page ── */
.success-hero {
    text-align: center;
    padding: clamp(40px, 7vw, 72px) 0 32px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg { width: 36px; height: 36px; color: #16a34a; }
.success-hero h1 { margin: 0 0 10px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.success-hero p { color: var(--muted); max-width: 50ch; margin: 8px auto 0; }

.success-hero .order-ref {
    display: inline-block;
    background: var(--brand-soft);
    border: 1px solid var(--accent);
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: .95rem;
    margin: 12px 0 0;
}

.email-notice {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 0 auto 32px;
    max-width: 640px;
}

.email-notice svg { width: 22px; height: 22px; flex-shrink: 0; color: #d97706; margin-top: 2px; }
.email-notice strong { display: block; margin-bottom: 4px; }
.email-notice p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

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

.success-steps {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
}

.success-steps h2 { margin: 0 0 20px; font-size: 1.1rem; }

.step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-list li { display: flex; gap: 14px; align-items: flex-start; }

.step-list .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    font-size: .82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.step-list strong { display: block; margin-bottom: 2px; font-size: .95rem; }
.step-list p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.4; }

.order-summary-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.order-summary-card h2 { margin: 0 0 16px; font-size: 1.05rem; }

.delivery-address {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.delivery-address-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 8px;
}

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

.delivery-address-lines {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}

.delivery-address-method {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: .84rem;
}

@media (max-width: 900px) {
    .franchise-hero-inner { grid-template-columns: 1fr; }
    .franchise-hero-mosaic { display: none; }
    .split-section { grid-template-columns: 1fr; }
    .era-grid { grid-template-columns: 1fr 1fr; }
    .plat-hero-inner { grid-template-columns: 1fr; }
    .plat-hero-img { display: none; }
}

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

@media (max-width: 600px) {
    .era-grid { grid-template-columns: 1fr; }
}

.success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.success-actions.mt-lg {
    margin-top: 32px;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface-raised) 0%, var(--line) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 3rem;
}

/* ── Blog Post Pages ── */
.post-hero {
    background: linear-gradient(120deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 56px);
    margin-bottom: 40px;
}

.post-hero .kicker { color: var(--accent); }
.post-hero h1 { margin: 8px 0 16px; font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 22ch; line-height: 1.2; }

.post-meta {
    display: flex;
    gap: 16px;
    font-size: .88rem;
    opacity: .7;
    flex-wrap: wrap;
}

.post-meta a { color: var(--accent); }

.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.post-body h2 { font-size: 1.6rem; margin: 40px 0 14px; padding-top: 8px; border-top: 2px solid var(--line); }
.post-body h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--brand); }
.post-body p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 24px; color: var(--muted); line-height: 1.7; font-size: 1.05rem; margin-bottom: 18px; }
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--text); }

.console-rec {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.console-rec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.console-rec h3 { margin: 0; font-size: 1.2rem; }
.console-rec .verdict { display: inline-flex; align-items: center; background: var(--accent); color: #111; font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.console-rec p { margin: 0 0 12px; color: var(--muted); line-height: 1.65; font-size: .98rem; }
.console-rec p:last-child { margin: 0; }
.console-rec .price-note { margin-top: 14px; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.pros, .cons { padding: 14px; border-radius: 10px; }
.pros { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); }
.cons { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); }
.pros strong { color: #16a34a; display: block; margin-bottom: 8px; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.cons strong { color: #dc2626; display: block; margin-bottom: 8px; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.pros ul, .cons ul { padding-left: 16px; margin: 0; font-size: .88rem; color: var(--muted); }

.callout {
    background: rgba(244,197,36,.12);
    border: 1px solid rgba(244,197,36,.4);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 28px 0;
}

.callout strong { display: block; margin-bottom: 6px; }
.callout p { margin: 0; color: var(--text); font-size: .95rem; }

.sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card.sticky { position: sticky; top: 100px; }
.sidebar-card h3 { margin: 0 0 14px; font-size: 1rem; }

.sidebar-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.sidebar-links a { color: var(--text); font-weight: 600; font-size: .92rem; }
.sidebar-links a:hover { color: var(--brand); text-decoration: underline; }

.post-back {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

/* Blog post: game-rec cards */
.game-rec {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.game-rec h3 { margin: 0 0 4px; font-size: 1.15rem; }
.game-rec .game-rec-sub { font-size: .82rem; color: var(--muted); display: block; margin-bottom: 12px; }
.game-rec p { margin: 0 0 12px; color: var(--muted); line-height: 1.65; font-size: .98rem; }
.game-rec p:last-child { margin: 0; }

.game-rec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.game-rec .verdict { display: inline-flex; align-items: center; background: var(--accent); color: #111; font-size: .75rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }

/* Blog: game-entry (PS1 list) */
.game-entry {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
    box-shadow: var(--shadow);
}

.game-entry-num {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 900;
    color: #111;
    flex-shrink: 0;
}

.game-entry h3 { margin: 0 0 6px; font-size: 1.15rem; }
.game-entry p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.game-entry .price-tag { display: inline-flex; align-items: center; background: var(--brand-soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: .82rem; font-weight: 700; margin-top: 10px; }

/* Blog: gem-entry (Xbox 360 hidden gems) */
.gem-entry {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.gem-entry-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.gem-entry h3 { margin: 0; font-size: 1.15rem; }
.gem-entry .genre-tag { display: inline-flex; align-items: center; background: var(--brand-soft); border: 1px solid var(--line); color: var(--muted); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.gem-entry p { margin: 0 0 10px; color: var(--muted); line-height: 1.65; font-size: .98rem; }
.gem-entry p:last-child { margin: 0; }
.gem-entry .price-hint { font-size: .88rem; font-weight: 700; color: var(--brand); }

@media (max-width: 960px) {
    .post-layout { grid-template-columns: 1fr; }
    .sidebar-card.sticky { position: static; }
    .pros-cons { grid-template-columns: 1fr; }
}

.btn-inline {
    margin-top: 10px;
    display: inline-block;
}

.pad-top-sm {
    padding-top: 32px;
}

.post-meta-link {
    color: var(--accent);
}

.buy-box-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.btn-accent {
    background: var(--accent);
    color: var(--brand);
}

.btn-ghost-light {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.text-muted {
    color: var(--muted);
    margin-bottom: 0;
}

.btn-nowrap {
    white-space: nowrap;
    flex-shrink: 0;
}

.no-pad-top {
    padding-top: 0;
}

.count-label {
    font-weight: 400;
    color: var(--muted);
    font-size: 1rem;
}

.info-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin-bottom: 32px; }
.info-block h2 { margin-top: 0; }
.info-block h3 { margin-top: 28px; }
.info-block p { color: var(--muted); line-height: 1.7; margin-bottom: 16px; }

/* ── Subdirectory Landing Pages ── */

/* Birthday gifts page */
.birthday-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 35%, #4c1d95 65%, #1e1b4b 100%);
    color: #fff;
    padding: clamp(48px, 8vw, 96px) 0;
    text-align: center;
}
.birthday-hero .kicker {
    display: inline-block; background: rgba(167,139,250,0.25); border: 1px solid rgba(167,139,250,0.4);
    color: #c4b5fd; border-radius: 50px; padding: 6px 18px; font-size: .83rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.birthday-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0 0 18px; line-height: 1.1; }
.birthday-hero h1 em { font-style: normal; color: #a78bfa; }
.birthday-hero p { font-size: 1.1rem; opacity: .88; max-width: 56ch; margin: 0 auto 32px; line-height: 1.65; }
.birthday-hero .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.birthday-hero .btn { background: #7c3aed; color: #fff; border-color: #7c3aed; }
.birthday-hero .btn.ghost { border-color: rgba(255,255,255,0.4); color: #fff; }

.budget-guide { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.budget-card {
    background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: 24px 20px;
    text-align: center; transition: border-color 200ms, transform 200ms;
}
.budget-card:hover { border-color: #7c3aed; transform: translateY(-3px); }
.budget-card .budget-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.budget-card .budget-range { font-size: 1.4rem; font-weight: 900; color: #7c3aed; margin-bottom: 6px; }
.budget-card h3 { margin: 0 0 10px; font-size: .95rem; }
.budget-card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }

.gift-ideas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0; }
.gift-idea-card {
    background: var(--brand-soft); border-radius: 14px; padding: 28px;
    display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: center;
}
.gift-idea-card img { width: 100px; height: 100px; object-fit: cover; border-radius: 10px; }
.gift-idea-card h3 { margin: 0 0 8px; }
.gift-idea-card p { margin: 0 0 12px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.gift-idea-card .price { font-weight: 900; color: var(--brand); font-size: 1.1rem; }

.new-customer-strip {
    background: linear-gradient(90deg, #7c3aed 0%, #4c1d95 100%); color: #fff; border-radius: 14px;
    padding: 28px 36px; display: flex; align-items: center; justify-content: space-between;
    gap: 24px; margin: 40px 0;
}
.new-customer-strip h3 { margin: 0 0 6px; font-size: 1.3rem; }
.new-customer-strip p { margin: 0; opacity: .85; }
.new-customer-strip .btn { background: var(--accent); color: var(--brand); white-space: nowrap; flex-shrink: 0; }

.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
.photo-row a { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; display: block; }
.photo-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.photo-row a:hover img { transform: scale(1.04); }

.seo-block { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 36px 40px; margin: 40px 0; }
.seo-block h2 { margin-top: 0; }
.seo-block h3 { margin-top: 28px; color: var(--brand); }
.seo-block p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

@media (max-width: 960px) {
    .budget-guide { grid-template-columns: 1fr 1fr; }
    .gift-ideas-grid { grid-template-columns: 1fr; }
    .new-customer-strip { flex-direction: column; text-align: center; }
    .photo-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .budget-guide { grid-template-columns: 1fr; } .photo-row { grid-template-columns: 1fr; } }

/* Christmas sale page */
.xmas-hero {
    background: linear-gradient(150deg, #7f1d1d 0%, #991b1b 30%, #1e1b4b 70%, #0f0a1e 100%);
    color: #fff;
    padding: clamp(48px, 8vw, 96px) 0;
    position: relative;
    overflow: hidden;
}
.xmas-hero::after {
    content: '\1F384\1F3AE\1F381\2B50\1F3AE\1F384';
    position: absolute; top: 16px; right: 40px;
    font-size: 2rem; opacity: .25; letter-spacing: 8px;
}
.xmas-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; }
.xmas-hero .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(239,68,68,0.3); border: 1px solid rgba(239,68,68,0.5);
    border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px;
}
.xmas-hero h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin: 0 0 18px; line-height: 1.12; }
.xmas-hero h1 em { font-style: normal; color: #fca5a5; }
.xmas-hero p { font-size: 1.08rem; opacity: .88; line-height: 1.65; margin: 0 0 28px; max-width: 50ch; }
.xmas-hero .btn { background: #ef4444; color: #fff; border-color: #ef4444; }
.xmas-hero .btn:hover { background: #dc2626; }
.xmas-hero .btn.ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-img-stack { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; gap: 8px; }
.hero-img-stack a { border-radius: 10px; overflow: hidden; display: block; background: rgba(255,255,255,0.05); }
.hero-img-stack a:first-child { grid-row: span 2; }
.hero-img-stack img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.hero-img-stack a:hover img { transform: scale(1.05); }

.sale-ribbon { background: #ef4444; color: #fff; text-align: center; padding: 14px 24px; font-weight: 700; font-size: 1rem; }
.sale-ribbon strong { font-size: 1.2rem; }

.gift-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.gift-cat-card { border-radius: 14px; overflow: hidden; position: relative; aspect-ratio: 4/3; display: block; text-decoration: none; color: #fff; }
.gift-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.gift-cat-card:hover img { transform: scale(1.06); }
.gift-cat-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.gift-cat-card .overlay h3 { margin: 0 0 4px; font-size: 1.2rem; }
.gift-cat-card .overlay p { margin: 0; font-size: .85rem; opacity: .8; }

.gift-price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.tier-card {
    border: 2px solid var(--line); border-radius: 14px; padding: 28px 24px;
    text-align: center; background: #fff; transition: border-color 200ms, box-shadow 200ms;
}
.tier-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.tier-card .price-range { font-size: 1.8rem; font-weight: 900; color: var(--brand); margin-bottom: 8px; }
.tier-card h3 { margin: 0 0 12px; }
.tier-card p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0; }

.new-customer-xmas {
    background: linear-gradient(120deg, #1e1b4b 0%, #312e81 100%); color: #fff;
    border-radius: 16px; padding: 40px 48px;
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin: 40px 0;
}
.new-customer-xmas h2 { margin: 0 0 10px; font-size: 1.6rem; }
.new-customer-xmas p { margin: 0; opacity: .85; line-height: 1.6; }
.new-customer-xmas .btn { background: var(--accent); color: var(--brand); white-space: nowrap; }

@media (max-width: 960px) {
    .xmas-hero-inner { grid-template-columns: 1fr; }
    .hero-img-stack { display: none; }
    .gift-categories { grid-template-columns: 1fr 1fr; }
    .gift-price-tiers { grid-template-columns: 1fr; }
    .new-customer-xmas { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .gift-categories { grid-template-columns: 1fr; } }

/* Gaming gifts for him page */
.him-hero {
    background: linear-gradient(150deg, #0c0a09 0%, #1c1917 40%, #292524 70%, #0c0a09 100%);
    color: #fff; padding: clamp(48px, 8vw, 96px) 0;
}
.him-hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.him-hero .kicker {
    display: inline-block; background: rgba(234,179,8,0.2); border: 1px solid rgba(234,179,8,0.35);
    color: #fde68a; border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.him-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 18px; line-height: 1.12; }
.him-hero h1 em { font-style: normal; color: #fbbf24; }
.him-hero p { font-size: 1.08rem; opacity: .88; line-height: 1.65; margin: 0 0 28px; max-width: 52ch; }
.him-hero-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; }
.him-hero-photos a { border-radius: 10px; overflow: hidden; display: block; background: #1c1917; }
.him-hero-photos a:first-child { grid-row: span 2; }
.him-hero-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.him-hero-photos a:hover img { transform: scale(1.05); }

.gift-personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.persona-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; transition: box-shadow 200ms, transform 200ms; }
.persona-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.persona-card .persona-img { aspect-ratio: 16/9; overflow: hidden; }
.persona-card .persona-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.persona-card:hover .persona-img img { transform: scale(1.05); }
.persona-card .persona-body { padding: 20px; }
.persona-card h3 { margin: 0 0 8px; font-size: 1rem; }
.persona-card p { margin: 0 0 14px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.persona-card .price-hint { font-weight: 700; color: var(--brand); font-size: .9rem; }

.new-customer-him {
    background: linear-gradient(120deg, #1c1917 0%, #292524 100%); color: #fff;
    border-radius: 16px; padding: 36px 48px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; margin: 40px 0;
}
.new-customer-him .icon { font-size: 3rem; }
.new-customer-him h2 { margin: 0 0 8px; font-size: 1.4rem; }
.new-customer-him p { margin: 0; opacity: .8; line-height: 1.6; }
.new-customer-him .btn { background: var(--accent); color: var(--brand); white-space: nowrap; }

.photo-mosaic {
    display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px;
    gap: 10px; margin: 40px 0; border-radius: 16px; overflow: hidden;
}
.photo-mosaic a { display: block; overflow: hidden; }
.photo-mosaic a:first-child { grid-row: span 2; }
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.photo-mosaic a:hover img { transform: scale(1.05); }

@media (max-width: 960px) {
    .him-hero-inner { grid-template-columns: 1fr; }
    .him-hero-photos { display: none; }
    .gift-personas { grid-template-columns: 1fr; }
    .new-customer-him { grid-template-columns: 1fr; text-align: center; }
    .photo-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .photo-mosaic a:first-child { grid-row: auto; }
}

/* SNES Classic Mini gift page */
.snes-hero {
    background: linear-gradient(120deg, rgba(70,10,90,0.94) 0%, rgba(110,20,140,0.88) 50%, rgba(40,5,60,0.97) 100%),
        url('/images/snes_classic.webp') center/cover no-repeat;
    color: #fff; padding: clamp(56px, 9vw, 100px) 0;
}
.snes-hero-inner { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; }
.snes-hero .kicker {
    display: inline-block; background: rgba(250,204,21,0.2); border: 1px solid rgba(250,204,21,0.4);
    color: #fde68a; border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.snes-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 18px; line-height: 1.12; }
.snes-hero h1 em { font-style: normal; color: #e879f9; }
.snes-hero p { font-size: 1.08rem; opacity: .88; line-height: 1.65; margin: 0 0 28px; max-width: 52ch; }
.snes-hero-img { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.snes-hero-img img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }

.games-list-section { background: var(--brand-soft); border-radius: 16px; padding: 36px 40px; margin: 40px 0; }
.games-list-section h2 { margin-top: 0; }
.games-grid-21 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 16px; margin-top: 20px; }
.game-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.game-item .num { color: var(--muted); font-size: .8rem; width: 20px; flex-shrink: 0; }

.history-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin: 40px 0; }
.history-block img { width: 100%; border-radius: 14px; object-fit: cover; aspect-ratio: 4/3; }
.history-block h2 { margin-top: 0; }
.history-block p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.gift-highlight {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b; border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 32px 0;
}
.gift-highlight h3 { margin: 0 0 8px; color: #92400e; }
.gift-highlight p { margin: 0; color: #78350f; line-height: 1.65; }

.buy-box {
    background: var(--brand); color: #fff; border-radius: 16px; padding: 36px 40px;
    display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin: 40px 0;
}
.buy-box h2 { margin: 0 0 10px; font-size: 1.5rem; }
.buy-box p { margin: 0; opacity: .85; line-height: 1.6; }
.buy-box .price { font-size: 2.4rem; font-weight: 900; color: var(--accent); margin: 12px 0 4px; }
.buy-box .old-price { text-decoration: line-through; opacity: .6; font-size: 1.1rem; }

@media (max-width: 960px) {
    .snes-hero-inner { grid-template-columns: 1fr; }
    .snes-hero-img { display: none; }
    .games-grid-21 { grid-template-columns: 1fr 1fr; }
    .history-block { grid-template-columns: 1fr; }
    .buy-box { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .games-grid-21 { grid-template-columns: 1fr; } }

/* Arcade / Pac-Man page */
.arcade-hero {
    background: #0a0a0a; color: #fff;
    padding: clamp(48px, 8vw, 96px) 0;
    position: relative; overflow: hidden;
}
.arcade-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,0,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,0,255,0.06) 0%, transparent 45%),
        radial-gradient(circle at 60% 80%, rgba(0,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
}
.arcade-hero-inner {
    display: grid; grid-template-columns: 1fr 400px; gap: 48px;
    align-items: center; position: relative;
}
.arcade-hero .kicker {
    display: inline-block; background: rgba(255,255,0,0.15); border: 1px solid rgba(255,255,0,0.3);
    color: #fef08a; border-radius: 4px; padding: 4px 12px; font-size: .8rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-family: monospace;
}
.arcade-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 18px; line-height: 1.12; }
.arcade-hero h1 em { font-style: normal; color: #facc15; }
.arcade-hero p { font-size: 1.05rem; opacity: .85; line-height: 1.65; margin: 0 0 28px; max-width: 50ch; }
.arcade-score { display: flex; gap: 24px; margin-top: 8px; flex-wrap: wrap; }
.arcade-score-item {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 10px 18px; font-family: monospace; font-size: .9rem;
}
.arcade-score-item strong { display: block; color: #facc15; font-size: 1.2rem; }
.hero-product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-product-showcase a {
    border-radius: 12px; overflow: hidden; aspect-ratio: 1; display: block;
    background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
}
.hero-product-showcase a:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.hero-product-showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.hero-product-showcase a:hover img { transform: scale(1.05); }

.arcade-history {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
    margin: 40px 0; background: var(--brand-soft); border-radius: 16px; padding: 40px;
}
.arcade-history h2 { margin-top: 0; }
.arcade-history p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.arcade-history img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; }

.gift-new-customer {
    background: linear-gradient(120deg, #facc15 0%, #fde68a 100%);
    border-radius: 14px; padding: 28px 36px;
    display: flex; align-items: center; gap: 24px; margin: 40px 0;
}
.gift-new-customer .icon { font-size: 3rem; flex-shrink: 0; }
.gift-new-customer h3 { margin: 0 0 6px; color: #78350f; font-size: 1.3rem; }
.gift-new-customer p { margin: 0; color: #92400e; line-height: 1.6; }

.desk-setup-tips { margin: 40px 0; }
.desk-setup-tips h2 { margin-top: 0; }
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.tip-card {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.tip-card .tip-icon { font-size: 2rem; flex-shrink: 0; }
.tip-card h3 { margin: 0 0 8px; font-size: 1rem; }
.tip-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

@media (max-width: 960px) {
    .arcade-hero-inner { grid-template-columns: 1fr; }
    .hero-product-showcase { display: none; }
    .arcade-history { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
}

/* Bloodborne Hunter's Dream page */
.bb-hero {
    background:
        linear-gradient(160deg, rgba(10,5,15,0.97) 0%, rgba(30,10,40,0.93) 40%, rgba(60,10,20,0.9) 70%, rgba(10,5,15,0.97) 100%),
        url('/images/bloodborne_2.webp') center/cover no-repeat;
    color: #fff; padding: clamp(48px, 8vw, 96px) 0; margin-bottom: 0;
}
.bb-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
.bb-hero .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(185,28,28,0.3); border: 1px solid rgba(239,68,68,0.4);
    color: #fca5a5; border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.bb-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 16px; line-height: 1.1; }
.bb-hero h1 em { font-style: normal; color: #fca5a5; }
.bb-hero p { font-size: 1.05rem; opacity: .88; line-height: 1.65; margin: 0 0 24px; max-width: 52ch; }
.bb-hero-price-preview { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.bb-hero-price-preview .new-price { font-size: 2.8rem; font-weight: 900; color: #fca5a5; }
.bb-hero-price-preview .old-price { font-size: 1.3rem; text-decoration: line-through; opacity: .5; }
.bb-hero-price-preview .save-badge { background: #dc2626; color: #fff; font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.bb-gallery-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.bb-main-img { aspect-ratio: 4/3; overflow: hidden; }
.bb-main-img img { width: 100%; height: 100%; object-fit: cover; }
.bb-thumb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; background: rgba(0,0,0,0.3); }
.bb-thumb-row a { aspect-ratio: 4/3; overflow: hidden; display: block; border-radius: 6px; }
.bb-thumb-row img { width: 100%; height: 100%; object-fit: cover; transition: opacity 200ms; }
.bb-thumb-row a:hover img { opacity: .8; }

.pdp-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; margin: 48px 0; align-items: start; }

.gift-special-box {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b; border-radius: 14px; padding: 24px 28px; margin-bottom: 24px;
}
.gift-special-box h3 { margin: 0 0 8px; color: #92400e; font-size: 1.1rem; }
.gift-special-box p { margin: 0; color: #78350f; line-height: 1.6; font-size: .95rem; }

.buy-panel {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow); position: sticky; top: 100px;
}
.buy-panel .price-row-big { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.buy-panel .price-row-big strong { font-size: 2.8rem; font-weight: 900; color: var(--brand); }
.buy-panel .price-row-big s { color: var(--muted); font-size: 1.2rem; }
.buy-panel .save-note { color: #dc2626; font-weight: 700; font-size: .9rem; margin-bottom: 16px; }
.buy-panel .stock-ok { color: #16a34a; font-weight: 700; font-size: .9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.buy-panel .add-btn { width: 100%; height: 52px; font-size: 1.05rem; background: var(--accent); color: var(--brand); margin-bottom: 10px; }
.buy-panel .wish-btn { width: 100%; }
.trust-list { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; }

.new-customer-bb { background: var(--brand); color: #fff; border-radius: 14px; padding: 24px 28px; margin-top: 20px; }
.new-customer-bb h3 { margin: 0 0 6px; font-size: 1rem; }
.new-customer-bb p { margin: 0; opacity: .8; font-size: .88rem; line-height: 1.55; }

.specs-table { display: grid; grid-template-columns: max-content 1fr; gap: 14px 28px; padding: 24px; background: var(--brand-soft); border-radius: var(--radius); margin: 24px 0; }
.specs-table dt { color: var(--muted); font-weight: 600; }
.specs-table dd { margin: 0; font-weight: 700; }

.lore-block { margin: 32px 0; }
.lore-block h2 { margin-top: 0; }
.lore-block p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

@media (max-width: 960px) {
    .bb-hero-inner { grid-template-columns: 1fr; }
    .bb-gallery-box { display: none; }
    .pdp-layout { grid-template-columns: 1fr; }
    .buy-panel { position: static; }
}

/* Crash N.Sane Trilogy gift set page */
.crash-hero {
    background: linear-gradient(150deg, #7c2d12 0%, #c2410c 30%, #ea580c 55%, #7c2d12 100%);
    color: #fff; padding: clamp(48px, 8vw, 96px) 0;
    position: relative; overflow: hidden;
}
.crash-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(251,191,36,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.crash-hero-inner {
    display: grid; grid-template-columns: 1fr 420px; gap: 56px;
    align-items: center; position: relative;
}
.crash-hero .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(251,191,36,0.2); border: 1px solid rgba(251,191,36,0.4);
    color: #fde68a; border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.crash-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 16px; line-height: 1.1; }
.crash-hero h1 em { font-style: normal; color: #fde68a; }
.crash-hero p { font-size: 1.05rem; opacity: .88; line-height: 1.65; margin: 0 0 24px; max-width: 52ch; }
.crash-price-preview { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.crash-price-preview .new-price { font-size: 2.8rem; font-weight: 900; color: #fde68a; }
.crash-price-preview .old-price { font-size: 1.3rem; text-decoration: line-through; opacity: .55; }
.crash-price-preview .save-badge {
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.3);
    color: #fff; font-size: .8rem; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}
.crash-gallery { border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.crash-gallery .main-shot { aspect-ratio: 4/3; overflow: hidden; }
.crash-gallery .main-shot img { width: 100%; height: 100%; object-fit: cover; }
.crash-gallery .shot-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: rgba(0,0,0,0.4); }
.crash-gallery .shot-strip a { aspect-ratio: 16/9; overflow: hidden; display: block; border-radius: 6px; }
.crash-gallery .shot-strip img { width: 100%; height: 100%; object-fit: cover; transition: opacity 200ms; }
.crash-gallery .shot-strip a:hover img { opacity: .8; }

.gift-set-banner {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b; border-radius: 14px; padding: 24px 28px; margin-bottom: 28px;
}
.gift-set-banner h3 { margin: 0 0 8px; color: #92400e; font-size: 1.1rem; }
.gift-set-banner p { margin: 0; color: #78350f; line-height: 1.6; font-size: .95rem; }

.trilogy-games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.trilogy-game { background: var(--brand-soft); border: 1px solid var(--line); border-radius: 12px; padding: 20px 16px; text-align: center; }
.trilogy-game .game-num { font-size: 2rem; font-weight: 900; color: #ea580c; margin-bottom: 8px; }
.trilogy-game h3 { margin: 0 0 6px; font-size: .95rem; }
.trilogy-game p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }

.new-customer-crash {
    background: linear-gradient(120deg, #ea580c 0%, #c2410c 100%); color: #fff;
    border-radius: 12px; padding: 20px 24px; margin-top: 20px;
}
.new-customer-crash h3 { margin: 0 0 6px; font-size: 1rem; }
.new-customer-crash p { margin: 0; opacity: .85; font-size: .88rem; line-height: 1.55; }

.content-block { margin: 32px 0; }
.content-block h2 { margin-top: 0; }
.content-block p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

@media (max-width: 960px) {
    .crash-hero-inner { grid-template-columns: 1fr; }
    .crash-gallery { display: none; }
    .trilogy-games { grid-template-columns: 1fr; }
}

/* Retro gaming gifts page */
.promo-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff; padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    position: relative; overflow: hidden;
}
.promo-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(250,204,21,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.promo-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.promo-hero .kicker {
    display: inline-block; background: var(--accent); color: var(--brand);
    font-weight: 800; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 4px; margin-bottom: 16px;
}
.promo-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 16px; line-height: 1.15; }
.promo-hero h1 em { font-style: normal; color: var(--accent); }
.promo-hero p { font-size: 1.1rem; opacity: .88; line-height: 1.65; margin: 0 0 28px; max-width: 52ch; }
.hero-badge-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-badge {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 10px 16px; font-size: .88rem; font-weight: 700;
}
.hero-badge span { display: block; font-size: .75rem; font-weight: 400; opacity: .7; margin-top: 2px; }
.hero-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-photo-grid a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; display: block; background: rgba(255,255,255,0.05); }
.hero-photo-grid a:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.hero-photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.hero-photo-grid a:hover img { transform: scale(1.04); }

.new-customer-banner {
    background: linear-gradient(90deg, #facc15 0%, #fde68a 50%, #facc15 100%);
    color: #111; text-align: center; padding: 20px 24px; font-size: 1.05rem; font-weight: 700;
}
.new-customer-banner strong { font-size: 1.3rem; }
.new-customer-banner p { margin: 4px 0 0; font-weight: 400; font-size: .92rem; }

.gift-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.gift-why-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 20px; text-align: center; }
.gift-why-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
.gift-why-card h3 { margin: 0 0 8px; font-size: 1rem; }
.gift-why-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.gift-guide-block {
    background: var(--brand-soft); border-radius: 16px; padding: clamp(28px, 4vw, 48px);
    margin: 40px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.gift-guide-block h2 { margin-top: 0; }
.gift-guide-block p { color: var(--muted); line-height: 1.7; }
.gift-guide-block ul { color: var(--muted); line-height: 1.8; padding-left: 20px; }
.gift-guide-block img { width: 100%; border-radius: 12px; object-fit: cover; aspect-ratio: 4/3; }

.promo-strip {
    background: var(--brand); color: #fff; border-radius: 14px; padding: 32px 36px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 40px 0;
}
.promo-strip h3 { margin: 0 0 6px; font-size: 1.4rem; }
.promo-strip p { margin: 0; opacity: .8; }

.seo-text { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 36px 40px; margin: 40px 0; }
.seo-text h2 { margin-top: 0; }
.seo-text h3 { margin-top: 28px; color: var(--brand); }
.seo-text p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.seo-text p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
    .promo-hero-inner { grid-template-columns: 1fr; }
    .hero-photo-grid { display: none; }
    .gift-why { grid-template-columns: 1fr 1fr; }
    .gift-guide-block { grid-template-columns: 1fr; }
    .promo-strip { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) { .gift-why { grid-template-columns: 1fr; } }

/* Gaming merch gift shop page */
.gift-shop-hero {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #047857 70%, #064e3b 100%);
    color: #fff; padding: clamp(40px, 7vw, 80px) 0;
    position: relative; overflow: hidden;
}
.gift-shop-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 40%, rgba(52,211,153,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.gift-shop-hero-inner {
    display: grid; grid-template-columns: 1fr 400px; gap: 48px;
    align-items: center; position: relative;
}
.gift-shop-hero .kicker {
    display: inline-block; background: rgba(52,211,153,0.2); border: 1px solid rgba(52,211,153,0.4);
    color: #6ee7b7; border-radius: 6px; padding: 5px 14px; font-size: .82rem; font-weight: 700;
    letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}
.gift-shop-hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 16px; line-height: 1.12; }
.gift-shop-hero h1 em { font-style: normal; color: #6ee7b7; }
.gift-shop-hero p { font-size: 1.08rem; opacity: .88; line-height: 1.65; margin: 0 0 28px; max-width: 52ch; }
.gift-shop-hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.gift-shop-stat { text-align: center; }
.gift-shop-stat strong { display: block; font-size: 1.8rem; color: #6ee7b7; }
.gift-shop-stat span { font-size: .8rem; opacity: .7; }
.hero-gift-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-gift-mosaic a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; display: block; background: rgba(255,255,255,0.05); }
.hero-gift-mosaic a:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.hero-gift-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.hero-gift-mosaic a:hover img { transform: scale(1.05); }

.new-customer-gift-banner {
    background: linear-gradient(90deg, #facc15 0%, #fde68a 50%, #facc15 100%);
    color: #111; padding: 18px 24px; text-align: center; font-weight: 700; font-size: 1rem;
}
.new-customer-gift-banner strong { font-size: 1.15rem; }
.new-customer-gift-banner p { margin: 4px 0 0; font-weight: 400; font-size: .9rem; }

.gift-occasion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.occasion-card {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 24px 18px; text-align: center; transition: box-shadow 200ms, transform 200ms;
}
.occasion-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
.occasion-card .occ-icon { font-size: 2.4rem; margin-bottom: 12px; }
.occasion-card h3 { margin: 0 0 8px; font-size: .95rem; }
.occasion-card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }

.gift-highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.gift-highlight-card {
    border-radius: 14px; overflow: hidden; position: relative;
    aspect-ratio: 16/9; display: block; text-decoration: none; color: #fff;
}
.gift-highlight-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.gift-highlight-card:hover img { transform: scale(1.05); }
.gift-highlight-card .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.gift-highlight-card .overlay h3 { margin: 0 0 6px; font-size: 1.3rem; }
.gift-highlight-card .overlay p { margin: 0 0 14px; font-size: .9rem; opacity: .85; }

.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.gift-card { border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--brand-soft); text-align: center; }
.gift-card .icon { font-size: 2rem; margin-bottom: 10px; }
.gift-card strong { display: block; margin-bottom: 6px; }
.gift-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

@media (max-width: 960px) {
    .gift-shop-hero-inner { grid-template-columns: 1fr; }
    .hero-gift-mosaic { display: none; }
    .gift-occasion-grid { grid-template-columns: 1fr 1fr; }
    .gift-highlight-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .gift-occasion-grid { grid-template-columns: 1fr; }
    .gift-grid { grid-template-columns: 1fr; }
}

/* New customer welcome / deals page */
.welcome-hero {
    background: linear-gradient(135deg, rgba(5,150,105,0.95) 0%, rgba(6,78,59,0.97) 100%),
        url('/images/snes_classic.webp') center/cover no-repeat;
    color: #fff; padding: clamp(56px, 9vw, 104px) 0; text-align: center;
}
.welcome-hero .kicker {
    display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px; padding: 6px 18px; font-size: .85rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.welcome-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 0 0 20px; line-height: 1.1; }
.welcome-hero h1 em { font-style: normal; color: #6ee7b7; }
.welcome-hero p { font-size: 1.15rem; opacity: .9; max-width: 58ch; margin: 0 auto 32px; line-height: 1.65; }
.welcome-hero .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.welcome-hero .btn { background: #fff; color: #065f46; }
.welcome-hero .btn.ghost { border-color: rgba(255,255,255,0.5); color: #fff; }

.welcome-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: #065f46; color: #fff; }
.welcome-stat { padding: 24px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.welcome-stat:last-child { border-right: none; }
.welcome-stat strong { display: block; font-size: 2rem; font-weight: 900; color: #6ee7b7; }
.welcome-stat span { font-size: .82rem; opacity: .75; }

.gift-offer-box {
    background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b; border-radius: 16px; padding: 32px 36px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; margin: 40px 0;
}
.gift-offer-box .gift-icon { font-size: 3.5rem; }
.gift-offer-box h2 { margin: 0 0 8px; color: #92400e; font-size: 1.5rem; }
.gift-offer-box p { margin: 0; color: #78350f; line-height: 1.6; }

.how-it-works { background: var(--brand-soft); border-radius: 16px; padding: 40px; margin: 40px 0; }
.how-it-works h2 { margin-top: 0; text-align: center; margin-bottom: 32px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; }
.step-num {
    width: 48px; height: 48px; background: var(--brand); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 900; margin: 0 auto 14px;
}
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.6; }

@media (max-width: 900px) {
    .welcome-stats { grid-template-columns: 1fr 1fr; }
    .gift-offer-box { grid-template-columns: 1fr; text-align: center; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ── Policy Pages ── */
.policy-doc h2 { margin: 40px 0 12px; font-size: 1.3rem; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.policy-doc h3 { margin: 24px 0 8px; font-size: 1.05rem; }
.policy-doc p, .policy-doc li { color: var(--muted); line-height: 1.75; font-size: 1rem; margin-bottom: 12px; }
.policy-doc ul, .policy-doc ol { padding-left: 22px; margin-bottom: 16px; }
.policy-doc table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: .92rem; }
.policy-doc th { background: var(--brand-soft); padding: 10px 14px; text-align: left; font-weight: 700; border: 1px solid var(--line); }
.policy-doc td { padding: 10px 14px; border: 1px solid var(--line); color: var(--muted); vertical-align: top; }

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

.returns-callout {
    background: var(--brand-soft);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    margin-top: 24px;
}

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

.returns-callout li {
    margin-bottom: 8px;
}

.returns-callout li:last-child {
    margin-bottom: 0;
}

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

/* ══════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE
   ══════════════════════════════════════════════════ */

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
    html { font-size: 14px; }

    .container { width: 94vw; }

    /* Header */
    .nav-row { height: 56px; gap: 12px; }
    .brand-logo { height: 32px; }
    .header-actions { gap: 10px; }

    /* Hero */
    .hero-content { min-height: 320px; }
    .hero-text { padding: clamp(32px, 5vw, 60px) 16px; }
    .hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .hero-actions { justify-content: center; }
    .hero-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

    /* Sections */
    .section { margin-bottom: 24px; }
    .section-head h2 { font-size: 1.2rem; }

    /* Grids */
    .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .grid.compact { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

    /* Cards */
    .card-body { padding: 12px; gap: 6px; }
    .card-body h3 { font-size: 0.88rem; }
    .card-media img { padding: 10px; }
    .card-actions { gap: 6px; }
    .card-actions button, .card-actions .btn { font-size: 0.8rem; padding: 6px 10px; }

    /* Catalog layout */
    .catalog-layout { grid-template-columns: 1fr; }
    .filter-panel { position: static; margin-bottom: 16px; }

    /* Promo banner */
    .promo-banner { grid-template-columns: 1fr; min-height: auto; }
    .promo-banner-right { display: none; }
    .promo-banner-left { padding: 24px; }

    /* Product page */
    .product-hero { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
    .product-gallery { position: static; }
    .product-title { font-size: 1.8rem; }
    .big-price { font-size: 1.8rem; }
    .specs-grid { grid-template-columns: 1fr; gap: 12px 16px; }
    .product-actions { grid-template-columns: 1fr; }

    /* Checkout */
    .checkout-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }

    /* Success page */
    .success-grid { grid-template-columns: 1fr; }

    /* Info pages */
    .page-hero { padding: clamp(32px, 5vw, 48px) 0; margin-bottom: 32px; }
    .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .values-grid { grid-template-columns: 1fr; }

    /* Trust strip */
    .trust-strip { grid-template-columns: 1fr 1fr; padding: 24px; gap: 16px; }
    .trust-item strong { font-size: 1.8rem; }

    /* Timeline */
    .timeline-item { grid-template-columns: 40px 1fr; gap: 16px; padding-bottom: 32px; }

    /* Info grid */
    .info-grid { grid-template-columns: 1fr; }

    /* FAQ */
    .faq { grid-template-columns: 1fr; }

    /* Footer */
    .site-footer { padding: 40px 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

    /* Bento grid */
    .bento-grid { grid-template-columns: 1fr; }

    /* Editorial */
    .editorial-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Merch info */
    .merch-grid { grid-template-columns: 1fr; }
    .merch-info-section { padding: 32px 0; }

    /* H-scroll */
    .h-scroll > * { flex: 0 0 220px; }
    .slider-head { padding: 0 16px; }

    /* Category bento */
    .category-section .h-scroll > * { flex: 0 0 200px; }

    /* Feature cards */
    .feature-grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testimonial-track > * { flex: 0 0 280px; }

    /* Cart / basket */
    .basket-item { flex-direction: column; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }
    .post-layout { grid-template-columns: 1fr; }

    /* Platform pages */
    .platform-hero-inner { grid-template-columns: 1fr; }

    /* Cookie banner */
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
    html { font-size: 13.5px; }

    .container { width: 96vw; }

    /* Header */
    .nav-row { height: 50px; gap: 8px; }
    .brand-logo { height: 28px; }
    .header-actions { gap: 8px; }
    .wishlist-link .count,
    .cart-toggle .count { font-size: 0.65rem; width: 16px; height: 16px; }

    /* Hero */
    .hero-content { min-height: 260px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }

    /* Catalog hero */
    .catalog-hero { padding: 24px 0; }
    .catalog-hero h1 { font-size: 1.5rem; }
    .catalog-hero p { font-size: 0.88rem; }

    /* Grids */
    .grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .grid.compact { grid-template-columns: repeat(2, 1fr); }

    /* Cards */
    .card-body { padding: 10px; gap: 4px; }
    .card-body h3 { font-size: 0.82rem; line-height: 1.3; }
    .card-body .meta { font-size: 0.7rem; }
    .price-row { font-size: 0.85rem; }
    .price-row strong { font-size: 0.9rem; }
    .card-actions { flex-direction: column; }
    .card-actions button, .card-actions .btn { width: 100%; font-size: 0.78rem; padding: 6px 8px; }

    /* Badges on cards */
    .badge { font-size: 0.65rem; padding: 3px 6px; }

    /* Filter panel */
    .filter-panel { padding: 12px; }
    .filter-panel h2 { font-size: 1rem; }

    /* Product page */
    .product-title { font-size: 1.4rem; margin-bottom: 16px; }
    .big-price { font-size: 1.5rem; margin-bottom: 16px; }
    .product-price-box { padding: 16px; margin-bottom: 20px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    /* Promo banner */
    .promo-banner-left { padding: 20px 16px; }
    .promo-banner-title { font-size: 1.2rem; }

    /* Section head */
    .section-head { flex-direction: column; align-items: flex-start; gap: 4px; }
    .section-head h2 { font-size: 1.1rem; }

    /* H-scroll */
    .h-scroll > * { flex: 0 0 180px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .site-footer { padding: 32px 0 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-bottom-links { flex-wrap: wrap; gap: 12px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-form input[type="email"] { min-width: unset; width: 100%; }

    /* Trust strip */
    .trust-strip { grid-template-columns: 1fr; padding: 20px; }
    .trust-item strong { font-size: 1.5rem; }

    /* Page hero */
    .page-hero h1 { font-size: 1.4rem; }
    .page-hero p { font-size: 0.95rem; }

    /* FAQ */
    .faq details { padding: 12px 14px; }
    .faq summary { font-size: 0.85rem; }

    /* Buttons general */
    .btn { padding: 10px 16px; font-size: 0.88rem; }
    .btn-huge { padding: 14px 24px; font-size: 1rem; }
    .btn.small { padding: 6px 12px; font-size: 0.8rem; }

    /* Checkout */
    .checkout-layout { gap: 16px; }

    /* Info blocks */
    .info-block { padding: 20px 0; }
    .info-block h2 { font-size: 1.2rem; }

    /* Merch page */
    .merch-card { padding: 16px; }
    .merch-icon { font-size: 1.5rem; }

    /* Delivery / returns pages */
    .delivery-box { padding: 10px; }

    /* Payment icons */
    .payment-icons img { width: 24px; }

    /* Reduced merch section */
    .reduced-merch-section { margin-bottom: 24px; }

    /* Welcome strip */
    .welcome-strip { padding: 8px 0; }
    .welcome-strip-text { font-size: 0.75rem; }
    .welcome-perk span { font-size: 0.75rem; }

    /* Perks bar */
    .welcome-strip-perks { gap: 20px; }
}

/* ═══════════════════════════════════════════════
   GIFT PROMO SECTIONS — 5 unique designs
   ═══════════════════════════════════════════════ */

/* --- Shared promo base --- */
.gift-promo {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
}
.gift-promo .container {
    position: relative;
    z-index: 2;
}
.gift-promo h2 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    margin: 0 0 16px;
}
.gift-promo p {
    line-height: 1.7;
    margin: 0 0 14px;
}
.gift-promo .promo-cta {
    display: inline-flex;
    margin-top: 20px;
}

/* --- Variant 1: Console Gifts — dark warm split --- */
.gift-promo--consoles {
    background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
    color: #fafaf9;
}
.gift-promo--consoles::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/hero-consoles.webp') center/cover no-repeat;
    opacity: 0.08;
}
.gift-promo--consoles h2 {
    font-size: 2rem;
    color: #fbbf24;
}
.gift-promo--consoles .promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.gift-promo--consoles .promo-text p {
    color: #d6d3d1;
    font-size: 1.02rem;
}
.gift-promo--consoles .promo-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gift-promo--consoles .promo-img-stack img {
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 2px solid rgba(251,191,36,0.2);
}
.gift-promo--consoles .btn {
    background: #d97706;
    color: #fff;
    border: none;
}

/* --- Variant 2: Retro SNES — warm nostalgia gradient --- */
.gift-promo--retro {
    background: linear-gradient(160deg, #fef3c7 0%, #fde68a 30%, #fbbf24 100%);
    color: #1c1917;
}
.gift-promo--retro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/snes_classic.webp') right center/contain no-repeat;
    opacity: 0.07;
}
.gift-promo--retro h2 {
    font-size: 1.9rem;
    color: #92400e;
}
.gift-promo--retro .promo-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.gift-promo--retro .promo-text p {
    color: #78350f;
    font-size: 1rem;
}
.gift-promo--retro .promo-highlight-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid #d97706;
}
.gift-promo--retro .promo-highlight-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: #92400e;
}
.gift-promo--retro .promo-highlight-card p {
    font-size: 0.95rem;
    color: #78350f;
}
.gift-promo--retro .btn {
    background: #92400e;
    color: #fff;
    border: none;
}

/* --- Variant 3: Arcade Neon — Pac-Man glow --- */
.gift-promo--arcade {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    color: #e0e7ff;
}
.gift-promo--arcade::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(250,204,21,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139,92,246,0.15) 0%, transparent 50%);
}
.gift-promo--arcade h2 {
    font-size: 2rem;
    color: #facc15;
    text-shadow: 0 0 20px rgba(250,204,21,0.3);
}
.gift-promo--arcade .promo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.gift-promo--arcade .arcade-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.gift-promo--arcade .arcade-card:hover {
    border-color: rgba(250,204,21,0.5);
    transform: translateY(-4px);
}
.gift-promo--arcade .arcade-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.gift-promo--arcade .arcade-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.1rem;
    color: #fbbf24;
    margin: 0 0 8px;
}
.gift-promo--arcade .arcade-card p {
    color: #c7d2fe;
    font-size: 0.92rem;
}
.gift-promo--arcade .promo-text {
    max-width: 720px;
}
.gift-promo--arcade .promo-text p {
    color: #c7d2fe;
    font-size: 1.02rem;
}
.gift-promo--arcade .btn {
    background: #facc15;
    color: #1e1b4b;
    border: none;
    font-weight: 700;
}

/* --- Variant 4: Ocean Adventure — Sea of Thieves --- */
.gift-promo--ocean {
    background: linear-gradient(160deg, #0c4a6e 0%, #0369a1 40%, #0ea5e9 100%);
    color: #f0f9ff;
}
.gift-promo--ocean::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/sot.webp') center/cover no-repeat;
    opacity: 0.1;
}
.gift-promo--ocean h2 {
    font-size: 2rem;
    color: #bae6fd;
}
.gift-promo--ocean .promo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.gift-promo--ocean .promo-text p {
    color: #e0f2fe;
    font-size: 1.02rem;
}
.gift-promo--ocean .ocean-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gift-promo--ocean .ocean-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    padding: 16px;
    backdrop-filter: blur(4px);
}
.gift-promo--ocean .ocean-feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.gift-promo--ocean .ocean-feature h3 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: #bae6fd;
}
.gift-promo--ocean .ocean-feature p {
    font-size: 0.9rem;
    color: #e0f2fe;
    margin: 0;
}
.gift-promo--ocean .btn {
    background: #fff;
    color: #0c4a6e;
    border: none;
    font-weight: 700;
}

/* --- Variant 5: Standalone Landing Page — rich warm editorial --- */
.gift-landing-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #292524 0%, #44403c 50%, #57534e 100%);
    color: #fafaf9;
    text-align: center;
}
.gift-landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/img/promo-pattern.webp') center/cover no-repeat;
    opacity: 0.06;
}
.gift-landing-hero .container { position: relative; z-index: 2; }
.gift-landing-hero h1 {
    font-family: "Syne", sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fbbf24;
    margin: 0 0 16px;
}
.gift-landing-hero .hero-sub {
    font-size: 1.15rem;
    color: #d6d3d1;
    max-width: 640px;
    margin: 0 auto 32px;
}

.gift-landing-section {
    padding: 56px 0;
}
.gift-landing-section:nth-child(even) {
    background: var(--surface-raised);
}
.gift-landing-section h2 {
    font-family: "Syne", sans-serif;
    font-size: 1.8rem;
    margin: 0 0 16px;
}
.gift-landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.gift-landing-grid--reverse {
    direction: rtl;
}
.gift-landing-grid--reverse > * {
    direction: ltr;
}
.gift-landing-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.gift-landing-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
}
.gift-landing-text p {
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.75;
}
.gift-landing-text .highlight {
    background: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    margin: 20px 0;
    font-weight: 500;
    color: var(--text);
}
.gift-landing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.gift-landing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 28px;
    text-align: center;
    transition: box-shadow 0.3s;
}
.gift-landing-card:hover {
    box-shadow: var(--shadow-lg);
}
.gift-landing-card-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}
.gift-landing-card h3 {
    font-family: "Syne", sans-serif;
    font-size: 1.1rem;
    margin: 0 0 8px;
}
.gift-landing-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.gift-landing-cta {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.gift-landing-cta h2 {
    font-family: "Syne", sans-serif;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 12px;
}
.gift-landing-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 28px;
}
.gift-landing-cta .btn {
    background: #fff;
    color: #92400e;
    font-weight: 700;
    border: none;
    font-size: 1.05rem;
    padding: 14px 32px;
}

/* --- Promo section responsive --- */
@media (max-width: 768px) {
    .gift-promo { padding: 40px 0; }
    .gift-promo--consoles .promo-split,
    .gift-promo--ocean .promo-split { grid-template-columns: 1fr; gap: 28px; }
    .gift-promo--retro .promo-columns { grid-template-columns: 1fr; gap: 24px; }
    .gift-promo--arcade .promo-grid-3 { grid-template-columns: 1fr; }
    .gift-promo--consoles .promo-img-stack { grid-template-columns: 1fr 1fr; }
    .gift-landing-hero h1 { font-size: 1.8rem; }
    .gift-landing-grid,
    .gift-landing-grid--reverse { grid-template-columns: 1fr; gap: 24px; }
    .gift-landing-cards { grid-template-columns: 1fr; }
    .gift-landing-cta h2 { font-size: 1.5rem; }
}
