:root { color-scheme: dark; --bg: #08090d; --panel: #111319; --text: #f5f5f7; --muted: #a2a6b0; --gold: #ddc279; --line: #2a2c35; }
* { box-sizing: border-box; }
body { margin: 0; background: radial-gradient(ellipse at 85% 0%, #252219 0, transparent 45%), var(--bg); color: var(--text); font: 16px/1.6 'Outfit', sans-serif; }
a { color: var(--gold); text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
[hidden] { display: none !important; }
.shop-header { max-width: 1200px; padding: 28px 32px; margin: auto; display: flex; justify-content: space-between; gap: 20px; align-items: center; border-bottom: 1px solid var(--line); }
.shop-header > a { text-decoration: none; }
.brand { font-size: 24px; color: var(--text); font-weight: 700; }
.brand span { color: var(--gold); }
.shop-main { max-width: 1160px; padding: 64px 32px; margin: auto; }
.intro { margin-bottom: 44px; }
.eyebrow, .step { color: var(--gold); font-size: 11px; letter-spacing: 2px; font-weight: 600; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.08; letter-spacing: -2px; margin: 18px 0; }
h1 em { font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 600; }
.intro > p:last-child { color: var(--muted); max-width: 520px; }
h2 { margin: 8px 0 24px; font-size: 24px; line-height: 1.3; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.panel { border: 1px solid var(--line); border-radius: 24px; background: var(--panel); padding: 28px; margin-bottom: 24px; }
.step { margin-top: 0; }
label { display: block; font-size: 14px; margin: 20px 0 8px; }
label span, .field-note { color: var(--muted); font-size: 13px; }
input, select, textarea { width: 100%; color: var(--text); background: #090a0f; border: 1px solid #3a3d49; border-radius: 10px; padding: 13px 14px; min-height: 48px; }
textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
#preview-link { display: inline-block; margin-top: 16px; }
.summary { position: sticky; top: 24px; padding: 0; overflow: hidden; }
.summary img { width: 100%; height: 230px; object-fit: cover; display: block; background: #4fb3f6; }
.summary img.plim { object-fit: contain; }
.summary-content { padding: 28px; }
.summary h2 { margin-bottom: 8px; }
#summary-name { color: var(--muted); }
.price-row, .seller { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding: 20px 0; }
.price-row strong { color: var(--gold); }
.availability { background: #242219; color: #e4d4a1; padding: 16px; border-radius: 12px; font-size: 14px; }
.seller { margin-top: 20px; padding-bottom: 0; }
.primary, .secondary { display: inline-flex; justify-content: center; align-items: center; border: 1px solid var(--gold); border-radius: 12px; padding: 14px 20px; font-weight: 600; text-decoration: none; min-height: 50px; }
.primary { background: var(--gold); color: #111319; }
.secondary { background: transparent; color: var(--gold); }
.primary:disabled { opacity: .45; cursor: wait; }
#review-button { width: 100%; margin-top: 12px; }
.review { max-width: 740px; margin: 0 auto; }
.review dl { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 12px 20px; }
.review dt { color: var(--muted); }
.review dd { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
footer { color: var(--muted); text-align: center; font-size: 13px; padding: 24px; }
@media (max-width: 760px) {
    .shop-header { padding: 20px; font-size: 13px; }
    .brand { font-size: 20px; }
    .shop-main { padding: 36px 20px; }
    .checkout-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .summary { position: static; grid-row: 1; }
    .summary img { height: 180px; }
    .summary-content, .panel:not(.summary) { padding: 22px; }
    .form-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
    .review dl { grid-template-columns: minmax(0, 1fr); gap: 4px; }
    .review dd { margin-bottom: 12px; }
    .review-actions > * { width: 100%; }
}
