/* =========================================================================
   GarageGifts.co — premium dark / cinematic / neon automotive theme
   Hand-written, no Tailwind. Mobile-first.
   ========================================================================= */

:root {
    --bg:            #07090d;
    --bg-soft:       #0d1016;
    --bg-card:       #11151d;
    --bg-elevated:   #161b25;
    --border:        rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.16);
    --text:          #f4f6fb;
    --text-muted:    #9aa3b2;
    --text-dim:      #6b7280;
    --accent:        #ff2d55;   /* neon red */
    --accent-2:      #00e6c3;   /* neon teal */
    --accent-3:      #7c5cff;   /* electric violet */
    --accent-glow:   rgba(255,45,85,0.45);
    --gold:          #f5b042;
    --radius:        16px;
    --radius-sm:     10px;
    --maxw:          1200px;
    --shadow:        0 20px 60px rgba(0,0,0,0.55);
    --font:          'Inter', 'Noto Sans Georgian', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display:  'Inter', 'Noto Sans Georgian', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; overflow-wrap: break-word; word-break: break-word; }
h1 { font-size: clamp(2.1rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

.eyebrow {
    display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}
.text-accent { color: var(--accent); }
.gradient-text {
    background: linear-gradient(100deg, #fff 0%, var(--accent) 55%, var(--accent-3) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
    cursor: pointer; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(120deg, var(--accent), #ff5a78);
    color: #fff; box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px var(--accent-glow); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Test-mode banner ---------- */
.test-banner {
    background: linear-gradient(90deg, var(--accent-3), var(--accent));
    color: #fff; text-align: center; font-size: 0.84rem; font-weight: 700;
    padding: 8px 16px; letter-spacing: 0.01em;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 120;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.45); transition: transform .18s, box-shadow .18s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px rgba(37,211,102,0.6); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px); background: rgba(7,9,13,0.72);
    border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; white-space: nowrap; flex-shrink: 0; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.nav-links { display: none; gap: 22px; align-items: center; flex-wrap: nowrap; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: none; }
.nav-toggle { background: none; border: 1px solid var(--border-strong); color: var(--text); width: 42px; height: 42px; border-radius: 10px; font-size: 1.2rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 20px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px; border-radius: 8px; color: var(--text-muted); }
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

@media (min-width: 1040px) {
    .nav-links, .nav-cta { display: flex; }
    .nav-toggle { display: none; }
    .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 90px; overflow: hidden; }
.hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(124,92,255,0.20), transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(255,45,85,0.22), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(0,230,195,0.12), transparent 55%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.25;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; display: grid; gap: 44px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.15rem; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--text-dim); font-size: 0.85rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-visual { position: relative; }
.hero-visual .frame {
    border-radius: 22px; overflow: hidden; border: 1px solid var(--border-strong);
    box-shadow: var(--shadow); aspect-ratio: 4/5; background: linear-gradient(160deg, #1a1f2b, #0b0e14);
    display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-visual .frame .placeholder { color: var(--text-dim); text-align: center; padding: 30px; }
.hero-visual .tag {
    position: absolute; bottom: 16px; left: 16px; background: rgba(7,9,13,0.8);
    border: 1px solid var(--border-strong); padding: 8px 14px; border-radius: 999px;
    font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(8px);
}

@media (min-width: 980px) {
    .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
    .hero { padding: 110px 0 120px; }
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.section-alt { background: var(--bg-soft); }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 22px; }
.step {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px 26px; position: relative; transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step .num {
    font-size: 0.85rem; font-weight: 800; color: var(--bg); background: var(--accent-2);
    width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Cards grid ---------- */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: transform .2s, border-color .2s, box-shadow .2s; position: relative;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card-media {
    aspect-ratio: 3/4; background: linear-gradient(150deg, #1b2130, #0c0f16);
    display: flex; align-items: center; justify-content: center; color: var(--text-dim);
    position: relative; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.card-body p { font-size: 0.9rem; }
.card-price { margin-top: 12px; font-weight: 800; color: var(--accent-2); font-size: 1.05rem; }
.badge-pill {
    position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.72rem; font-weight: 700;
    background: rgba(7,9,13,0.8); border: 1px solid var(--border-strong); padding: 5px 11px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* ---------- Style category block ---------- */
.style-cat { margin-bottom: 46px; }
.style-cat-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.style-cat-head h3 { font-size: 1.4rem; }
.style-cat-head .count { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- Before / After ---------- */
.ba { display: grid; gap: 20px; align-items: center; }
.ba .pane { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); position: relative; aspect-ratio: 4/5; background: linear-gradient(160deg,#1a1f2b,#0b0e14); display:flex; align-items:center; justify-content:center; }
.ba .pane .label { position: absolute; top: 14px; left: 14px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(7,9,13,0.8); padding: 5px 12px; border-radius: 999px; border: 1px solid var(--border-strong); }
.ba .pane.after .label { color: var(--accent-2); }
@media (min-width: 760px) { .ba { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
    cursor: pointer; padding: 22px 4px; font-weight: 600; font-size: 1.08rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-2); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 4px 22px; color: var(--text-muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
    position: relative; border-radius: 26px; padding: 64px 36px; text-align: center; overflow: hidden;
    background: linear-gradient(130deg, #15101c, #0b0e14);
    border: 1px solid var(--border-strong);
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 20%, var(--accent-glow), transparent 45%),
                radial-gradient(circle at 75% 80%, rgba(124,92,255,0.4), transparent 45%);
    opacity: 0.6;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 540px; margin: 0 auto 28px; color: var(--text); opacity: 0.85; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 34px; background: var(--bg-soft); margin-top: 40px; }
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); padding: 5px 0; font-size: 0.95rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--text-dim); font-size: 0.85rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ---------- Create flow ---------- */
.flow { padding: 50px 0 90px; }
.stepper { display: flex; gap: 8px; justify-content: center; margin-bottom: 42px; flex-wrap: wrap; }
.stepper .pill { display: flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border); font-size: 0.85rem; color: var(--text-dim); }
.stepper .pill .n { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; }
.stepper .pill.active { border-color: var(--accent); color: var(--text); }
.stepper .pill.active .n { background: var(--accent); color: #fff; }
.stepper .pill.done .n { background: var(--accent-2); color: var(--bg); }

.flow-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 720px; margin: 0 auto; }
.flow-card.wide { max-width: 980px; }
.flow-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.flow-card .sub { color: var(--text-muted); margin-bottom: 26px; }

/* Upload dropzone */
.dropzone {
    border: 2px dashed var(--border-strong); border-radius: var(--radius); padding: 46px 20px; text-align: center;
    cursor: pointer; transition: border-color .2s, background .2s; background: rgba(255,255,255,0.02);
}
.dropzone:hover { border-color: var(--accent); background: rgba(255,45,85,0.05); }
.dropzone .icon { font-size: 2.6rem; margin-bottom: 12px; }
.dropzone small { color: var(--text-dim); display: block; margin-top: 8px; }
.preview-img { margin-top: 22px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.preview-img img { max-height: 360px; width: 100%; object-fit: contain; background: #000; }

/* Selectable option grid */
.opt-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.opt {
    position: relative; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
    cursor: pointer; transition: border-color .15s, transform .15s; background: var(--bg-elevated);
}
.opt:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.opt input { position: absolute; opacity: 0; }
.opt .opt-media { aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; color: var(--text-dim); background: linear-gradient(150deg,#1b2130,#0c0f16); }
.opt .opt-media img { width: 100%; height: 100%; object-fit: cover; }
.opt .opt-body { padding: 12px 14px; }
.opt .opt-body strong { font-size: 0.95rem; }
.opt .opt-body span { display: block; color: var(--accent-2); font-weight: 700; font-size: 0.9rem; margin-top: 4px; }
.opt input:checked + .opt-inner,
.opt.selected { }
.opt input:checked ~ .check { opacity: 1; }
.opt .check { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; font-size: 0.9rem; z-index: 3; }
.opt:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.opt:has(input:checked) .check { opacity: 1; }

.flow-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 30px; }

/* Generating preview */
.generating { text-align: center; padding: 30px 0; }
.spinner { width: 64px; height: 64px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.1); border-top-color: var(--accent); margin: 0 auto 24px; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.gen-meta { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.chip { background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; font-size: 0.85rem; }

/* Forms */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); background: var(--bg-elevated);
    border: 1px solid var(--border-strong); color: var(--text); font-size: 0.98rem; font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,45,85,0.15); }
.field .hint { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 620px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* Order summary */
.summary { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 90px; }
.summary h3 { margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--text-muted); font-size: 0.95rem; }
.summary-row.total { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; color: var(--text); font-weight: 800; font-size: 1.2rem; }
.checkout-grid { display: grid; gap: 30px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.4fr 0.85fr; } }

/* Alerts */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-size: 0.95rem; border: 1px solid transparent; }
.alert-success { background: rgba(0,230,195,0.1); border-color: rgba(0,230,195,0.3); color: #8af0df; }
.alert-error { background: rgba(255,45,85,0.1); border-color: rgba(255,45,85,0.3); color: #ff9eb0; }

/* Toggle (digital/physical) */
.toggle-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.toggle-group label { cursor: pointer; }
.toggle-group .toggle-box { border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 16px; text-align: center; transition: border-color .15s; }
.toggle-group input { position: absolute; opacity: 0; }
.toggle-group input:checked + .toggle-box { border-color: var(--accent); background: rgba(255,45,85,0.06); }
.toggle-group .toggle-box strong { display: block; }
.toggle-group .toggle-box small { color: var(--text-dim); }

/* Page hero (interior pages) */
.page-hero { padding: 64px 0 40px; position: relative; }
.page-hero .eyebrow { }
.breadcrumbs { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--text); }

/* Detail layout */
.detail-grid { display: grid; gap: 34px; }
@media (min-width: 900px) { .detail-grid { grid-template-columns: 1fr 1fr; } }
/* Detail image: show at its natural ratio (no letterbox / no crop) */
.detail-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: linear-gradient(160deg,#1a1f2b,#0b0e14); display:flex; align-items:center; justify-content:center; min-height: 220px; align-self: start; }
.detail-media img { width: 100%; height: auto; display: block; object-fit: contain; }
.size-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.size-list .row { display: flex; justify-content: space-between; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-elevated); }

.utility-mt { margin-top: 28px; }
.center { text-align: center; }
.muted { color: var(--text-muted); }

/* ---------- Mobile: smaller cards / tighter layout ---------- */
@media (max-width: 600px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card-body { padding: 11px 12px 14px; }
    .card-body h3 { font-size: 0.92rem; }
    .card-body p { font-size: 0.8rem; }
    .card-price { font-size: 0.92rem; margin-top: 8px; }
    .badge-pill { font-size: 0.58rem; padding: 3px 7px; top: 8px; left: 8px; }
    .opt-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .opt .opt-body { padding: 10px 11px; }
    .opt .opt-body strong { font-size: 0.85rem; }
    .section { padding: 48px 0; }
    .section-head { margin-bottom: 32px; }
    .flow-card { padding: 22px 18px; }
    .preview-actions { gap: 6px; }
    .btn-mini { min-width: 0; font-size: 0.76rem; padding: 7px 9px; }
}

@media (max-width: 380px) {
    .card-body h3 { font-size: 0.85rem; }
    .card-price { font-size: 0.85rem; }
}

/* ---------- Batch preview cards ---------- */
.preview-media { position: relative; }
.preview-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 24px; text-align: center; color: var(--text-dim); }
.preview-loading .spinner { width: 46px; height: 46px; border-width: 3px; margin: 0; }
.preview-state { font-size: 0.85rem; }
.preview-result { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.preview-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.btn-mini {
    flex: 1 1 auto; min-width: 92px; text-align: center; cursor: pointer;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-strong);
    color: var(--text); border-radius: 999px; padding: 8px 12px; font-size: 0.82rem; font-weight: 600;
    transition: background .15s, border-color .15s;
}
.btn-mini:hover { background: rgba(255,255,255,0.1); }
.btn-mini.danger { color: #ff9eb0; border-color: rgba(255,45,85,0.35); }
.btn-mini.danger:hover { background: rgba(255,45,85,0.12); }

/* ---------- Payment methods ---------- */
.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-method { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .15s, background .15s; }
.pay-method input { margin-top: 3px; }
.pay-method:has(input:checked) { border-color: var(--accent); background: rgba(255,45,85,0.06); }
.pay-method .pay-box strong { display: block; }
.pay-method .pay-box small { color: var(--text-dim); }
.pay-method.is-disabled { opacity: 0.55; cursor: not-allowed; }
.soon-tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em; background: var(--accent-3); color: #fff; padding: 2px 7px; border-radius: 999px; vertical-align: middle; }

.plate-toggle { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: var(--radius-sm); cursor: pointer; font-size: 0.95rem; transition: border-color .15s, background .15s; }
.plate-toggle input { width: auto; }
.plate-toggle:has(input:checked) { border-color: var(--accent-2); background: rgba(0,230,195,0.06); }

.delivery-note { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.92rem; color: var(--text-muted); }
.delivery-note strong { color: var(--text); }

/* ---------- Combined cart ---------- */
.include-toggle { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; cursor: pointer; }
.include-toggle input { width: auto; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; background: var(--bg-elevated); flex-shrink: 0; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bank transfer box ---------- */
.bank-box { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.bank-box h3 { margin-bottom: 6px; }

/* Lightbox / zoom */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(3,4,7,0.92); display: flex; align-items: center; justify-content: center; padding: 30px; backdrop-filter: blur(6px); }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid var(--border-strong); color: var(--text); font-size: 1.1rem; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,0.16); }

/* ---------- Header right cluster: language + account ---------- */
.nav-right { display: none; align-items: center; gap: 14px; }
@media (min-width: 1040px) { .nav-right { display: flex; } }
.lang-switch { font-size: 0.85rem; font-weight: 600; color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }
.lang-switch a { color: var(--text-dim); }
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { color: var(--accent-2); }
.lang-switch .sep { opacity: 0.4; }
.nav-account { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.nav-account:hover { color: var(--text); }
.linklike { background: none; border: none; color: var(--text-muted); font: inherit; cursor: pointer; padding: 12px; text-align: left; }
.linklike:hover { color: var(--text); }

/* ---------- Account / auth pages ---------- */
.auth-card { max-width: 440px; margin: 60px auto; }
.account-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.account-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.account-tile .account-media { aspect-ratio: 4/5; background: linear-gradient(160deg,#1a1f2b,#0b0e14); display:flex; align-items:center; justify-content:center; }
.account-tile .account-media img { width: 100%; height: 100%; object-fit: cover; }
.account-tile .account-body { padding: 14px 16px; }
.status-chip { display:inline-block; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; padding:4px 10px; border-radius:999px; background:rgba(255,255,255,0.06); border:1px solid var(--border); }

/* ---------- Hide Google Translate chrome & hover highlight ---------- */
.goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-te-gadget { font-size: 0 !important; }
/* the grey/blue box that appears on hover over translated text */
.goog-text-highlight {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
/* the floating tooltip / bubble */
#goog-gt-tt, .goog-te-balloon-frame, .jfk-bubble, .goog-tooltip,
.goog-tooltip:hover { display: none !important; }
.goog-te-spinner-pos { display: none !important; }
