/* Tienda pública — dirección visual "Vitrina nocturna" (aprobada por Inty 2026-09-27).
   El panel de administración sigue usando style.css; este archivo es solo para index.html. */
:root {
  --bg: #070a14;
  --bg-2: #0d1222;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --ink: #e8ecf8;
  --ink-soft: #aab3cf;
  --ink-mute: #7d86a6;
  --cyan: #5ee7ff;
  --violet: #8b5cff;
  --amber: #ffd166;
  --orange: #ff8a3d;
  --orange-deep: #ff6a2b;
  --rose: #ff5e8a;
  --whatsapp: #25d366;
  --radius: 20px;
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.55);
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 640px at 78% -8%, rgba(38, 76, 140, 0.55), transparent 60%),
    radial-gradient(900px 560px at -5% 22%, rgba(74, 36, 120, 0.5), transparent 58%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(#000, transparent 75%);
  -webkit-mask-image: linear-gradient(#000, transparent 75%);
  z-index: 0;
}
body > * { position: relative; z-index: 1; }
.site-header, .whatsapp-float, .assistant-float, .assistant-panel, .modal-overlay, .cart-overlay, .toast { z-index: auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; color: inherit; }
svg.ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(180deg, #ffb35c, var(--orange-deep));
  color: #1a0d00;
  box-shadow: 0 10px 34px rgba(255, 122, 47, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 14px 42px rgba(255, 122, 47, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
.btn-whatsapp { background: var(--whatsapp); color: #062b14; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-block { width: 100%; }
.btn-outline { background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong); box-shadow: none; }
.btn-outline:hover { background: var(--surface-2); }
.btn-sm { padding: 10px 16px; font-size: 0.82rem; border-radius: 11px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 20, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: conic-gradient(from 200deg, var(--orange), var(--amber), var(--cyan), var(--violet), var(--orange));
  box-shadow: 0 0 22px rgba(94, 231, 255, 0.45);
  position: relative;
}
.brand-mark::after { content: ""; position: absolute; inset: 8px; border-radius: 4px; background: var(--bg); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: 0.01em; white-space: nowrap; }
.header-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px 16px;
  max-width: 460px;
  margin-left: auto;
  transition: border-color 0.2s, background 0.2s;
}
.header-search:focus-within { border-color: rgba(94, 231, 255, 0.5); background: var(--surface-2); }
.header-search .ico { color: var(--ink-mute); }
.header-search input { border: none; outline: none; flex: 1; font-family: inherit; font-size: 0.92rem; background: transparent; color: var(--ink); }
.header-search input::placeholder { color: var(--ink-mute); }
.cart-btn {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.cart-btn:hover { background: var(--surface-2); border-color: rgba(94, 231, 255, 0.45); }
.cart-btn .ico { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--orange); color: #1a0d00;
  font-size: 0.7rem; font-weight: 800;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--bg);
}
.category-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all 0.18s ease;
}
.cat-pill:hover { color: var(--ink); border-color: var(--line-strong); }
.cat-pill.active { background: rgba(94, 231, 255, 0.14); border-color: rgba(94, 231, 255, 0.55); color: #fff; }

/* ---------- HERO ---------- */
.hero { max-width: 1200px; margin: 0 auto; padding: 56px 20px 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(90deg, var(--amber), var(--orange) 50%, var(--rose));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; max-width: 470px; margin: 0 0 28px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; font-size: 0.84rem; color: var(--ink-mute); }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .ico { color: var(--cyan); }

.hero-stage { position: relative; aspect-ratio: 1 / 0.92; }
.hero-stage::before {
  content: ""; position: absolute; inset: 6% 8% 16%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(94, 231, 255, 0.32), rgba(139, 92, 255, 0.14) 60%, transparent);
  filter: blur(12px);
}
.hero-stage .spot {
  position: absolute; left: 50%; top: -22%; width: 72%; height: 95%;
  transform: translateX(-50%);
  background: conic-gradient(from 160deg at 50% 0%, transparent 0 8%, rgba(255, 255, 255, 0.13) 12%, transparent 16%);
  filter: blur(6px); pointer-events: none;
}
.hero-stage .floor { position: absolute; left: 12%; right: 12%; bottom: 2%; height: 14%; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 0, 0, 0.75), transparent); }
.stage-card {
  position: absolute;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 38%, #ffffff, #e8ecf5);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: grid; place-items: center;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: transform 0.35s ease;
  animation: float 7s ease-in-out infinite;
}
.stage-card img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; }
.stage-card.c1 { width: 56%; left: 22%; top: 8%; --r: -3deg; z-index: 3; }
.stage-card.c2 { width: 38%; left: 0; top: 44%; --r: -9deg; z-index: 2; animation-delay: -2s; }
.stage-card.c3 { width: 38%; right: 0; top: 38%; --r: 8deg; z-index: 2; animation-delay: -4s; }
.stage-card { transform: rotate(var(--r)); }
.stage-card:hover { transform: rotate(0deg) scale(1.04); z-index: 4; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@media (prefers-reduced-motion: reduce) { .stage-card { animation: none; } }

/* ---------- FRANJA VENDEDORES ---------- */
.seller-cta { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.seller-cta p {
  margin: 0;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 14px 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(139, 92, 255, 0.16), rgba(94, 231, 255, 0.1));
  border: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-soft);
}
.seller-cta .ico { color: var(--cyan); }
.link-btn { background: none; border: none; padding: 0; color: var(--cyan); font-weight: 700; font-size: inherit; text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: #fff; }

/* ---------- CATÁLOGO ---------- */
.catalog-section { max-width: 1200px; margin: 0 auto; padding: 56px 20px 90px; }
.catalog-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; gap: 12px; }
.catalog-head h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.result-count { color: var(--ink-mute); font-size: 0.88rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 22px; }
.skeleton-grid { display: contents; }
.skeleton-card { height: 340px; border-radius: var(--radius); background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 37%, rgba(255,255,255,0.04) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.product-card {
  border-radius: var(--radius);
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5); border-color: rgba(94, 231, 255, 0.4); }
.product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 36%, #ffffff, #e6eaf4);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.product-thumb img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb .placeholder-icon { width: 42px; height: 42px; color: #b8c0d6; }
.badge-discount, .badge-featured {
  position: absolute; top: 10px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.02em;
  padding: 5px 9px; border-radius: 8px;
}
.badge-discount { left: 10px; background: var(--orange); color: #1a0d00; }
.badge-featured { right: 10px; background: rgba(7, 10, 20, 0.82); color: var(--cyan); border: 1px solid rgba(94, 231, 255, 0.4); }
.product-body { padding: 14px 4px 4px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); font-weight: 600; }
.product-name { font-size: 0.98rem; font-weight: 600; margin: 0; line-height: 1.35; color: var(--ink); }
.product-price-row { margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 8px; }
.price-current { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.price-compare { font-size: 0.85rem; color: var(--ink-mute); text-decoration: line-through; }
.card-add {
  margin-left: auto;
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--orange); color: #1a0d00;
  box-shadow: 0 6px 18px rgba(255, 138, 61, 0.42);
  transition: transform 0.15s;
}
.product-card:hover .card-add { transform: scale(1.08); }
.stock-low { font-size: 0.75rem; color: var(--amber); font-weight: 600; }
.empty-state { text-align: center; color: var(--ink-soft); padding: 60px 20px; font-size: 1.02rem; grid-column: 1 / -1; }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); background: rgba(5, 7, 14, 0.7); margin-top: 20px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 50px 20px 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0; }
.footer-col h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cyan); margin: 0 0 14px; font-weight: 600; }
.footer-col p { margin: 0 0 10px; font-size: 0.9rem; color: var(--ink-soft); display: flex; gap: 9px; align-items: flex-start; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: border-color 0.15s, background 0.15s; }
.social-links a:hover { border-color: rgba(94, 231, 255, 0.5); background: var(--surface-2); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: var(--ink-mute); padding: 18px 20px; border-top: 1px solid var(--line); margin: 0; }
.admin-link { color: inherit; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.25); }

/* ---------- BOTONES FLOTANTES ---------- */
.whatsapp-float, .assistant-float {
  position: fixed; bottom: 24px;
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center;
  z-index: 45; border: none;
  transition: transform 0.15s ease;
}
.whatsapp-float { right: 24px; background: var(--whatsapp); color: #062b14; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4); }
.assistant-float { left: 24px; background: rgba(13, 18, 34, 0.9); color: var(--cyan); border: 1px solid rgba(94, 231, 255, 0.4); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 24px rgba(94, 231, 255, 0.18); backdrop-filter: blur(10px); }
.whatsapp-float:hover, .assistant-float:hover { transform: translateY(-3px); }
.whatsapp-float .ico, .assistant-float .ico { width: 26px; height: 26px; }

/* ---------- ASISTENTE ---------- */
.assistant-panel {
  position: fixed; bottom: 96px; left: 24px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 140px));
  background: rgba(11, 15, 28, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  z-index: 50; overflow: hidden;
  backdrop-filter: blur(16px);
}
.assistant-header { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 0.95rem; gap: 8px; border-bottom: 1px solid var(--line); }
.assistant-header span { display: inline-flex; align-items: center; gap: 8px; }
.assistant-header .ico { color: var(--cyan); }
.assistant-header .modal-close { position: static; }
.assistant-messages { flex: 1; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.assistant-msg { max-width: 85%; padding: 9px 13px; border-radius: 14px; font-size: 0.88rem; line-height: 1.45; }
.assistant-msg-bot { align-self: flex-start; background: var(--surface-2); color: var(--ink); border-bottom-left-radius: 4px; }
.assistant-msg-user { align-self: flex-end; background: var(--orange); color: #1a0d00; border-bottom-right-radius: 4px; }
.assistant-msg-typing { align-self: flex-start; background: var(--surface); color: var(--ink-mute); font-style: italic; }
.assistant-input-row { display: flex; border-top: 1px solid var(--line); padding: 10px; gap: 8px; }
.assistant-input-row input { flex: 1; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); border-radius: 12px; padding: 10px 14px; font-family: inherit; font-size: 0.88rem; outline: none; }
.assistant-input-row input:focus { border-color: rgba(94, 231, 255, 0.55); }
.assistant-input-row button { background: var(--orange); color: #1a0d00; border: none; width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; }

/* ---------- MODALES ---------- */
.modal-overlay, .cart-overlay {
  position: fixed; inset: 0;
  background: rgba(3, 5, 12, 0.72);
  backdrop-filter: blur(6px);
  z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cart-overlay { justify-content: flex-end; padding: 0; }
.modal {
  background: linear-gradient(180deg, #121833, #0b1020);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--surface-2); border: 1px solid var(--line);
  width: 38px; height: 38px; border-radius: 12px;
  font-size: 1.4rem; line-height: 1; color: var(--ink);
  z-index: 2;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.16); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-gallery { padding: 24px; }
.modal-gallery img#modalMainImage { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 18px; background: radial-gradient(circle at 50% 38%, #ffffff, #e6eaf4); padding: 6%; }
.modal-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.modal-thumbs img { width: 58px; height: 58px; object-fit: contain; border-radius: 10px; background: #fff; padding: 4px; cursor: pointer; border: 2px solid transparent; opacity: 0.75; }
.modal-thumbs img.active { border-color: var(--cyan); opacity: 1; }
.modal-info { padding: 36px 30px 30px 6px; display: flex; flex-direction: column; gap: 12px; }
.modal-category { color: var(--cyan); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; }
.modal-info h2 { margin: 0; font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; }
.modal-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; display: flex; gap: 10px; align-items: baseline; }
.modal-description { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.6; white-space: pre-line; margin: 0; }
.field-label { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.08em; }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip { border: 1px solid var(--line-strong); background: var(--surface); padding: 8px 14px; border-radius: 10px; font-size: 0.85rem; font-weight: 600; }
.size-chip.active { border-color: var(--cyan); background: rgba(94, 231, 255, 0.14); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; background: var(--surface); }
.qty-stepper button { background: transparent; border: none; width: 40px; height: 40px; font-size: 1.1rem; }
.qty-stepper button:hover { background: var(--surface-2); }
.qty-stepper span { width: 40px; text-align: center; font-weight: 700; }
.stock-note { font-size: 0.8rem; color: var(--ink-mute); margin: 0; }

.lead-modal { max-width: 480px; padding: 34px; }
.lead-modal h2 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.4rem; }
.lead-modal .modal-description { margin: 0 0 18px; }
.lead-modal form { display: flex; flex-direction: column; gap: 14px; }
.lead-modal label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); display: flex; flex-direction: column; gap: 6px; }
.lead-modal input, .lead-modal textarea { font-family: inherit; font-size: 0.92rem; padding: 11px 13px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); border-radius: 12px; font-weight: 400; resize: vertical; }
.lead-modal input:focus, .lead-modal textarea:focus { border-color: rgba(94, 231, 255, 0.55); outline: none; }
.lead-success { text-align: center; padding: 10px 0; }
.lead-success .ico { width: 44px; height: 44px; color: var(--whatsapp); margin: 0 auto 10px; }

/* ---------- CARRITO ---------- */
.cart-drawer {
  background: linear-gradient(180deg, #11172e, #0a0e1c);
  border-left: 1px solid var(--line-strong);
  width: min(420px, 100%); height: 100%;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
}
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-header h2 { font-family: var(--font-display); font-size: 1.2rem; margin: 0; display: flex; align-items: center; gap: 10px; }
.cart-header .ico { color: var(--cyan); }
.cart-header .modal-close { position: static; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); }
.cart-item img { width: 60px; height: 60px; object-fit: contain; border-radius: 10px; background: #fff; padding: 4px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .name { font-weight: 600; font-size: 0.88rem; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-info .meta { font-size: 0.78rem; color: var(--ink-mute); margin: 0; }
.cart-item-actions { display: flex; align-items: center; gap: 8px; }
.cart-item-actions button { background: var(--surface-2); border: none; width: 28px; height: 28px; border-radius: 8px; font-size: 0.9rem; }
.cart-item-remove { background: none; border: none; color: var(--rose); font-size: 1rem; margin-left: 4px; }
.cart-footer { border-top: 1px solid var(--line); padding: 16px 22px 22px; display: flex; flex-direction: column; gap: 12px; }
.cart-footer textarea { resize: none; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ink); border-radius: 12px; padding: 10px 12px; font-family: inherit; font-size: 0.85rem; min-height: 56px; }
.cart-footer textarea::placeholder { color: var(--ink-mute); }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; color: var(--ink-soft); }
.cart-total strong { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.cart-hint { font-size: 0.75rem; color: var(--ink-mute); text-align: center; margin: 0; line-height: 1.5; }
.bank-info { background: var(--surface); border: 1px dashed var(--line-strong); border-radius: 14px; padding: 14px 16px; }
.bank-info-title { margin: 0 0 10px; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.bank-info-title .ico { color: var(--cyan); }
.bank-info-list { margin: 0 0 10px; display: flex; flex-direction: column; gap: 5px; }
.bank-info-list > div { display: flex; justify-content: space-between; gap: 10px; font-size: 0.82rem; }
.bank-info-list dt { color: var(--ink-mute); margin: 0; }
.bank-info-list dd { margin: 0; font-weight: 600; text-align: right; }

.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(13, 18, 34, 0.96);
  border: 1px solid rgba(94, 231, 255, 0.4);
  color: #fff; padding: 12px 22px; border-radius: 14px;
  font-size: 0.88rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all 0.25s ease; z-index: 80;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding-top: 34px; }
  .hero-stage { max-width: 440px; width: 100%; margin: 0 auto; }
}
@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-search { order: 3; max-width: none; flex: 1 1 100%; margin-left: 0; }
  .cart-btn { margin-left: auto; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-info { padding: 6px 22px 26px; }
  .footer-inner { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 8px; }
  .product-name { font-size: 0.88rem; }
  .price-current { font-size: 1.1rem; }
  .card-add { width: 32px; height: 32px; }
  .trust-row { gap: 12px 18px; }
}
@media (max-width: 480px) {
  .assistant-panel { left: 12px; right: 12px; width: auto; bottom: 88px; }
  .assistant-float { left: 16px; }
  .whatsapp-float { right: 16px; }
}
.hero-grid.no-stage { grid-template-columns: 1fr; max-width: 760px; }
