:root {
  /* askiign brand — dark theme */
  --teal: #40D0B8;
  --teal-soft: #6fe0cd;
  --teal-dark: #34b7a1;
  --gold: #C8B870;
  --gold-dark: #b7a55c;
  --red: #ff6b6b;
  /* aliases kept so existing rules map to the new palette */
  --blue: #40D0B8;
  --blue-dark: #0d1f1c;
  --sky: #6fe0cd;
  --green: #40D0B8;
  /* surfaces & text on black */
  --bg: #000000;
  --surface: #141414;
  --surface-2: #1f1f1f;
  --ink: #f4f3ef;
  --muted: #9a9a93;
  --line: #2b2b2b;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  --on-accent: #06140f; /* dark text on teal/gold fills */
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 999px;
  border: none; cursor: pointer; transition: transform .08s ease, box-shadow .2s, background .2s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: var(--on-accent); }
.btn-primary:hover { background: var(--teal-soft); box-shadow: 0 6px 20px rgba(64,208,184,.30); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-disabled { background: #2a2a2a; color: #6b6b66; cursor: not-allowed; }
.btn-link { background: none; border: none; color: var(--teal); font-weight: 600; cursor: pointer; font-size: 13px; }

/* ── header ── */
.site-header { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo img { display: block; }
.main-nav { display: flex; align-items: center; gap: 24px; flex: 1; }
.main-nav > a { font-weight: 600; color: var(--teal); }
.nav-cats { position: relative; }
.nav-cats > span { font-weight: 600; color: var(--ink); cursor: default; }
.nav-dropdown { position: absolute; top: 100%; left: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); padding: 8px; min-width: 220px; display: none; flex-direction: column; }
.nav-cats:hover .nav-dropdown { display: flex; }
.nav-dropdown a { padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--ink); }
.nav-dropdown a:hover { background: var(--surface-2); color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { font-weight: 700; font-size: 13px; color: var(--teal); border: 1.5px solid var(--line);
  padding: 5px 10px; border-radius: 8px; }
.lang-switch:hover { border-color: var(--teal); }
.cart-link { position: relative; color: var(--teal); display: flex; }
.cart-badge { position: absolute; top: -8px; right: -10px; background: var(--gold); color: var(--on-accent);
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* ── hero ── */
.hero { background: radial-gradient(1200px 400px at 20% -10%, rgba(64,208,184,.12), transparent 60%), linear-gradient(135deg, #0c1a18 0%, #000 60%); color: #fff; border-bottom: 1px solid var(--line); }
.hero-inner { padding: 64px 20px; }
.hero-text { max-width: 600px; }
.hero-tag { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-size: 12px;
  font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.hero h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; }
.hero p { font-size: 18px; color: #d6d6d0; margin-bottom: 26px; }

/* ── catalog ── */
.catalog { display: grid; grid-template-columns: 220px 1fr; gap: 36px; padding: 44px 20px; align-items: start; }
.filters h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.filters ul { list-style: none; }
.filters li a { display: block; padding: 9px 12px; border-radius: 9px; color: var(--ink); font-size: 14.5px; font-weight: 500; }
.filters li a:hover { background: var(--surface-2); }
.filters li a.active { background: var(--teal); color: var(--on-accent); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ── product card ── */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .12s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #3a3a3a; }
.card-img { position: relative; aspect-ratio: 1/1; background: #fff; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.badge-out { background: rgba(0,0,0,.78); color: #fff; }
.badge-sale { background: var(--red); color: #1a0606; }
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); font-weight: 700; }
.card-name { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.card-price { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; gap: 8px; }
.price { font-size: 20px; font-weight: 800; color: var(--teal); }
.price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; }

/* ── product page ── */
.product-page { padding: 28px 20px 56px; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--teal); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.product-media { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.product-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-cat { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); font-weight: 700; }
.product-info h1 { font-size: 32px; line-height: 1.15; margin: 8px 0 14px; letter-spacing: -0.01em; }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.product-price .price { font-size: 30px; }
.product-short { color: var(--muted); margin-bottom: 24px; }
.add-form { display: flex; gap: 12px; align-items: center; }
.qty-input { width: 72px; padding: 11px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 15px; text-align: center; background: var(--surface-2); color: var(--ink); }
.qty-input:focus { outline: none; border-color: var(--teal); }
.stock-line { display: flex; align-items: center; gap: 7px; margin-top: 14px; font-size: 13px; font-weight: 600; }
.stock-line.in { color: var(--teal); }
.stock-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.product-section { margin-top: 44px; max-width: 820px; }
.product-section h2 { font-size: 20px; margin-bottom: 14px; color: var(--teal); }
.prose { white-space: pre-line; color: #cfcfc8; line-height: 1.7; }
.facts { width: 100%; border-collapse: collapse; border: 1px solid var(--line); margin-bottom: 18px; }
.facts caption { text-align: left; font-weight: 700; padding: 8px 0; color: var(--ink); }
.facts th { background: var(--surface-2); color: var(--teal); text-align: left; padding: 8px 12px; font-size: 13px; }
.facts td { padding: 8px 12px; border-top: 1px solid var(--line); font-size: 14px; }
.facts th:last-child, .facts td:last-child { text-align: right; }

/* ── cart ── */
.cart-page { padding: 36px 20px 60px; }
.cart-page h1 { font-size: 30px; margin-bottom: 24px; }
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { color: var(--muted); margin-bottom: 20px; font-size: 17px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.cart-row { display: grid; grid-template-columns: 72px 1fr auto auto auto; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-thumb img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; background: #fff; }
.cart-row-name { font-weight: 700; display: block; color: var(--ink); }
.cart-row-unit { font-size: 13px; color: var(--muted); }
.cart-qty-form { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.cart-row-total { font-weight: 800; color: var(--teal); }
.cart-remove button { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; }
.cart-remove button:hover { color: var(--red); }
.continue { display: inline-block; margin-top: 20px; color: var(--teal); font-weight: 600; }
.cart-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.cart-summary h2 { font-size: 17px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15px; }
.sum-row .free { color: var(--teal); }
.sum-total { border-top: 2px solid var(--line); margin-top: 6px; padding-top: 14px; font-size: 19px; font-weight: 800; color: var(--teal); }
.ship-notice { font-size: 12.5px; color: var(--red); padding: 4px 0 8px; }
.cart-summary form { margin-top: 16px; }
.secure { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* ── success ── */
.success-page { padding: 60px 20px; display: flex; justify-content: center; }
.success-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  padding: 48px 40px; max-width: 520px; width: 100%; text-align: center; }
.success-check { color: var(--teal); margin-bottom: 16px; }
.success-card h1 { font-size: 27px; margin-bottom: 8px; }
.success-sub { color: var(--muted); margin-bottom: 26px; }
.order-box { text-align: left; background: var(--surface-2); border-radius: 12px; padding: 18px; margin-bottom: 26px; }
.order-num { font-size: 14px; margin-bottom: 12px; }
.order-items { width: 100%; border-collapse: collapse; font-size: 14px; }
.order-items td { padding: 5px 0; }
.order-items td.r { text-align: right; }
.order-items tr.sub td { color: var(--muted); padding-top: 8px; }
.order-items tr.tot td { font-weight: 800; color: var(--teal); border-top: 1px solid var(--line); padding-top: 10px; font-size: 16px; }

/* ── footer ── */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-inner { padding: 30px 20px; display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer-inner p { color: var(--muted); font-size: 13px; }
.empty { color: var(--muted); }

/* ── responsive ── */
@media (max-width: 900px) {
  .catalog { grid-template-columns: 1fr; }
  .filters ul { display: flex; flex-wrap: wrap; gap: 8px; }
  .filters li a { padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
@media (max-width: 540px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .header-inner { gap: 14px; }
  .main-nav { gap: 14px; }
  .cart-row { grid-template-columns: 56px 1fr auto; grid-template-areas: "img info total" "img qty remove"; }
  .cart-thumb { grid-area: img; } .cart-row-info { grid-area: info; }
  .cart-qty-form { grid-area: qty; align-items: start; } .cart-row-total { grid-area: total; text-align: right; }
  .cart-remove { grid-area: remove; text-align: right; }
}

/* ════════════════════ ADMIN ════════════════════ */
body.admin { background: var(--bg); }
.admin-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-side { background: var(--surface); color: var(--ink); padding: 22px 16px; display: flex; flex-direction: column; gap: 6px; position: sticky; top: 0; height: 100vh; border-right: 1px solid var(--line); }
.admin-brand { background: transparent; border-radius: 10px; padding: 4px 6px; margin-bottom: 18px; display: flex; justify-content: center; }
.admin-side nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-side nav a { color: var(--muted); padding: 10px 13px; border-radius: 9px; font-weight: 600; font-size: 14.5px; }
.admin-side nav a:hover { background: var(--surface-2); color: var(--ink); }
.admin-side nav a.on { background: var(--teal); color: var(--on-accent); }
.admin-logout button { width: 100%; background: var(--surface-2); color: var(--ink); border: none; padding: 10px; border-radius: 9px; cursor: pointer; font-weight: 600; font-size: 13px; }
.admin-logout button:hover { background: #2a2a2a; }
.admin-main { padding: 28px 32px; max-width: 1200px; }
.admin-title { font-size: 26px; margin-bottom: 22px; color: var(--ink); }
.admin-title .st { font-size: 13px; vertical-align: middle; }
.back { color: var(--teal); font-weight: 600; font-size: 14px; display: inline-block; margin-bottom: 8px; }

.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.kpi-accent { background: linear-gradient(135deg, #0f2a26, #07130f); border: 1px solid var(--teal-dark); }
.kpi-accent .kpi-label, .kpi-accent .kpi-sub { color: #a7d8cf; }
.kpi-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }
.kpi-value { display: block; font-size: 30px; font-weight: 800; color: var(--teal); margin: 6px 0 4px; }
.kpi-accent .kpi-value { color: var(--teal); }
.kpi-sub { display: block; font-size: 12.5px; color: var(--muted); }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 22px; }
.panel h2 { font-size: 15px; color: var(--ink); margin-bottom: 14px; }
.admin-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.admin-cols .panel { margin-bottom: 0; }

.chart { display: flex; align-items: flex-end; gap: 3px; height: 180px; padding-top: 10px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 4px; }
.bar { width: 70%; min-height: 1px; background: linear-gradient(var(--teal-soft), var(--teal-dark)); border-radius: 3px 3px 0 0; transition: opacity .15s; }
.bar-col:hover .bar { opacity: .75; }
.bar-x { font-size: 8.5px; color: var(--muted); transform: rotate(-60deg); white-space: nowrap; height: 26px; }

.atable { width: 100%; border-collapse: collapse; font-size: 14px; }
.atable th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); padding: 6px 10px; border-bottom: 2px solid var(--line); }
.atable td { padding: 9px 10px; border-bottom: 1px solid var(--line); }
.atable td.r, .atable th.r { text-align: right; }
.atable a { color: var(--teal); font-weight: 600; }
.atable tr.sub td { color: var(--muted); border: none; padding-top: 8px; }
.atable tr.tot td { font-weight: 800; color: var(--teal); border-top: 2px solid var(--line); }
.atable tbody tr.clickable-row:hover td { background: var(--surface-2); }

.st { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; text-transform: capitalize; }
.st-paid { background: rgba(64,208,184,.16); color: var(--teal); }
.st-pending { background: rgba(200,184,112,.16); color: var(--gold); }
.st-fulfilled { background: rgba(111,224,205,.16); color: var(--teal-soft); }
.st-cancelled { background: rgba(255,107,107,.16); color: var(--red); }

.filters-row { display: flex; gap: 8px; margin-bottom: 18px; }
.filters-row a { padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.filters-row a.on { background: var(--teal); color: var(--on-accent); border-color: var(--teal); }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 14px; }
.kv dt { color: var(--muted); font-weight: 600; }
.addr { background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px; font-size: 12.5px; white-space: pre-wrap; word-break: break-word; font-family: ui-monospace, monospace; color: var(--ink); }
.tiny { font-size: 11px; } .muted { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: rgba(255,107,107,.16); color: var(--red); font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }

.admin-login-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: radial-gradient(900px 400px at 50% -10%, rgba(64,208,184,.12), transparent 60%), #000; }
.login-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 38px 34px; width: 100%; max-width: 360px; box-shadow: 0 20px 60px rgba(0,0,0,.6); display: flex; flex-direction: column; gap: 14px; text-align: center; }
.login-logo { align-self: center; margin-bottom: 4px; }
.login-card h1 { font-size: 19px; color: var(--ink); }
.login-card input { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 15px; background: var(--surface-2); color: var(--ink); }
.login-card input:focus { outline: none; border-color: var(--teal); }
.login-error { background: rgba(255,107,107,.16); color: var(--red); font-size: 13px; padding: 8px; border-radius: 8px; }

@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; border-right: none; border-bottom: 1px solid var(--line); }
  .admin-side nav { flex-direction: row; flex-wrap: wrap; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .admin-cols { grid-template-columns: 1fr; }
}
.sync-panel { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.sync-ok { color: var(--teal); font-weight: 700; margin-left: 8px; }

/* ── embedded checkout ── */
.checkout-page { padding: 24px 20px 60px; }
.checkout-h1 { font-size: 28px; margin: 6px 0 24px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 22px; }
.co-block { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.co-block h2 { font-size: 15px; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--ink); }
.co-step { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: var(--on-accent); font-size: 13px; font-weight: 800; }
.pay-error { color: var(--red); font-size: 14px; font-weight: 600; min-height: 0; }
.pay-error:not(:empty) { background: rgba(255,107,107,.14); padding: 10px 14px; border-radius: 10px; }
#pay-btn { position: relative; }
.spinner { display: inline-block; width: 18px; height: 18px; border: 2.5px solid rgba(6,20,15,.35); border-top-color: var(--on-accent); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

.co-summary { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); position: sticky; top: 88px; }
.co-summary h2 { font-size: 16px; margin-bottom: 16px; }
.co-items { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.co-items li { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
.co-thumb { position: relative; }
.co-thumb img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; background: #fff; }
.co-qty { position: absolute; top: -8px; right: -8px; background: var(--teal); color: var(--on-accent); font-size: 11px; font-weight: 700; min-width: 20px; height: 20px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.co-name { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.co-line { font-size: 13.5px; font-weight: 700; color: var(--teal); }
.co-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; border-top: 1px solid var(--line); }
.co-row .free { color: var(--teal); }
.co-total { font-size: 19px; font-weight: 800; color: var(--teal); border-top: 2px solid var(--line); margin-top: 4px; padding-top: 12px; }

@media (max-width: 880px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
}
.admin-lang { color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 7px 12px; text-align: center; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.admin-lang:hover { background: var(--surface-2); color: var(--ink); }
.login-lang { color: var(--muted); font-size: 13px; font-weight: 600; margin-top: 4px; }
.login-lang:hover { color: var(--teal); }

/* ── fulfillment ── */
.timeline { list-style: none; display: flex; gap: 0; margin: 4px 0 20px; }
.timeline li { flex: 1; position: relative; padding-left: 22px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.timeline li em { display: block; font-weight: 500; font-size: 12px; color: var(--muted); font-style: normal; margin-top: 2px; }
.tl-dot { position: absolute; left: 0; top: 2px; width: 13px; height: 13px; border-radius: 50%; background: #333; border: 2px solid var(--surface); box-shadow: 0 0 0 1px #333; }
.timeline li.done { color: var(--teal); } .timeline li.done .tl-dot { background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.timeline li.cancel { color: var(--red); } .timeline li.cancel .tl-dot { background: var(--red); box-shadow: 0 0 0 1px var(--red); }
.fulfill-form .ff-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.fulfill-form label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 600; color: var(--muted); }
.fulfill-form input { padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14px; background: var(--surface-2); color: var(--ink); }
.fulfill-form input:focus { outline: none; border-color: var(--teal); }
.ff-actions { display: flex; gap: 12px; align-items: center; }
.btn-danger { background: none; border: 1.5px solid rgba(255,107,107,.5); color: var(--red); padding: 11px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer; }
.btn-danger:hover { background: rgba(255,107,107,.12); }
.ship-info code { background: var(--surface-2); padding: 2px 8px; border-radius: 6px; font-size: 13px; color: var(--teal); }
.ship-info form { margin-top: 10px; }

/* ── native shipping fields ── */
.addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.addr-grid label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 600; color: var(--muted); }
.addr-grid label.full { grid-column: 1 / -1; }
.addr-grid input, .addr-grid select { padding: 11px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14.5px; color: var(--ink); background: var(--surface-2); font-family: inherit; }
.addr-grid input:focus, .addr-grid select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(64,208,184,.15); }

/* ── phone field with +1 prefix ── */
.phone-group { display: flex; align-items: stretch; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface-2); }
.phone-group:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(64,208,184,.15); }
.phone-cc { display: flex; align-items: center; gap: 4px; padding: 0 12px; background: #2a2a2a; border-right: 1.5px solid var(--line); font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.phone-group input { border: none !important; border-radius: 0 !important; box-shadow: none !important; flex: 1; background: var(--surface-2); color: var(--ink); }
.phone-group input:focus { outline: none; box-shadow: none !important; }

/* ── admin product edit ── */
.save-ok { background: rgba(64,208,184,.16); color: var(--teal); font-weight: 600; padding: 10px 16px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pf-grid label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; font-weight: 600; color: var(--muted); }
.pf-grid label.full { grid-column: 1 / -1; }
.pf-grid label.chk { flex-direction: row; align-items: center; gap: 8px; color: var(--ink); }
.pf-grid input, .pf-grid select, .pf-grid textarea { padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14px; font-family: inherit; color: var(--ink); background: var(--surface-2); }
.pf-grid input:focus, .pf-grid select:focus, .pf-grid textarea:focus { outline: none; border-color: var(--teal); }
.pf-actions { margin-top: 16px; }
.pf-preview { width: 100%; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 12px; background: #fff; }
.pf-danger { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 16px; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.clickable-row { cursor: pointer; }

/* ── branded error page ── */
.err-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.err-card { max-width: 460px; }
.err-code { font-size: 80px; font-weight: 800; color: var(--teal); line-height: 1; letter-spacing: -0.03em; }
.err-title { font-size: 24px; font-weight: 700; color: var(--ink); margin: 8px 0 10px; }
.err-msg { color: var(--muted); margin-bottom: 24px; }
.free-hint { font-size: 12.5px; color: var(--teal); font-weight: 600; padding: 4px 0 8px; }

/* ── landing (coming soon) ── */
.landing { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px;
  background: radial-gradient(1000px 500px at 50% -5%, rgba(64,208,184,.14), transparent 60%), radial-gradient(800px 400px at 50% 105%, rgba(200,184,112,.08), transparent 60%), #000; position: relative; }
.landing-lang { position: absolute; top: 22px; right: 26px; }
.landing-lang a { color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: 13px; font-weight: 700; }
.landing-lang a:hover { color: var(--teal); border-color: var(--teal); }
.landing-inner { max-width: 540px; display: flex; flex-direction: column; align-items: center; }
.landing-logo { width: min(360px, 78vw); height: auto; margin-bottom: 28px; }
.landing-tag { text-transform: uppercase; letter-spacing: .28em; font-size: 14px; font-weight: 800; color: var(--gold);
  border: 1px solid rgba(200,184,112,.4); border-radius: 999px; padding: 8px 20px; margin-bottom: 22px; }
.landing-sub { color: #cfcfc8; font-size: 17px; line-height: 1.6; margin-bottom: 30px; }
