@font-face { font-family: "Fraunces"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("../fonts/fraunces-variable.woff2") format("woff2"); }
@font-face { font-family: "Fraunces"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/fraunces-italic.woff2") format("woff2"); }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400 900; font-display: swap; src: url("../fonts/archivo-variable.woff2") format("woff2"); }
@font-face { font-family: "Plex Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/plexmono-400.woff2") format("woff2"); }
@font-face { font-family: "Plex Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/plexmono-500.woff2") format("woff2"); }

:root {
  --ink: #0a1930; --paper: #eef5ff; --paper-raised: #ffffff;
  --teal: #0a58ff; --teal-strong: #061c4d; --teal-soft: #e8f1ff; --teal-soft-2: #d6e8ff;
  --clay: #14e0c8; --clay-deep: #0aa896; --clay-soft: #e3fffb;
  --line: rgba(10,25,48,.08); --line-strong: rgba(10,25,48,.16);
  --shadow-card: 0 20px 50px rgba(10,50,120,.10), 0 4px 14px rgba(10,50,120,.06);
  --shadow-card-hover: 0 28px 64px rgba(10,50,120,.16), 0 8px 20px rgba(10,50,120,.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Plex Mono", Consolas, monospace;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex: 1; }
h1, h2, h3 { font-family: var(--font-body); font-weight: 800; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; width: 100%; box-sizing: border-box; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-deep); display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-weight: 600; }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--clay); display: block; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 14.5px; letter-spacing: .01em; padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap; font-family: var(--font-body); transition: transform .15s, background .15s, border-color .15s, box-shadow .15s; }
.btn:active { transform: scale(.97); }
.btn-solid { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 10px 24px rgba(10,88,255,.28); }
.btn-solid:hover { background: #0847d6; box-shadow: 0 14px 30px rgba(10,88,255,.36); }
.btn-clay { background: var(--clay); color: #052e29; border-color: var(--clay); box-shadow: 0 10px 24px rgba(20,224,200,.28); }
.btn-clay:hover { background: var(--clay-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(238,245,255,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; gap: 32px; padding: 16px 28px; max-width: 1160px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 30px; height: 30px; object-fit: contain; }
.brand-name { font-family: var(--font-body); font-weight: 900; font-size: 19px; letter-spacing: -.02em; text-transform: uppercase; }
.main-nav { display: flex; gap: 28px; flex: 1; }
.main-nav a { font-size: 14px; font-weight: 600; opacity: .7; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { opacity: 1; border-color: var(--clay); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--line-strong); border-radius: 999px; background: var(--paper-raised); cursor: pointer; }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; padding: 0 4px; border-radius: 50%; background: var(--clay); color: #052e29; font-family: var(--font-mono); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px var(--paper); }
.menu-toggle { display: none; background: var(--paper-raised); border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 9px 11px; cursor: pointer; }

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 65px 0 0 auto; height: calc(100vh - 65px); width: min(78vw,320px); background: var(--paper-raised); flex-direction: column; padding: 24px; gap: 4px; border-left: 1px solid var(--line); transform: translateX(105%); transition: transform .25s; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 16px; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: block; }
  .header-actions .btn-ghost.desktop-only { display: none; }
}
@media (min-width: 861px) { .menu-toggle { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(ellipse 80% 60% at 15% -10%, #123a9e 0%, transparent 55%), radial-gradient(ellipse 70% 60% at 100% 100%, #0aa896 0%, transparent 50%), linear-gradient(160deg, #061c4d 0%, #0a2d7a 55%, #082464 100%); color: #fff; }
.hero-slide { display: none; padding: 88px 0 44px; position: relative; z-index: 1; }
.hero-slide.active { display: block; }
.slide-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-slide .eyebrow { color: var(--clay); }
.hero-slide .eyebrow::before { background: var(--clay); }
.hero-slide h1 { font-size: clamp(36px,5vw,58px); line-height: 1.02; margin: 16px 0 22px; text-transform: uppercase; color: #fff; }
.hero-slide h1 em { font-style: italic; font-family: var(--font-display); font-weight: 500; text-transform: none; color: var(--clay); }
.hero-slide p.lede { font-size: 17.5px; opacity: .82; max-width: 46ch; margin: 0 0 32px; line-height: 1.6; }
.hero-figure { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-figure::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(20,224,200,.35), transparent 70%); filter: blur(6px); }
.hero-figure svg { width: 100%; max-width: 300px; height: auto; position: relative; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.slider-controls { display: flex; align-items: center; gap: 16px; padding: 0 28px 40px; max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.dots { display: flex; gap: 8px; }
.dot { width: 24px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.25); border: none; cursor: pointer; padding: 0; }
.dot.active { background: var(--clay); }
.slide-count { font-family: var(--font-mono); font-size: 12px; opacity: .6; color: #fff; }
@media (max-width: 820px) { .slide-grid { grid-template-columns: 1fr; gap: 30px; } .hero-figure { order: -1; } .hero-figure svg { max-width: 200px; } .hero-slide { padding: 52px 0 30px; } }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--teal-strong); color: #fff; }
.trust-row { display: grid; grid-template-columns: repeat(4,1fr); padding: 22px 28px; max-width: 1160px; margin: 0 auto; }
.trust-item { display: flex; flex-direction: column; gap: 3px; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.14); }
.trust-item:first-child { border-left: none; }
.trust-item .num { font-family: var(--font-mono); font-size: 11.5px; opacity: .6; color: var(--clay); letter-spacing: .04em; }
.trust-item .label { font-weight: 700; font-size: 14.5px; }
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr 1fr; row-gap: 18px; } .trust-item:nth-child(3) { border-left: none; } }

/* ---------- promotions ---------- */
.promo-section { padding: 56px 28px; max-width: 1160px; margin: 0 auto; }
.promo-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.promo-card { position: relative; overflow: hidden; border-radius: 28px; min-height: 250px; padding: 36px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-card); }
.promo-card.theme-blue { background: linear-gradient(135deg,#0a58ff,#062f9e); }
.promo-card.theme-aqua { background: linear-gradient(135deg,#0aa896,#0aeee0); }
.promo-card.theme-dark { background: linear-gradient(135deg,#061c4d,#0a2d7a); }
.promo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%); }
.promo-body { position: relative; max-width: 30rem; }
.promo-body .eyebrow { color: #fff; opacity: .85; }
.promo-body .eyebrow::before { background: #fff; }
.promo-body h2 { color: #fff; font-size: clamp(24px,3.2vw,34px); margin-bottom: 10px; text-transform: uppercase; }
.promo-body p { opacity: .88; margin: 0 0 18px; }
.promo-body .btn-clay { background: #fff; color: var(--teal-strong); border-color: #fff; box-shadow: none; }

/* ---------- products ---------- */
.products { background: var(--paper); padding: 96px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(30px,3.6vw,42px); text-transform: uppercase; }
.section-head p { max-width: 46ch; opacity: .7; margin: 12px 0 0; font-size: 15.5px; }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card { background: var(--paper-raised); border-radius: 28px; padding: 32px 28px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; border: 1px solid rgba(10,25,48,.04); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.product-figure { height: 220px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; border-radius: 20px; background: radial-gradient(circle at 50% 35%, #eaf5ff 0%, #dceeff 45%, #cde3ff 100%); overflow: hidden; }
.product-figure svg, .product-figure img { height: 190px; width: auto; object-fit: contain; }
.product-name { font-family: var(--font-body); font-size: 24px; font-weight: 900; margin-bottom: 4px; text-transform: uppercase; letter-spacing: -.01em; }
.product-tag { font-size: 14px; opacity: .62; margin-bottom: 16px; }
.product-spec { font-family: var(--font-mono); font-size: 12px; color: var(--teal); background: var(--teal-soft); display: inline-block; padding: 6px 12px; border-radius: 999px; margin-bottom: 18px; align-self: flex-start; font-weight: 600; }
.product-price { font-family: var(--font-mono); font-size: 28px; font-weight: 600; margin: 0 0 4px; }
.product-price sup { font-size: 13px; font-weight: 400; opacity: .55; }
.product-note { font-size: 13px; opacity: .6; margin-bottom: 22px; min-height: 36px; }
.product-card .btn { margin-top: auto; }
@media (max-width: 820px) { .product-grid { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.process-section { padding: 96px 0; }
.process-item { display: grid; grid-template-columns: 64px 1fr; gap: 26px; padding: 28px 28px; border-top: 1px solid var(--line); max-width: 1160px; margin: 0 auto; }
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--font-mono); font-size: 15px; color: var(--clay-deep); font-weight: 700; padding-top: 3px; }
.process-item h3 { font-size: 18px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 800; }
.process-item p { margin: 0; opacity: .68; font-size: 15px; max-width: 60ch; }

/* ---------- modern coverage section ---------- */
.coverage-section {
  background: linear-gradient(145deg, #051329 0%, #030a17 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.coverage-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20,224,200,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.modern-coverage-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.modern-coverage-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.coverage-checker-box {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.modern-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.modern-city-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px;
  transition: all .25s ease;
  cursor: default;
}
.modern-city-card:hover, .modern-city-card.highlight {
  background: rgba(20,224,200,0.08);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(20,224,200,0.15);
}
.hub-status-badge {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(20,224,200,0.15);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14e0c8;
  box-shadow: 0 0 8px #14e0c8;
  animation: pulseGlow 1.8s infinite;
}
@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #14e0c8; }
  100% { transform: scale(0.95); opacity: 0.8; }
}
.modern-map-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.radar-pulse {
  animation: radarWave 3s infinite linear;
  transform-origin: center;
}
@keyframes radarWave {
  0% { r: 6px; opacity: 0.8; }
  100% { r: 24px; opacity: 0; }
}
.map-connect-line {
  animation: dashFlow 20s infinite linear;
}
@keyframes dashFlow {
  to { stroke-dashoffset: -100; }
}
.coverage-features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  margin-top: 12px;
}
.cov-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.cov-feat .feat-icon {
  font-size: 22px;
}
@media (max-width: 860px) {
  .modern-coverage-grid { grid-template-columns: 1fr; }
  .coverage-features-strip { grid-template-columns: 1fr; }
}

/* ---------- testimonial ---------- */
.testimonial-section { background: linear-gradient(135deg, var(--teal-strong), #0a2d7a); color: #fff; padding: 96px 0; text-align: center; }
.testimonial-section blockquote { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(22px,2.8vw,30px); line-height: 1.45; margin: 0 auto 20px; max-width: 720px; color: #fff; }
.testimonial-section cite { font-style: normal; font-family: var(--font-mono); font-size: 12.5px; opacity: .65; color: var(--clay); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- cta / footer ---------- */
.cta-banner { background: var(--ink); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 60px 28px; max-width: 1160px; margin: 0 auto; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(26px,3.2vw,34px); max-width: 22ch; text-transform: uppercase; }
.cta-inner p { opacity: .68; margin: 12px 0 0; max-width: 44ch; font-size: 15px; }
.site-footer { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 52px 28px 40px; max-width: 1160px; margin: 0 auto; }
.footer-brand p { opacity: .6; font-size: 14px; max-width: 32ch; margin-top: 14px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; opacity: .5; margin: 0 0 16px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; text-decoration: none; opacity: .85; margin-bottom: 11px; }
.footer-col a:hover { opacity: 1; color: var(--clay); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 28px; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; opacity: .5; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }

/* ---------- forms (auth, checkout) ---------- */
.form-page { max-width: 420px; margin: 0 auto; padding: 72px 28px; }
.form-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 12px; font-family: var(--font-body); font-size: 14.5px; background: var(--paper); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.form-msg { font-size: 13px; padding: 11px 14px; border-radius: 12px; margin-bottom: 16px; font-weight: 500; }
.form-msg.error { background: #fde8e8; color: #b3261e; }
.form-msg.success { background: var(--teal-soft); color: var(--teal); }
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; margin-bottom: 16px; }

/* ---------- cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(6,15,30,.55); opacity: 0; visibility: hidden; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: absolute; right: 0; top: 0; height: 100%; width: 100%; max-width: 420px; background: var(--paper-raised); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s; }
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; opacity: .6; }
.cart-items { flex: 1; overflow-y: auto; padding: 22px 26px; display: flex; flex-direction: column; gap: 22px; }
.cart-item { display: flex; gap: 16px; }
.cart-item .thumb { width: 64px; height: 80px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-soft); border-radius: 14px; }
.cart-item .thumb svg { height: 60px; width: auto; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-top { display: flex; justify-content: space-between; gap: 8px; }
.cart-item-name { font-weight: 700; font-size: 15px; }
.cart-item-size { font-size: 12px; opacity: .6; }
.cart-remove { font-size: 12px; opacity: .5; background: none; border: none; cursor: pointer; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: 999px; width: fit-content; margin-top: 10px; }
.qty-control button { width: 28px; height: 28px; border: none; background: none; cursor: pointer; font-size: 14px; }
.qty-control span { width: 32px; text-align: center; font-family: var(--font-mono); font-size: 14px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.cart-price { font-family: var(--font-mono); font-size: 14px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; }
.cart-summary { border-top: 1px solid var(--line); padding: 22px 26px; display: flex; flex-direction: column; gap: 10px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; }
.summary-row.total { font-size: 17px; font-weight: 700; padding-top: 10px; border-top: 1px solid var(--line); }
.cart-btn-open { margin-top: 6px; }

/* ---------- checkout ---------- */
.checkout-grid { max-width: 1160px; margin: 0 auto; padding: 72px 28px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; }
.order-summary-list { border: 1px solid var(--line); border-radius: 20px; background: var(--paper-raised); overflow: hidden; box-shadow: var(--shadow-card); }
.order-summary-item { display: flex; gap: 16px; padding: 18px; border-bottom: 1px solid var(--line); }
.order-summary-item:last-child { border-bottom: none; }
.order-summary-item .thumb { width: 56px; height: 64px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--teal-soft); border-radius: 12px; }
.order-summary-item .thumb svg { height: 50px; }
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }

/* ---------- account / order confirmation ---------- */
.narrow-page { max-width: 640px; margin: 0 auto; padding: 88px 28px; text-align: center; }
.confirm-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--clay-soft); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; }
.receipt { text-align: left; border: 1px solid var(--line); border-radius: 20px; background: var(--paper-raised); margin-bottom: 32px; overflow: hidden; box-shadow: var(--shadow-card); }
.receipt-row { display: flex; justify-content: space-between; padding: 15px 22px; border-bottom: 1px solid var(--line); font-size: 14px; }
.receipt-row:last-child { border-bottom: none; font-weight: 700; padding: 17px 22px; background: var(--teal-soft); }
.order-history-card { border: 1px solid var(--line); border-radius: 20px; background: var(--paper-raised); padding: 22px; text-align: left; margin-bottom: 16px; box-shadow: var(--shadow-card); }
.status-pill { font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; padding: 5px 12px; border-radius: 999px; display: inline-block; font-weight: 700; }
.status-pending { background: #fff2d9; color: #9a6700; }
.status-confirmed, .status-delivered { background: var(--teal-soft); color: var(--teal); }
.status-cancelled { background: #fde8e8; color: #b3261e; }

/* ---------- admin ---------- */
.admin-body { background: var(--paper); min-height: 100vh; }
.admin-layout { display: flex; min-height: 100vh; background: var(--paper); }
.admin-sidebar { width: 250px; flex-shrink: 0; border-right: 1px solid var(--line); background: var(--paper-raised); display: flex; flex-direction: column; position: fixed; top: 0; bottom: 0; left: 0; z-index: 50; box-shadow: 2px 0 16px rgba(10,25,48,.04); }
.admin-brand { padding: 22px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.admin-brand img { width: 24px; height: 24px; object-fit: contain; }
.admin-brand .name { font-family: var(--font-body); font-weight: 800; font-size: 15px; text-transform: uppercase; }
.admin-brand .tag { font-size: 11px; opacity: .55; font-family: var(--font-mono); text-transform: uppercase; }
.admin-nav { flex: 1; padding: 18px 14px; overflow-y: auto; }
.admin-nav a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; font-weight: 600; opacity: .7; margin-bottom: 3px; transition: all .15s; }
.admin-nav a:hover { opacity: 1; background: var(--teal-soft); }
.admin-nav a.active { opacity: 1; background: var(--teal); color: #fff; font-weight: 700; box-shadow: 0 4px 12px rgba(10,88,255,0.25); }
.admin-nav .nav-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; color: var(--teal); margin: 16px 0 6px; padding: 0 14px; opacity: .95; }
.admin-foot { padding: 18px 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.admin-foot form { width: 100%; }
.admin-main { flex: 1; min-width: 0; margin-left: 250px; padding: 40px 48px 60px; max-width: 1280px; width: calc(100% - 250px); box-sizing: border-box; }
.admin-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 40px; }
.stat-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow-card); }
.stat-card .label { font-size: 13px; opacity: .6; margin-bottom: 6px; }
.stat-card .value { font-family: var(--font-mono); font-size: 25px; font-weight: 600; }
.stat-card .value.accent { color: #d17a00; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
.shortcut-card { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 12px; text-decoration: none; transition: all .15s ease; box-sizing: border-box; }
.shortcut-card:hover { background: #ffffff; border-color: var(--teal); box-shadow: 0 4px 12px rgba(10,88,255,0.08); transform: translateY(-2px); }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
table.admin-table th { text-align: left; padding: 12px 18px; font-size: 12px; text-transform: uppercase; opacity: .6; font-weight: 700; border-bottom: 1px solid var(--line); }
table.admin-table td { padding: 13px 18px; border-top: 1px solid var(--line); }
table.admin-table tr:hover td { background: var(--teal-soft); }
.admin-list-card { display: block; border: 1px solid var(--line); border-radius: 18px; padding: 18px; margin-bottom: 12px; background: var(--paper-raised); box-shadow: var(--shadow-card); transition: transform .15s; }
.admin-list-card:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.admin-form { max-width: 640px; }
.admin-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tag-pill { font-size: 11px; font-family: var(--font-mono); text-transform: uppercase; padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.tag-active { background: var(--teal-soft); color: var(--teal); }
.tag-hidden { background: var(--line); opacity: .7; }
.low-stock-banner { background: #fff2d9; border: 1px solid #f5d896; border-radius: 18px; padding: 18px; margin-bottom: 32px; font-size: 14px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.tabular-nums { font-variant-numeric: tabular-nums; }
