/* ============================================================
   NeonVerse — Design System
   Dark, modern, neon-glow aesthetic. Pure CSS, no assets.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg-0: #05050c;
  --bg-1: #0a0a16;
  --bg-2: #10101f;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eef0ff;
  --text-dim: #9aa0be;
  --text-faint: #6a7093;
  --pink: #ff2d95;
  --pink-soft: rgba(255, 45, 149, 0.14);
  --cyan: #00e5ff;
  --cyan-soft: rgba(0, 229, 255, 0.12);
  --purple: #a855f7;
  --green: #39ff14;
  --amber: #ffb347;
  --danger: #ff5c5c;
  --grad: linear-gradient(90deg, var(--pink), var(--purple) 55%, var(--cyan));
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --font-ui: "Outfit", system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--pink); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: #23233c; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #32325a; }

/* Ambient background glow orbs */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 8% -5%, rgba(255, 45, 149, 0.09), transparent 65%),
    radial-gradient(700px 500px at 95% 10%, rgba(0, 229, 255, 0.07), transparent 65%),
    radial-gradient(800px 600px at 50% 110%, rgba(168, 85, 247, 0.08), transparent 65%);
  pointer-events: none;
}

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: 84px 0; }
.section-tight { padding: 48px 0; }
main { min-height: calc(100vh - var(--nav-h)); padding-top: var(--nav-h); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--cyan); }
.section-head.center .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--cyan); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(38px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
.lead { color: var(--text-dim); font-size: clamp(15px, 1.6vw, 18px); margin-top: 14px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.muted { color: var(--text-dim); }
.small { font-size: 13px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.flex { display: flex; gap: 16px; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wrap { flex-wrap: wrap; }
.stack { display: flex; flex-direction: column; gap: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s;
  white-space: nowrap; user-select: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(90deg, var(--pink), #c026d3);
  color: #fff;
  box-shadow: 0 0 0 rgba(255, 45, 149, 0), 0 10px 30px rgba(255, 45, 149, 0.25);
}
.btn-primary:hover { box-shadow: 0 0 24px rgba(255, 45, 149, 0.55), 0 10px 34px rgba(255, 45, 149, 0.3); transform: translateY(-2px); }
.btn-cyan {
  background: transparent; color: var(--cyan); border-color: rgba(0, 229, 255, 0.5);
  box-shadow: inset 0 0 18px rgba(0, 229, 255, 0.08);
}
.btn-cyan:hover { background: rgba(0, 229, 255, 0.1); box-shadow: 0 0 22px rgba(0, 229, 255, 0.35), inset 0 0 18px rgba(0, 229, 255, 0.12); transform: translateY(-2px); }
.btn-ghost { background: var(--panel-2); border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }
.btn-wa { background: #10b981; color: #04120b; }
.btn-wa:hover { box-shadow: 0 0 22px rgba(16, 185, 129, 0.5); transform: translateY(-2px); }
.btn-danger-ghost { background: transparent; border-color: rgba(255, 92, 92, 0.4); color: var(--danger); }
.btn-danger-ghost:hover { background: rgba(255, 92, 92, 0.1); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--line);
  font-size: 13.5px; font-weight: 500; color: var(--text-dim);
  cursor: pointer; transition: all 0.2s ease; user-select: none;
}
.chip:hover { border-color: var(--line-strong); color: var(--text); }
.chip.active { background: var(--pink-soft); border-color: var(--pink); color: #ff8fc4; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-pink { background: var(--pink-soft); color: #ff7cbc; border: 1px solid rgba(255, 45, 149, 0.35); }
.badge-cyan { background: var(--cyan-soft); color: var(--cyan); border: 1px solid rgba(0, 229, 255, 0.35); }
.badge-green { background: rgba(57, 255, 20, 0.1); color: #7dff5e; border: 1px solid rgba(57, 255, 20, 0.3); }
.badge-amber { background: rgba(255, 179, 71, 0.12); color: var(--amber); border: 1px solid rgba(255, 179, 71, 0.35); }

/* ---------- Cards / panels ---------- */
.card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.glass { background: rgba(13, 13, 26, 0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.divider { height: 1px; background: var(--line); border: none; margin: 20px 0; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.02em; }
.field .req { color: var(--pink); }
.input, .select, .textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text); font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.input.invalid, .textarea.invalid, .select.invalid { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.15); }
.field .error-msg { color: var(--danger); font-size: 12.5px; display: none; }
.field.has-error .error-msg { display: block; }
.textarea { resize: vertical; min-height: 110px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa0be' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.select option { background: var(--bg-2); color: var(--text); }

/* Radio-card selectors (sizes, backboards, delivery...) */
.option-grid { display: grid; gap: 12px; }
.option-card {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  cursor: pointer; transition: all 0.2s ease; text-align: left;
}
.option-card:hover { border-color: var(--line-strong); }
.option-card.active { border-color: var(--pink); background: var(--pink-soft); box-shadow: 0 0 18px rgba(255, 45, 149, 0.18); }
.option-card .oc-title { font-weight: 600; font-size: 14.5px; display: flex; justify-content: space-between; gap: 10px; }
.option-card .oc-sub { font-size: 12.5px; color: var(--text-dim); }
.option-card .oc-price { color: var(--cyan); font-weight: 600; font-size: 13px; white-space: nowrap; }
.option-card.active .oc-title { color: #ffd7ea; }

/* Color swatches */
.swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch {
  --c: #fff;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--c); border: 2px solid rgba(255, 255, 255, 0.18);
  cursor: pointer; position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.swatch:hover { transform: scale(1.14); box-shadow: 0 0 14px var(--c); }
.swatch.active { box-shadow: 0 0 4px #fff, 0 0 18px var(--c), 0 0 34px var(--c); transform: scale(1.14); border-color: #fff; }
.swatch .tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 3px 9px; font-size: 11px; white-space: nowrap; color: var(--text-dim);
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
}
.swatch:hover .tip { opacity: 1; }

/* Toggle switch */
.switch { position: relative; width: 48px; height: 26px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid var(--line);
  transition: background 0.2s; cursor: pointer;
}
.switch .track::after {
  content: ""; position: absolute; top: 50%; left: 3px; transform: translateY(-50%);
  width: 19px; height: 19px; border-radius: 50%; background: #fff; transition: left 0.2s ease;
}
.switch input:checked + .track { background: var(--pink); box-shadow: 0 0 14px rgba(255, 45, 149, 0.5); }
.switch input:checked + .track::after { left: 24px; }

/* Checkbox pills for add-ons */
.addon-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line);
  cursor: pointer; transition: all 0.2s;
}
.addon-row:hover { border-color: var(--line-strong); }
.addon-row.active { border-color: var(--cyan); background: var(--cyan-soft); }
.addon-row .a-name { font-weight: 600; font-size: 14px; }
.addon-row .a-desc { font-size: 12px; color: var(--text-dim); }
.addon-row .a-price { color: var(--cyan); font-weight: 600; font-size: 13.5px; white-space: nowrap; }

/* ---------- Neon rendering ---------- */
.neon-stage {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: 1px solid var(--line);
  min-height: 220px; padding: 30px; text-align: center;
}
.neon-stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}
.neon-stage > * { position: relative; z-index: 1; }

.bg-brick {
  background-color: #191114;
  background-image:
    linear-gradient(335deg, rgba(0, 0, 0, 0.38) 23px, transparent 23px),
    linear-gradient(155deg, rgba(0, 0, 0, 0.38) 23px, transparent 23px),
    linear-gradient(335deg, rgba(0, 0, 0, 0.38) 23px, transparent 23px),
    linear-gradient(155deg, rgba(0, 0, 0, 0.38) 23px, transparent 23px);
  background-size: 58px 58px;
  background-position: 0 2px, 4px 35px, 29px 31px, 34px 6px;
}
.bg-dark {
  background: radial-gradient(ellipse at 50% 30%, #1a1a2e 0%, #0d0d1a 70%);
}
.bg-plant {
  background-color: #0d150e;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(34, 84, 42, 0.5) 0 8%, transparent 12%),
    radial-gradient(circle at 70% 20%, rgba(30, 74, 38, 0.55) 0 10%, transparent 15%),
    radial-gradient(circle at 45% 70%, rgba(38, 92, 46, 0.45) 0 9%, transparent 14%),
    radial-gradient(circle at 85% 65%, rgba(26, 66, 33, 0.55) 0 11%, transparent 16%),
    radial-gradient(circle at 10% 80%, rgba(32, 80, 40, 0.5) 0 10%, transparent 15%),
    radial-gradient(circle at 60% 45%, rgba(24, 60, 30, 0.6) 0 12%, transparent 18%);
}

/* Neon text — color + shadow set inline by JS via NEON.renderSign */
.neon-text {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.25;
  white-space: pre-wrap;
  word-break: break-word;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}
.neon-text.no-glow { text-shadow: none !important; opacity: 0.85; }
.neon-flicker { animation: neonFlicker 6s infinite; }
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.6; } 4% { opacity: 1; }
  38% { opacity: 1; } 39% { opacity: 0.75; } 40% { opacity: 1; }
  72% { opacity: 1; } 73% { opacity: 0.55; } 74.5% { opacity: 1; }
}

/* ---------- Product cards ---------- */
.product-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.product-card .neon-stage { border: none; border-radius: 0; min-height: 200px; }
.product-card .neon-stage .neon-text { font-size: clamp(22px, 2.6vw, 32px); }
.product-card .pc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .pc-cat { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.product-card .pc-name { font-size: 17px; font-weight: 700; }
.product-card .pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.price { font-weight: 700; font-size: 17px; color: var(--cyan); }
.price .from { font-size: 12px; color: var(--text-faint); font-weight: 500; margin-right: 4px; }

/* ---------- Qty stepper ---------- */
.qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.qty button {
  width: 38px; height: 38px; display: grid; place-items: center;
  font-size: 18px; color: var(--text-dim); transition: all 0.15s;
}
.qty button:hover { background: var(--pink-soft); color: #ff8fc4; }
.qty .qty-val { min-width: 42px; text-align: center; font-weight: 600; font-size: 15px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; letter-spacing: 0.01em; }
.logo .logo-mark {
  font-family: "Pacifico", cursive; font-weight: 400; font-size: 24px; color: #ff6ec7;
  text-shadow: 0 0 6px rgba(255, 45, 149, 0.9), 0 0 18px rgba(255, 45, 149, 0.7), 0 0 36px rgba(255, 45, 149, 0.5);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  color: var(--text-dim); transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--panel-2); }
.nav-links a.active { color: #ff8fc4; background: var(--pink-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line);
  transition: all 0.2s; font-size: 18px;
}
.cart-btn:hover { border-color: var(--pink); box-shadow: 0 0 16px rgba(255, 45, 149, 0.35); }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--pink); color: #fff;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
  box-shadow: 0 0 10px rgba(255, 45, 149, 0.7);
  transition: transform 0.2s;
}
.cart-count.pop { animation: pop 0.35s ease; }
@keyframes pop { 40% { transform: scale(1.45); } }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--line); place-items: center; font-size: 18px; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  border-bottom: 1px solid var(--line); padding: 12px 4%;
  flex-direction: column; gap: 4px;
}
.mobile-menu a { padding: 13px 16px; border-radius: var(--radius-sm); color: var(--text-dim); font-weight: 500; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--pink-soft); color: #ff8fc4; }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 80px; background: rgba(8, 8, 18, 0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding: 60px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-faint); font-size: 14.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  color: var(--text-faint); font-size: 13px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--panel-2); border: 1px solid var(--line); font-size: 15px;
  transition: all 0.2s;
}
.social-row a:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 14px rgba(0, 229, 255, 0.3); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero .neon-stage { min-height: 380px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .hero .neon-stage { min-height: 280px; } }

/* ---------- Steps (how it works / checkout progress) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step-card { position: relative; padding: 28px 24px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.step-card::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 34px; font-weight: 800; margin-bottom: 12px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-dim); }

.progress-steps { display: flex; align-items: center; gap: 0; margin-bottom: 40px; }
.p-step { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--text-faint); }
.p-step .p-dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--panel); font-size: 12.5px;
}
.p-step.done .p-dot, .p-step.current .p-dot { border-color: var(--pink); color: #ff8fc4; box-shadow: 0 0 12px rgba(255, 45, 149, 0.4); }
.p-step.done, .p-step.current { color: var(--text); }
.p-line { flex: 1; height: 1px; background: var(--line); margin: 0 14px; min-width: 24px; }
.p-line.done { background: var(--pink); box-shadow: 0 0 8px rgba(255, 45, 149, 0.5); }
@media (max-width: 640px) { .p-step span.p-label { display: none; } }

/* ---------- Testimonials ---------- */
.stars { color: var(--amber); letter-spacing: 3px; font-size: 14px; }
.testimonial { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.testimonial p { color: var(--text-dim); font-size: 14.5px; flex: 1; }
.testimonial .t-who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  flex: 0 0 auto;
}
.t-who .t-name { font-weight: 600; font-size: 14.5px; }
.t-who .t-loc { font-size: 12.5px; color: var(--text-faint); }

/* ---------- FAQ accordion ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); overflow: hidden; }
.faq-item + .faq-item { margin-top: 12px; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 600; font-size: 15px; text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: #ff8fc4; }
.faq-q .faq-icon { transition: transform 0.25s ease; color: var(--pink); font-size: 18px; flex: 0 0 auto; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 22px 18px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- Toast ---------- */
#toast-root { position: fixed; bottom: 24px; right: 24px; z-index: 300; display: flex; flex-direction: column; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); font-size: 14.5px; font-weight: 500;
  animation: toastIn 0.3s ease;
  max-width: 340px;
}
.toast.out { animation: toastOut 0.3s ease forwards; }
.toast-success { border-color: rgba(57, 255, 20, 0.4); }
.toast-success .t-icon { color: var(--green); }
.toast-error { border-color: rgba(255, 92, 92, 0.5); }
.toast-error .t-icon { color: var(--danger); }
.toast-info .t-icon { color: var(--cyan); }
@keyframes toastIn { from { transform: translateX(40px); opacity: 0; } }
@keyframes toastOut { to { transform: translateX(40px); opacity: 0; } }

/* ---------- Summary / order tables ---------- */
.summary-card { position: sticky; top: calc(var(--nav-h) + 24px); }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 14.5px; color: var(--text-dim); }
.sum-row b { color: var(--text); font-weight: 600; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-size: 17px; color: var(--text); font-weight: 700; }
.sum-row.total .price { font-size: 20px; }

.cart-line {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel);
}
.cart-line .neon-stage { min-height: 84px; padding: 10px; border-radius: var(--radius-sm); }
.cart-line .neon-stage .neon-text { font-size: 17px; }
.cart-line .cl-name { font-weight: 700; font-size: 15.5px; }
.cart-line .cl-meta { font-size: 12.5px; color: var(--text-dim); margin-top: 4px; line-height: 1.7; }
.cart-line .cl-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
@media (max-width: 640px) {
  .cart-line { grid-template-columns: 1fr; }
  .cart-line .cl-right { flex-direction: row; justify-content: space-between; align-items: center; width: 100%; }
}

/* ---------- WhatsApp / Email previews ---------- */
.wa-phone {
  background: #0a1014; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; max-width: 420px;
}
.wa-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #10221b; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wa-head .avatar { background: #10b981; color: #04120b; }
.wa-head .wa-name { font-weight: 600; font-size: 14.5px; }
.wa-head .wa-status { font-size: 11.5px; color: #7ce0b3; }
.wa-body {
  padding: 20px 16px; min-height: 220px; max-height: 420px; overflow-y: auto;
  background-color: #0b141a;
  background-image: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.045) 0 20%, transparent 45%), radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.035) 0 25%, transparent 50%);
}
.wa-bubble {
  background: #056148; color: #e7fff5; border-radius: 12px 12px 4px 12px;
  padding: 12px 14px; font-size: 13px; line-height: 1.65;
  max-width: 95%; margin-left: auto; white-space: pre-wrap; word-break: break-word;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.wa-bubble .wa-time { display: block; text-align: right; font-size: 10.5px; color: #9fe8cd; margin-top: 6px; }

.email-preview { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.email-head { padding: 18px 24px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.03); font-size: 13.5px; }
.email-head .e-row { display: flex; gap: 10px; padding: 3px 0; }
.email-head .e-label { color: var(--text-faint); width: 64px; flex: 0 0 auto; }
.email-head .e-val { color: var(--text-dim); word-break: break-all; }
.email-head .e-subject { color: var(--text); font-weight: 600; }
.email-body { padding: 24px; font-size: 13.5px; color: var(--text-dim); line-height: 1.8; white-space: pre-wrap; word-break: break-word; max-height: 420px; overflow-y: auto; font-family: ui-monospace, "SF Mono", Menlo, monospace; }

/* Sending simulation */
.send-status { display: flex; flex-direction: column; gap: 14px; }
.send-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel);
  font-size: 14.5px; font-weight: 500;
}
.send-item .spinner {
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  border: 2px solid var(--line-strong); border-top-color: var(--cyan);
  animation: spin 0.8s linear infinite;
}
.send-item.sent .spinner { display: none; }
.send-item .tick { display: none; color: var(--green); font-size: 18px; }
.send-item.sent .tick { display: block; }
.send-item.sent { border-color: rgba(57, 255, 20, 0.35); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Empty state ---------- */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .es-icon { font-size: 52px; margin-bottom: 18px; opacity: 0.7; }
.empty-state h3 { margin-bottom: 10px; }
.empty-state p { color: var(--text-dim); margin-bottom: 26px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-faint); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------- Upload dropzone ---------- */
.dropzone {
  border: 2px dashed var(--line-strong); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: rgba(255, 255, 255, 0.02);
}
.dropzone:hover, .dropzone.dragover { border-color: var(--pink); background: var(--pink-soft); }
.dropzone .dz-icon { font-size: 36px; margin-bottom: 10px; }
.dropzone p { color: var(--text-dim); font-size: 14px; }
.dz-files { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.dz-file {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13.5px;
  background: var(--panel-2); border: 1px solid var(--line);
}
.dz-file button { color: var(--danger); font-size: 15px; }

/* ---------- Animations & helpers ---------- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.float { animation: floatY 5s ease-in-out infinite; }
@keyframes floatY { 50% { transform: translateY(-10px); } }

.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); padding: 16px 0; }
.marquee-track { display: inline-block; animation: marquee 28s linear infinite; }
.marquee-track span { margin: 0 28px; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.marquee-track span b { color: var(--cyan); font-weight: 600; }
@keyframes marquee { to { transform: translateX(-50%); } }

.icon-tile {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px; background: var(--panel-2); border: 1px solid var(--line);
  margin-bottom: 16px;
}

.note-box {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13.5px;
  background: var(--cyan-soft); border: 1px solid rgba(0, 229, 255, 0.3); color: #bdf3ff;
  display: flex; gap: 10px; align-items: flex-start;
}
.note-box.warn { background: rgba(255, 179, 71, 0.1); border-color: rgba(255, 179, 71, 0.35); color: #ffd9a0; }

/* Page-level two-column layouts */
.layout-sidebar { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
@media (max-width: 960px) { .layout-sidebar { grid-template-columns: 1fr; } .summary-card { position: static; } }
.layout-editor { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: start; }
@media (max-width: 1024px) { .layout-editor { grid-template-columns: 1fr; } }
