:root {
    color-scheme: light;
    --background: #fafafa;
    --foreground: #18181b;
    --card: #fff;
    --muted: #f4f4f5;
    --muted-foreground: #71717a;
    --border: #e4e4e7;
    --primary: #18181b;
    --primary-foreground: #fafafa;
    --action: #2563eb;
    --action-hover: #1d4ed8;
    --action-foreground: #fff;
    --success: #15803d;
    --success-background: #f0fdf4;
    --radius: 10px;
    --header-height: 64px;
}

[data-theme="dark"] {
    color-scheme: dark;
    --background: #09090b;
    --foreground: #fafafa;
    --card: #18181b;
    --muted: #27272a;
    --muted-foreground: #a1a1aa;
    --border: #3f3f46;
    --primary: #fafafa;
    --primary-foreground: #18181b;
    --action: #3b82f6;
    --action-hover: #2563eb;
    --success: #86efac;
    --success-background: #052e16;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.drawer-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; transform: translateY(-150%); border-radius: 6px; padding: 9px 12px; background: var(--primary); color: var(--primary-foreground); }
.skip-link:focus { transform: none; }
.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--background) 92%, transparent); backdrop-filter: blur(14px); }
.header-inner, .footer-inner, .footer-bottom { width: 100%; padding-inline: 24px; }
.content-width { width: 100%; padding-inline: 24px; }
.header-inner { position: relative; min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 650; letter-spacing: -.02em; }
.brand img { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 7px; object-fit: cover; }
.desktop-nav { position: absolute; left: 50%; min-width: 0; display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.5vw, 25px); transform: translateX(-50%); }
.desktop-nav a { color: var(--foreground); font-size: 11px; font-weight: 400; white-space: nowrap; }
.desktop-nav a:hover { color: var(--muted-foreground); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action { min-height: 36px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border); border-radius: 7px; padding: 0 11px; background: var(--card); color: var(--foreground); font-size: 11px; font-weight: 550; cursor: pointer; }
.header-action:hover { background: var(--muted); }
.header-action svg { width: 15px; }
.cart-count { min-width: 17px; height: 17px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--primary); color: var(--primary-foreground); font-size: 9px; }
.cart-count[hidden] { display: none; }
.icon-button { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: var(--card); color: var(--foreground); cursor: pointer; }
.icon-button:hover { background: var(--muted); }
.icon-button svg { width: 16px; }
.mobile-menu-button, .mobile-menu-drawer { display: none; }
[data-theme-icon="dark"] { display: none; }
[data-theme="dark"] [data-theme-icon="light"] { display: none; }
[data-theme="dark"] [data-theme-icon="dark"] { display: inline-flex; }
.breadcrumb-bar { position: sticky; z-index: 40; top: var(--header-height); border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--card) 96%, transparent); backdrop-filter: blur(14px); }
.breadcrumb-bar .content-width { min-height: 42px; display: flex; align-items: center; gap: 20px; color: var(--muted-foreground); font-size: 12px; }
.breadcrumb-path { min-width: 0; display: flex; align-items: center; gap: 9px; }
.breadcrumb-bar strong { color: var(--foreground); font-weight: 500; }
.breadcrumb-bar span { color: #a1a1aa; }
.vat-toggle { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--foreground); font-size: 10px; font-weight: 550; white-space: nowrap; cursor: pointer; }
.vat-toggle > span:first-child { min-width: 42px; color: var(--foreground); text-align: right; }
.vat-toggle > strong { color: var(--muted-foreground); font-size: 9px; }
.switch { position: relative; width: 34px; height: 19px; display: inline-block; }
.switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.switch > span { position: absolute; inset: 0; border: 1px solid var(--border); border-radius: 999px; background: var(--muted); transition: background 160ms ease, border-color 160ms ease; }
.switch > span::after { content: ""; position: absolute; top: 2px; left: 2px; width: 13px; height: 13px; border-radius: 50%; background: var(--muted-foreground); transition: transform 160ms ease, background 160ms ease; }
.switch input:checked + span { border-color: var(--foreground); background: var(--foreground); }
.switch input:checked + span::after { transform: translateX(15px); background: var(--background); }
.switch input:focus-visible + span { outline: 2px solid var(--foreground); outline-offset: 2px; }
[data-disabled-link] { cursor: default; }

.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 620px); align-items: start; }
.product-media { position: sticky; top: calc(var(--header-height) + 42px); height: calc(100vh - var(--header-height) - 42px); display: flex; flex-direction: column; border-right: 1px solid var(--border); background: var(--muted); }
.media-stage { position: relative; min-height: 0; flex: 1; display: grid; place-items: center; overflow: hidden; }
.media-stage::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: color-mix(in srgb, var(--card) 78%, transparent); }
.media-stage img { position: relative; width: min(78%, 760px); height: min(70vh, 720px); object-fit: contain; mix-blend-mode: multiply; }
[data-theme="dark"] .media-stage img { mix-blend-mode: screen; }
.media-badge { position: absolute; z-index: 2; top: 24px; left: 24px; border: 1px solid var(--border); border-radius: 5px; padding: 6px 8px; background: var(--card); font-size: 10px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }

.product-config { min-width: 0; padding: 32px 32px 64px; }
.product-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 24px; }
h1 { margin: 0; font-size: 28px; font-weight: 650; letter-spacing: -.035em; }
.product-heading p:last-child { max-width: 430px; margin: 10px 0 0; color: var(--muted-foreground); font-size: 13px; line-height: 1.55; }
.stock { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; border: 1px solid color-mix(in srgb, var(--success) 25%, var(--border)); border-radius: 5px; padding: 6px 8px; background: var(--success-background); color: var(--success); font-size: 10px; font-weight: 600; }
.stock span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.review-proof { margin-bottom: 22px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.review-proof > div:first-child { padding: 13px 14px; }
.review-proof > div:first-child strong { margin-left: 9px; font-size: 12px; }
.review-proof > div:first-child small { display: block; margin-top: 5px; color: var(--muted-foreground); font-size: 10px; }
.review-stars { color: #f59e0b; font-size: 11px; letter-spacing: 1px; }
.review-platforms { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
.review-platforms a { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; font-size: 9px; }
.review-platforms a + a { border-left: 1px solid var(--border); }
.review-platforms span { overflow: hidden; color: var(--muted-foreground); text-overflow: ellipsis; white-space: nowrap; }
.review-platforms strong { flex: 0 0 auto; font-size: 9px; font-weight: 600; }
.review-platforms a:hover strong { text-decoration: underline; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-block: 1px solid var(--border); }
.price-row span { color: var(--muted-foreground); font-size: 12px; }
.price-row strong { font-size: 20px; font-weight: 650; font-variant-numeric: tabular-nums; }
.performance-controls { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.performance-head { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 7px 14px; padding-right: 18px; }
.performance-copy span, .performance-copy strong { display: block; }
.performance-copy span { color: var(--muted-foreground); font-size: 10px; }
.performance-copy strong { margin-top: 3px; font-size: 12px; }
.performance-meter { grid-column: 1 / -1; height: 7px; overflow: hidden; border-radius: 999px; background: var(--muted); }
.performance-meter span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #f59e0b 0%, #22c55e 70%, #16a34a 100%); transition: width 240ms ease; }
.performance-head > strong { min-width: 48px; font-size: 11px; font-variant-numeric: tabular-nums; text-align: right; }
.media-performance { flex: 0 0 auto; padding: 12px 18px; border-top: 1px solid var(--border); background: var(--card); }
.resolution-picker { min-width: 0; display: grid; align-content: center; gap: 6px; border-left: 1px solid var(--border); padding-left: 18px; color: var(--muted-foreground); font-size: 9px; }
.resolution-actions { min-width: 0; display: flex; align-items: center; gap: 6px; }
.resolution-options { display: inline-flex; gap: 2px; border: 1px solid var(--border); border-radius: 6px; padding: 2px; background: var(--muted); }
.resolution-options button { min-height: 24px; border: 0; border-radius: 4px; padding: 0 8px; background: transparent; color: var(--muted-foreground); font-size: 9px; font-weight: 600; cursor: pointer; }
.resolution-options button:hover { color: var(--foreground); }
.resolution-options button[aria-pressed="true"] { background: var(--card); color: var(--foreground); box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.resolution-options button:focus-visible { outline: 2px solid var(--action); outline-offset: 1px; }
.game-picker-trigger { min-height: 28px; border: 1px solid var(--border); border-radius: 6px; padding: 0 9px; background: var(--card); color: var(--foreground); font-size: 9px; font-weight: 600; cursor: pointer; }
.game-picker-trigger:hover { border-color: color-mix(in srgb, var(--foreground) 30%, var(--border)); background: var(--muted); }
.game-picker-trigger:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; }
.media-performance .game-fps-grid { margin-top: 12px; padding-top: 10px; }
.media-performance .game-fps-card { min-height: 74px; }
.game-fps-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.game-fps-card { min-width: 0; min-height: 74px; display: grid; grid-template-columns: 56px minmax(0, 1fr); align-items: stretch; overflow: hidden; border: 1px solid var(--border); border-radius: 7px; background: var(--background); color: var(--foreground); }
.game-fps-card img { position: static; width: 56px; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.game-fps-card div { min-width: 0; align-self: center; padding: 8px; }
.game-fps-card strong, .game-fps-card span, .game-fps-card small { display: block; }
.game-fps-card strong { display: -webkit-box; overflow: hidden; font-size: 9px; font-weight: 600; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.game-fps-card span { margin-top: 4px; font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; }
.game-fps-card small { margin-top: 2px; color: var(--muted-foreground); font-size: 8px; }
.summary-performance { display: none; padding: 11px 16px; border-bottom: 1px solid var(--border); }
.configuration { margin-top: 6px; }
.config-group { min-width: 0; margin: 0; padding: 0 0 26px; border: 0; border-bottom: 1px solid var(--border); }
.config-group legend { width: 100%; display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; padding: 26px 0 0; }
.group-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: var(--card); }
.group-icon img { width: 21px; height: 21px; }
[data-theme="dark"] .group-icon img { filter: invert(1) brightness(1.8); }
.config-group legend strong, .config-group legend small { display: block; }
.config-group legend strong { font-size: 14px; font-weight: 600; }
.config-group legend small { margin-top: 5px; color: var(--muted-foreground); font-size: 11px; font-weight: 400; }
.group-title { display: flex; align-items: center; gap: 7px; }
.help-button { width: 18px; height: 18px; display: inline-grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; padding: 0; background: var(--card); color: var(--muted-foreground); font-size: 10px; font-weight: 650; line-height: 1; cursor: pointer; }
.help-button:hover, .help-button:focus { border-color: var(--foreground); color: var(--foreground); outline: none; }
.option-list { display: grid; gap: 8px; margin-top: 16px; }
.option-card { position: relative; min-height: 66px; display: grid; grid-template-columns: 18px minmax(0,1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; background: var(--card); cursor: pointer; transition: border-color 130ms ease, box-shadow 130ms ease; }
.option-card:hover { border-color: color-mix(in srgb, var(--foreground) 34%, var(--border)); }
.option-card:has(input:checked) { border-color: var(--foreground); box-shadow: 0 0 0 1px var(--foreground); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-mark { width: 16px; height: 16px; border: 1px solid #a1a1aa; border-radius: 50%; }
.option-card:has(input:checked) .radio-mark { border: 5px solid var(--foreground); }
.option-copy, .option-title { min-width: 0; display: block; }
.option-copy > small { display: block; margin-top: 4px; color: var(--muted-foreground); font-size: 11px; }
.option-title { font-size: 13px; font-weight: 550; }
.option-title small { display: inline-block; margin-left: 8px; border-radius: 4px; padding: 3px 5px; background: var(--muted); color: var(--muted-foreground); font-size: 9px; font-weight: 600; vertical-align: 1px; }
.option-title small[hidden] { display: none; }
.option-card > strong { color: var(--muted-foreground); font-size: 11px; font-weight: 550; font-variant-numeric: tabular-nums; }

.summary-card { position: sticky; bottom: 16px; z-index: 10; margin-top: 32px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: color-mix(in srgb, var(--card) 92%, transparent); box-shadow: 0 0 0 16px color-mix(in srgb, var(--background) 82%, transparent), 0 -30px 46px 24px color-mix(in srgb, var(--background) 92%, transparent), 0 14px 35px rgba(0,0,0,.14); backdrop-filter: blur(24px) saturate(1.08); }
.summary-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 16px; border-bottom: 1px solid var(--border); }
.summary-heading span, .summary-heading strong { display: block; }
.summary-heading span { color: var(--muted-foreground); font-size: 10px; }
.summary-heading div strong { margin-top: 3px; font-size: 12px; }
.summary-heading > strong { font-size: 15px; font-variant-numeric: tabular-nums; }
.summary-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; margin: 0; padding: 13px 16px; list-style: none; }
.summary-card li { min-width: 0; display: flex; align-items: center; gap: 7px; overflow: hidden; color: var(--muted-foreground); font-size: 10px; white-space: nowrap; }
.summary-card li img { width: 14px; height: 14px; flex: 0 0 14px; }
.summary-card li span { overflow: hidden; text-overflow: ellipsis; }
[data-theme="dark"] .summary-card li img { filter: invert(1) brightness(1.8); }
.order-button { width: calc(100% - 24px); min-height: 52px; margin: 0 12px 12px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--action); border-radius: 7px; padding: 0 14px; background: var(--action); color: var(--action-foreground); cursor: pointer; transition: background 140ms ease, border-color 140ms ease, box-shadow 140ms ease; }
.order-button:hover { border-color: var(--action-hover); background: var(--action-hover); }
.order-button:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; box-shadow: 0 0 0 4px color-mix(in srgb, var(--action) 22%, transparent); }
.order-button span { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; }
.order-button span:first-child { display: block; text-align: left; }
.order-button small, .order-button strong { display: block; }
.order-button small { margin-bottom: 2px; opacity: .68; font-size: 9px; font-weight: 500; }
.order-button strong { font-size: 13px; font-variant-numeric: tabular-nums; }
.order-button svg { width: 14px; }
.drawer { position: fixed; z-index: 100; inset: 0; visibility: hidden; pointer-events: none; }
.drawer[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
.drawer-overlay { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.12); opacity: 0; backdrop-filter: blur(2px); transition: opacity 220ms ease; }
.drawer[aria-hidden="false"] .drawer-overlay { opacity: 1; }
.drawer-panel { position: absolute; right: 0; bottom: 0; left: 0; max-height: 92svh; overflow-y: auto; border-top: 1px solid var(--border); border-radius: 16px 16px 0 0; background: var(--card); color: var(--foreground); box-shadow: 0 -18px 60px rgba(0,0,0,.14); transform: translateY(102%); transition: transform 300ms cubic-bezier(.32,.72,0,1); }
.drawer[aria-hidden="false"] .drawer-panel { transform: translateY(0); }
.drawer-handle { width: 100px; height: 4px; margin: 14px auto 0; border-radius: 999px; background: var(--muted); }
.drawer-topbar { width: min(calc(100% - 48px), 1152px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0 20px; border-bottom: 1px solid var(--border); }
.drawer-topbar h2 { margin: 0; font-size: 24px; font-weight: 650; letter-spacing: -.035em; }
.drawer-topbar p { margin: 6px 0 0; color: var(--muted-foreground); font-size: 11px; }
.drawer-close { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: var(--card); color: var(--foreground); cursor: pointer; }
.drawer-close:hover { background: var(--muted); }
.drawer-close svg { width: 16px; }
.menu-drawer-grid { width: min(calc(100% - 48px), 1152px); margin: 28px auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: 44px; }
.drawer-navigation { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 8px; }
.drawer-navigation a { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--border); border-radius: 9px; padding: 0 16px; background: var(--background); font-size: 13px; font-weight: 550; transition: background 140ms ease, border-color 140ms ease; }
.drawer-navigation a:hover { border-color: color-mix(in srgb, var(--foreground) 28%, var(--border)); background: var(--muted); }
.drawer-navigation svg { width: 15px; color: var(--muted-foreground); }
.menu-reviews { min-height: 190px; display: flex; flex-direction: column; border-radius: 12px; padding: 22px; background: var(--primary); color: var(--primary-foreground); }
.menu-reviews h3 { margin: 0; font-size: 13px; font-weight: 600; }
.menu-review-score { display: flex; align-items: baseline; gap: 12px; margin-top: 13px; }
.menu-review-score strong { font-size: 36px; letter-spacing: -.05em; }
.menu-review-score span { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.menu-reviews p { max-width: 340px; margin: 12px 0 24px; font-size: 11px; line-height: 1.6; opacity: .72; }
.menu-reviews > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; font-size: 11px; font-weight: 600; }
.menu-reviews svg { width: 15px; }
.drawer-footer { width: min(calc(100% - 48px), 1152px); margin: auto auto 0; display: flex; align-items: center; gap: 8px; padding: 18px 0 24px; border-top: 1px solid var(--border); }
.drawer-footer a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px; color: var(--muted-foreground); font-size: 11px; }
.drawer-footer a:hover { color: var(--foreground); }
.drawer-footer svg { width: 15px; }
.game-picker-content { width: min(calc(100% - 48px), 1152px); margin: 24px auto 32px; }
.game-picker-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.game-search { width: min(100%, 460px); display: grid; gap: 7px; color: var(--foreground); font-size: 11px; font-weight: 550; }
.game-search input { width: 100%; height: 44px; border: 1px solid var(--border); border-radius: 7px; padding: 0 13px; background: var(--background); color: var(--foreground); font: inherit; outline: none; }
.game-search input::placeholder { color: var(--muted-foreground); font-weight: 400; }
.game-search input:focus { border-color: var(--foreground); box-shadow: 0 0 0 3px color-mix(in srgb, var(--foreground) 8%, transparent); }
.game-picker-count { display: flex; align-items: baseline; gap: 7px; padding-bottom: 12px; }
.game-picker-count strong { font-size: 14px; font-variant-numeric: tabular-nums; }
.game-picker-count span { color: var(--muted-foreground); font-size: 10px; }
.game-picker-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
.game-picker-option { position: relative; min-width: 0; min-height: 104px; display: grid; grid-template-columns: 70px minmax(0, 1fr); align-items: center; gap: 14px; overflow: hidden; border: 1px solid var(--border); border-radius: 9px; padding: 0 13px 0 0; background: var(--background); color: var(--foreground); text-align: left; cursor: pointer; transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease; }
.game-picker-option:hover { border-color: color-mix(in srgb, var(--foreground) 32%, var(--border)); }
.game-picker-option:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; }
.game-picker-option[aria-pressed="true"] { border-color: var(--action); box-shadow: inset 0 0 0 1px var(--action); }
.game-picker-option > img { width: 70px; height: 104px; object-fit: cover; }
.game-picker-option-copy { min-width: 0; display: grid; gap: 7px; }
.game-picker-option-copy strong { overflow: hidden; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.game-picker-option-copy small { color: var(--muted-foreground); font-size: 9px; }
.game-picker-option-state { position: absolute; top: 8px; right: 8px; min-width: 54px; border-radius: 4px; padding: 6px 8px; background: var(--muted); color: var(--muted-foreground); font-size: 8px; font-weight: 650; text-align: center; }
.game-picker-option[aria-pressed="true"] .game-picker-option-state { background: color-mix(in srgb, var(--action) 13%, var(--background)); color: var(--action); }
.game-picker-empty { grid-column: 1 / -1; margin: 0; border: 1px dashed var(--border); border-radius: 9px; padding: 32px; color: var(--muted-foreground); font-size: 11px; text-align: center; }
.game-picker-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 18px; border-top: 1px solid var(--border); padding-top: 18px; }
.game-picker-footer p { margin: 0; color: var(--muted-foreground); font-size: 10px; }
.drawer-primary-button.game-picker-save { min-width: 150px; background: var(--action); border-color: var(--action); color: var(--action-foreground); }
.drawer-primary-button.game-picker-save:hover { border-color: var(--action-hover); background: var(--action-hover); }
.drawer-primary-button.game-picker-save:disabled { border-color: var(--border); background: var(--muted); color: var(--muted-foreground); cursor: not-allowed; }
.component-info-grid { width: min(calc(100% - 48px), 1152px); min-height: 390px; margin: 28px auto 36px; display: grid; grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr); gap: 48px; }
.component-info-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 12px; padding: 36px; background: var(--muted); text-align: center; }
.component-info-icon { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 16px; background: var(--card); }
.component-info-icon img, .component-info-icon svg { width: 38px; height: 38px; }
[data-theme="dark"] .component-info-icon img { filter: invert(1) brightness(1.8); }
.component-info-visual strong { margin-top: 18px; font-size: 16px; }
.component-info-copy { align-self: center; max-width: 720px; }
.component-info-copy p { color: var(--muted-foreground); line-height: 1.7; }
.component-info-lead { margin: 0; color: var(--foreground) !important; font-size: 15px; }
.component-info-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.component-info-details section { border: 1px solid var(--border); border-radius: 10px; padding: 18px; background: var(--background); }
.component-info-details h3 { margin: 0; font-size: 12px; }
.component-info-details p { margin: 9px 0 0; font-size: 12px; }
.login-intro { align-items: flex-start; text-align: left; }
.login-intro h3 { max-width: 360px; margin: 24px 0 0; font-size: 26px; letter-spacing: -.04em; }
.login-intro p { max-width: 390px; margin: 12px 0 0; color: var(--muted-foreground); font-size: 12px; line-height: 1.7; }
.login-card { align-self: center; width: min(100%, 430px); display: grid; margin-inline: auto; }
.login-card label, .checkout-fields label { color: var(--foreground); font-size: 11px; font-weight: 550; }
.login-card input, .checkout-fields input { width: 100%; height: 44px; margin-top: 7px; border: 1px solid var(--border); border-radius: 7px; padding: 0 12px; background: var(--background); color: var(--foreground); outline: none; }
.login-card input:focus, .checkout-fields input:focus { border-color: var(--foreground); box-shadow: 0 0 0 2px color-mix(in srgb, var(--foreground) 12%, transparent); }
.login-card > input + .login-label { margin-top: 18px; }
.login-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.login-label button { border: 0; padding: 0; background: transparent; color: var(--muted-foreground); font-size: 10px; cursor: pointer; }
.login-card .drawer-primary-button { margin-top: 22px; }
.login-card > p { min-height: 17px; margin: 10px 0 0; color: var(--muted-foreground); font-size: 10px; text-align: center; }
.drawer-primary-button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--primary); border-radius: 7px; padding: 0 15px; background: var(--primary); color: var(--primary-foreground); font-size: 11px; font-weight: 600; cursor: pointer; }
.drawer-primary-button svg { width: 14px; }
.checkout-steps { width: min(calc(100% - 48px), 1152px); margin: 20px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--border); border-radius: 9px; }
.checkout-steps button { min-height: 52px; display: flex; align-items: center; gap: 10px; border: 0; padding: 0 14px; background: var(--card); color: var(--muted-foreground); font-size: 11px; font-weight: 550; text-align: left; }
.checkout-steps button + button { border-left: 1px solid var(--border); }
.checkout-steps button[data-active="true"] { background: var(--muted); color: var(--foreground); }
.checkout-steps button span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; font-size: 10px; }
.checkout-steps button[data-active="true"] span { border-color: var(--primary); background: var(--primary); color: var(--primary-foreground); }
.checkout-content { width: min(calc(100% - 48px), 1152px); margin: 16px auto 36px; }
.checkout-content [hidden] { display: none; }
.checkout-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(310px,.72fr); gap: 16px; }
.checkout-section, .checkout-total, .checkout-options { align-self: start; overflow: hidden; border: 1px solid var(--border); border-radius: 9px; background: var(--background); }
.checkout-section > header { min-height: 48px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid var(--border); padding: 0 15px; background: color-mix(in srgb, var(--muted) 55%, transparent); }
.checkout-section > header svg { width: 15px; color: var(--muted-foreground); }
.checkout-section h2, .checkout-section h3 { margin: 0; font-size: 12px; }
.checkout-configuration-body { display: grid; grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr); }
.checkout-system-image { position: relative; min-height: 320px; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--border); background: var(--muted); }
.checkout-system-image::before { content: ""; position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; background: color-mix(in srgb, var(--card) 78%, transparent); }
.checkout-system-image img { position: relative; width: 92%; height: 92%; object-fit: contain; mix-blend-mode: multiply; }
[data-theme="dark"] .checkout-system-image img { mix-blend-mode: screen; }
.checkout-items { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; padding: 0; list-style: none; }
.checkout-configuration .checkout-items { grid-template-columns: 1fr; align-content: start; }
.checkout-items li { min-width: 0; display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 10px; }
.checkout-items li:nth-child(odd) { border-right: 1px solid var(--border); }
.checkout-configuration .checkout-items li:nth-child(odd) { border-right: 0; }
.checkout-items img { width: 18px; height: 18px; }
[data-theme="dark"] .checkout-items img { filter: invert(1) brightness(1.8); }
.checkout-items span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.checkout-items small { color: var(--muted-foreground); font-size: 9px; }
.checkout-total { padding: 18px; }
.checkout-total > span { color: var(--muted-foreground); font-size: 10px; }
.checkout-total > strong { display: block; margin-top: 4px; font-size: 24px; letter-spacing: -.035em; }
.checkout-total > p { margin: 12px 0 20px; color: var(--muted-foreground); font-size: 10px; line-height: 1.55; }
.checkout-total .drawer-primary-button { width: 100%; }
.checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px; }
.checkout-fields .field-wide { grid-column: 1 / -1; }
.checkout-options { padding: 16px; }
.checkout-options fieldset { display: grid; gap: 8px; margin: 0; padding: 0; border: 0; }
.checkout-options fieldset + fieldset { margin-top: 20px; }
.checkout-options legend { margin-bottom: 10px; padding: 0; font-size: 11px; font-weight: 650; }
.checkout-options label { position: relative; min-height: 52px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--border); border-radius: 7px; padding: 9px 11px; cursor: pointer; }
.checkout-options input { position: absolute; opacity: 0; }
.checkout-options label > span { width: 16px; height: 16px; flex: 0 0 16px; border: 1px solid var(--muted-foreground); border-radius: 50%; }
.checkout-options label:has(input:checked) { border-color: var(--foreground); }
.checkout-options label:has(input:checked) > span { border: 5px solid var(--foreground); }
.checkout-options label strong, .checkout-options label small { display: block; }
.checkout-options label strong { font-size: 10px; }
.checkout-options label small { margin-top: 3px; color: var(--muted-foreground); font-size: 9px; }
.checkout-buttons { display: grid; grid-template-columns: auto 1fr; gap: 8px; margin-top: 20px; }
.checkout-buttons > button:first-child { border: 1px solid var(--border); border-radius: 7px; padding: 0 15px; background: var(--card); color: var(--foreground); font-size: 10px; cursor: pointer; }
.checkout-confirmation { max-width: 520px; margin: 54px auto; text-align: center; }
.checkout-confirmation > span { width: 56px; height: 56px; display: grid; place-items: center; margin-inline: auto; border-radius: 50%; background: var(--success-background); color: var(--success); }
.checkout-confirmation > span svg { width: 24px; }
.checkout-confirmation h2, .checkout-confirmation h3 { margin: 18px 0 0; font-size: 22px; }
.checkout-confirmation p { margin: 10px 0 22px; color: var(--muted-foreground); font-size: 11px; line-height: 1.6; }
.information-section { scroll-margin-top: calc(var(--header-height) + 42px); border-top: 1px solid var(--border); background: var(--muted); }
.information-inner { width: 100%; padding: 72px 24px; }
.information-intro { max-width: 760px; margin-bottom: 32px; }
.information-intro h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); font-weight: 650; letter-spacing: -.04em; }
.information-intro p { margin: 15px 0 0; color: var(--muted-foreground); font-size: 13px; line-height: 1.7; }
.information-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.information-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: var(--card); }
.information-card h3 { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; font-size: 13px; font-weight: 650; }
.information-card-icon { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 7px; background: var(--muted); color: var(--muted-foreground); }
.information-card-icon svg { width: 16px; }
.information-card ul { display: grid; gap: 9px; margin: 0; padding: 0 0 0 16px; color: var(--muted-foreground); font-size: 11px; line-height: 1.55; }
.specs-card { grid-row: span 2; }
.specs-card dl { margin: 0; }
.specs-card dl div { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 20px; padding: 10px 0; border-top: 1px solid var(--border); font-size: 11px; line-height: 1.5; }
.specs-card dt { display: flex; align-items: center; gap: 9px; color: var(--muted-foreground); }
.specs-card dt img { width: 18px; height: 18px; flex: 0 0 18px; }
[data-theme="dark"] .specs-card dt img { filter: invert(1) brightness(1.8); }
.specs-card dd { margin: 0; font-weight: 520; }
.wide-card { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.wide-card p { margin: 0; color: var(--muted-foreground); font-size: 11px; line-height: 1.65; }
.site-footer { border-top: 1px solid var(--border); background: var(--card); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-block: 42px; }
.footer-inner > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-inner p, .footer-inner a:not(.brand), .footer-inner address, .footer-inner > div > span { margin: 0; color: var(--muted-foreground); font-size: 11px; font-style: normal; line-height: 1.6; }
.footer-inner strong { font-size: 11px; }
.footer-bottom { min-height: 54px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); color: var(--muted-foreground); font-size: 10px; }
.checkout-page { min-height: calc(100vh - 161px); padding: 44px 24px 72px; }
.page-heading { width: min(100%, 1152px); margin: 0 auto 28px; }
.page-heading h1 { font-size: 34px; }
.page-heading p { margin: 10px 0 0; color: var(--muted-foreground); font-size: 13px; }
.checkout-page .checkout-steps, .checkout-page .checkout-content { width: min(100%, 1152px); }
.checkout-page .checkout-content { margin-bottom: 0; }
.cart-empty { width: min(100%, 620px); margin: 90px auto; border: 1px solid var(--border); border-radius: 12px; padding: 38px; background: var(--card); text-align: center; }
.cart-empty h2 { margin: 0; font-size: 24px; }
.cart-empty p { margin: 10px 0 22px; color: var(--muted-foreground); font-size: 12px; }
.login-page { min-height: 100svh; display: grid; place-items: center; padding: 28px; background: var(--muted); }
.grip-login-card { width: min(950px, 100%); min-height: 600px; display: grid; grid-template-columns: .84fr 1.16fr; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: var(--card); box-shadow: 0 24px 70px rgba(0,0,0,.12); }
.login-main { display: flex; flex-direction: column; padding: 38px 48px 30px; }
.login-form { display: grid; gap: 18px; margin-block: auto; }
.login-heading { margin-bottom: 8px; }
.login-heading h1 { margin: 0 0 8px; font-size: 30px; letter-spacing: -.04em; }
.login-heading p, .login-footnote, .legal-copy { margin: 0; color: var(--muted-foreground); font-size: 11px; line-height: 1.6; }
.field-stack { display: grid; gap: 7px; font-size: 11px; font-weight: 550; }
.field-stack input { width: 100%; height: 44px; border: 1px solid var(--border); border-radius: 7px; padding: 0 12px; background: var(--background); color: var(--foreground); outline: none; }
.field-stack input:focus { border-color: var(--foreground); box-shadow: 0 0 0 2px color-mix(in srgb, var(--foreground) 12%, transparent); }
.field-label-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.field-label-row button { border: 0; padding: 0; background: transparent; color: var(--muted-foreground); font-size: 10px; cursor: default; }
.login-footnote { text-align: center; }
.legal-copy { margin-top: auto; }
.login-visual { position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 48px; background: #18181b; color: #fff; }
.login-visual::after { content: ""; position: absolute; top: -150px; right: -160px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.login-visual-copy { position: relative; z-index: 1; max-width: 430px; }
.login-visual h2 { margin: 0 0 15px; font-size: 40px; line-height: 1.05; letter-spacing: -.05em; }
.login-visual-copy p { margin: 0; color: #d4d4d8; font-size: 13px; line-height: 1.6; }
.login-preview { position: relative; z-index: 1; margin-top: auto; border-radius: 10px; padding: 20px; background: #fff; color: #18181b; box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.preview-head { display: flex; justify-content: space-between; gap: 20px; color: #71717a; font-size: 10px; }
.preview-score { display: flex; align-items: flex-end; gap: 10px; padding: 20px 0; border-bottom: 1px solid #e4e4e7; }
.preview-score strong { font-size: 42px; line-height: 1; }
.preview-score span { padding-bottom: 3px; font-size: 11px; font-weight: 600; }
.preview-service { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px solid #e4e4e7; font-size: 10px; }
.preview-service:last-child { border: 0; }
.preview-service b { color: #15803d; }

@media (max-width: 1180px) {
    .desktop-nav { display: none; }
    .mobile-menu-button { display: grid; }
    .mobile-menu-drawer { display: block; }
}

@media (max-width: 1050px) {
    .product-layout { grid-template-columns: 1fr; }
    .product-media { position: relative; top: auto; height: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
    .media-stage { height: min(64vh, 620px); flex: none; }
    .media-stage img { height: 90%; }
    .media-performance { display: none; }
    .product-config { width: min(100%, 720px); margin-inline: auto; }
    .summary-card { bottom: 10px; }
    .summary-performance { display: grid; }
    .information-inner { padding-block: 56px; }
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-total, .checkout-options { position: static; }
}

@media (max-width: 720px) {
    .header-inner, .footer-inner, .footer-bottom { padding-inline: 14px; }
    .content-width { padding-inline: 14px; }
    .header-action { width: 36px; padding: 0; justify-content: center; }
    .header-action span { display: none; }
    .product-config { padding: 24px 16px 44px; }
    .product-heading { display: block; }
    .stock { margin-top: 16px; }
    .review-platforms { grid-template-columns: 1fr; }
    .review-platforms a + a { border-top: 1px solid var(--border); border-left: 0; }
    .media-stage { height: 430px; }
    .media-stage img { width: 94%; height: 86%; }
    .media-badge { top: 14px; left: 14px; }
    .option-card { grid-template-columns: 18px minmax(0,1fr); }
    .option-card > strong { grid-column: 2; }
    .performance-head { grid-template-columns: minmax(0,1fr) auto; gap: 7px 8px; padding-right: 10px; }
    .summary-card { border-radius: 9px; }
    .summary-card .summary-heading, .summary-card ul { display: none; }
    .summary-performance { padding: 10px 12px; }
    .resolution-picker { gap: 4px; padding-left: 10px; }
    .resolution-actions { gap: 4px; }
    .resolution-options { gap: 1px; padding: 2px; }
    .resolution-options button { min-height: 22px; padding-inline: 4px; font-size: 8px; }
    .game-picker-trigger { min-height: 27px; padding-inline: 6px; font-size: 8px; white-space: nowrap; }
    .summary-performance .game-fps-card { grid-template-columns: 1fr; grid-template-rows: 54px auto; }
    .summary-performance .game-fps-card img { width: 100%; height: 54px; }
    .summary-performance .game-fps-card div { align-self: auto; padding: 6px; }
    .summary-performance .game-fps-card strong { display: block; overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
    .summary-performance .game-fps-card span { font-size: 11px; }
    .order-button { width: calc(100% - 16px); min-height: 48px; margin: 0 8px 8px; }
    .information-inner { padding: 44px 14px; }
    .information-grid, .wide-card { grid-template-columns: 1fr; }
    .specs-card { grid-row: auto; }
    .specs-card dl div { grid-template-columns: 92px 1fr; gap: 12px; }
    .wide-card { gap: 28px; }
    .drawer-panel { min-height: 0; max-height: 92svh; }
    .drawer-topbar, .menu-drawer-grid, .drawer-footer, .component-info-grid, .game-picker-content, .checkout-steps, .checkout-content { width: calc(100% - 28px); }
    .drawer-topbar { padding-block: 14px 16px; }
    .drawer-topbar h2 { font-size: 20px; }
    .drawer-topbar p { max-width: 260px; line-height: 1.45; }
    .menu-drawer-grid { grid-template-columns: 1fr; gap: 14px; margin-block: 18px; }
    .drawer-navigation { grid-template-columns: 1fr; }
    .drawer-navigation a { min-height: 48px; }
    .menu-reviews { min-height: 168px; }
    .drawer-footer { padding-block: 14px 18px; }
    .game-picker-content { margin-block: 18px 24px; }
    .game-picker-toolbar { align-items: stretch; gap: 12px; }
    .game-search { width: 100%; }
    .game-picker-count { flex: 0 0 auto; align-self: end; display: grid; gap: 2px; padding-bottom: 7px; }
    .game-picker-count span { max-width: 54px; line-height: 1.25; }
    .game-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 14px; }
    .game-picker-option { min-height: 88px; grid-template-columns: 58px minmax(0, 1fr); gap: 10px; padding-right: 10px; }
    .game-picker-option > img { width: 58px; height: 88px; }
    .game-picker-option-state { top: 7px; right: 7px; min-width: 0; width: fit-content; padding: 4px 7px; }
    .game-picker-option-copy { align-self: end; padding-top: 10px; }
    .game-picker-option-copy strong { white-space: normal; }
    .game-picker-option-copy small { display: none; }
    .game-picker-footer { align-items: stretch; gap: 12px; }
    .game-picker-footer p { align-self: center; line-height: 1.4; }
    .game-picker-save { min-width: 132px; }
    .component-info-grid { min-height: 0; grid-template-columns: 1fr; gap: 14px; margin-block: 18px; }
    .component-info-visual { min-height: 160px; padding: 24px; }
    .component-info-copy { padding: 12px 2px 18px; }
    .component-info-details { grid-template-columns: 1fr; }
    .checkout-steps { margin-top: 14px; }
    .checkout-steps button { min-height: 46px; justify-content: center; padding: 0 6px; font-size: 9px; }
    .checkout-steps button span { width: 20px; height: 20px; }
    .checkout-content { margin-block: 12px 18px; }
    .checkout-configuration-body { grid-template-columns: 112px minmax(0, 1fr); }
    .checkout-system-image { min-height: 100%; }
    .checkout-system-image img { width: 100%; height: auto; }
    .checkout-items { grid-template-columns: 1fr; }
    .checkout-items li:nth-child(odd) { border-right: 0; }
    .checkout-fields { grid-template-columns: 1fr; gap: 13px; }
    .checkout-fields .field-wide { grid-column: auto; }
    .checkout-buttons { grid-template-columns: 1fr; }
    .checkout-buttons > button:first-child { min-height: 40px; order: 2; }
    .checkout-page { padding: 32px 14px 52px; }
    .login-page { padding: 0; }
    .grip-login-card { min-height: 100svh; grid-template-columns: 1fr; border: 0; border-radius: 0; }
    .login-main { min-height: 100svh; padding: 28px 22px; }
    .login-visual { display: none; }
    .breadcrumb-path > *:not(:last-child) { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { min-height: 70px; display: grid; align-content: center; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
