/* =========================================================================
   FERRETERÍA Y CORRALÓN PARAÍSO — Sistema de diseño
   Paleta: azules modernos + verdes llamativos + blancos y tonos claros
   ========================================================================= */

:root {
  /* Marca */
  --blue-900: #0b2545;
  --blue-800: #103a6b;
  --blue-700: #1552a0;
  --blue-600: #1f6feb;
  --blue-500: #3b86f2;
  --blue-100: #e6f0fe;
  --blue-050: #f2f7ff;

  --green-700: #147a3e;
  --green-600: #16a34a;
  --green-500: #1fb457;
  --green-400: #34d075;
  --green-100: #e4f7ec;

  --wa: #25d366;
  --wa-dark: #1ebe5a;

  --amber: #ffb703;
  --amber-soft: #ffd23f;

  /* Neutros / superficies */
  --ink: #0e1c2b;
  --text: #1e2b3a;
  --muted: #5c6b7a;
  --muted-2: #8a97a6;
  --line: #e4ebf2;
  --line-2: #eef3f8;
  --surface: #ffffff;
  --bg: #f5f9fd;
  --bg-2: #eef4fb;

  /* Efectos */
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.06), 0 2px 6px rgba(11, 37, 69, 0.05);
  --shadow: 0 6px 18px -8px rgba(11, 37, 69, 0.18), 0 2px 6px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 24px 48px -20px rgba(11, 37, 69, 0.28);
  --shadow-blue: 0 12px 28px -12px rgba(31, 111, 235, 0.45);
  --shadow-green: 0 12px 28px -12px rgba(22, 163, 74, 0.5);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --grad-brand: linear-gradient(135deg, var(--blue-600), var(--green-600));
  --grad-blue: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  --grad-hero: linear-gradient(150deg, #0b2545 0%, #103a6b 45%, #14663a 110%);

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --header-h: 76px;
  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--ink); letter-spacing: -0.02em; }
::selection { background: var(--blue-600); color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-600);
  background: var(--green-100); padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { color: var(--muted); font-size: clamp(15px, 2vw, 18px); margin-top: 14px; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 2px solid transparent; white-space: nowrap; cursor: pointer;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(31,111,235,.55); }
.btn-green { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(22,163,74,.6); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: var(--shadow-green); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-orange { background: linear-gradient(135deg, #ff8a2b, #e85d1e); color: #fff; box-shadow: 0 12px 28px -12px rgba(232,93,30,.6); }
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(232,93,30,.75); filter: brightness(1.04); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Pantalla de carga ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--grad-hero);
  display: grid; place-items: center; transition: opacity .5s ease, visibility .5s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-box { text-align: center; }
.loader-box img { width: 190px; margin: 0 auto 24px; filter: brightness(0) invert(1); opacity: .95; }
.loader-bar { width: 180px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.2); margin: 0 auto; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; border-radius: 4px; background: var(--green-400); animation: loading 1.1s ease-in-out infinite; }
@keyframes loading { 0% { transform: translateX(-120%);} 100% { transform: translateX(360%);} }

/* ---------- Top bar ---------- */
.topbar { background: var(--blue-900); color: #dce8f7; font-size: 13.5px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; opacity: .88; transition: opacity .15s, color .15s; }
.topbar a:hover { opacity: 1; color: var(--green-400); }
.topbar .tb-left { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.topbar .tb-left svg { color: var(--green-400); }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 18px; }
.topbar svg { width: 15px; height: 15px; }
@media (max-width: 760px){ .topbar .tb-right .tb-hide { display: none; } .topbar-inner{ justify-content:center;} .topbar .tb-left{font-size:12.5px;} }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--blue-900); letter-spacing: -0.02em; }
.brand-text span { font-size: 11px; color: var(--green-600); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav > a, .nav > .has-drop > button {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 14.5px; color: var(--text); font-family: var(--font-head); transition: all .15s;
}
.nav > a:hover, .nav > .has-drop > button:hover, .nav > a.active { color: var(--blue-600); background: var(--blue-050); }
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s; z-index: 20;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--text); font-weight: 500; transition: all .13s; }
.drop a:hover { background: var(--blue-050); color: var(--blue-600); }
.drop a .ic { width: 30px; height: 30px; border-radius: 8px; background: var(--green-100); display: grid; place-items: center; color: var(--green-600); flex-shrink: 0; }
.drop a .ic svg { width: 17px; height: 17px; }

.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn { position: relative; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--line); background: #fff; transition: all .15s; }
.icon-btn:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: var(--green-500); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; border: 2px solid #fff; }
.menu-toggle { display: none; }
@media (max-width: 1000px){ .nav { display: none; } .menu-toggle { display: grid; } .brand-text span { display:none;} }
@media (max-width: 460px){ .brand-text b { font-size: 15px; } .brand img { height: 44px; } }

/* ---------- Menú móvil ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 300; visibility: hidden; }
.mobile-menu.open { visibility: visible; }
.mm-overlay { position: absolute; inset: 0; background: rgba(11,37,69,.5); opacity: 0; transition: opacity .25s; }
.mobile-menu.open .mm-overlay { opacity: 1; }
.mm-panel { position: absolute; top: 0; right: 0; width: min(340px, 86vw); height: 100%; background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; padding: 20px; overflow-y: auto; }
.mobile-menu.open .mm-panel { transform: translateX(0); }
.mm-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mm-panel nav a { display: block; padding: 14px 12px; border-radius: var(--radius-sm); font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mm-panel nav a:hover { background: var(--blue-050); color: var(--blue-600); }
.mm-cta { margin-top: 20px; display: grid; gap: 10px; }

/* ---------- Búsqueda ---------- */
.search-wrap { position: relative; flex: 1; max-width: 440px; }
@media (max-width: 1000px){ .search-wrap { display: none; } }
.search-box { display: flex; align-items: center; gap: 10px; background: var(--bg-2); border: 1.5px solid transparent; border-radius: var(--radius-pill); padding: 11px 18px; transition: all .15s; }
.search-box:focus-within { background: #fff; border-color: var(--blue-500); box-shadow: 0 0 0 4px var(--blue-050); }
.search-box svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.search-box input { border: none; background: none; outline: none; width: 100%; font-size: 15px; }
.suggestions {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; max-height: 62vh; overflow-y: auto; z-index: 50; display: none;
}
.suggestions.show { display: block; }
.sug-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: var(--radius-sm); cursor: pointer; transition: background .12s; }
.sug-item:hover, .sug-item.active { background: var(--blue-050); }
.sug-item .thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--bg-2); }
.sug-item .thumb svg { width: 100%; height: 100%; }
.sug-item .st { font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.2; }
.sug-item .sc { font-size: 12px; color: var(--muted); }
.sug-item .sp { margin-left: auto; font-weight: 700; color: var(--green-600); font-size: 13.5px; white-space: nowrap; }
.sug-empty { padding: 18px; text-align: center; color: var(--muted); font-size: 14px; }
.sug-head { padding: 8px 10px 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }

/* Búsqueda móvil (overlay) */
.msearch { position: fixed; inset: 0; z-index: 260; background: rgba(11,37,69,.4); visibility: hidden; opacity: 0; transition: all .2s; }
.msearch.open { visibility: visible; opacity: 1; }
.msearch-inner { background: #fff; padding: 16px; box-shadow: var(--shadow); }
.msearch .search-wrap { display: block; max-width: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image:
  radial-gradient(circle at 85% 15%, rgba(52,208,117,.25), transparent 40%),
  radial-gradient(circle at 10% 90%, rgba(31,111,235,.28), transparent 45%); }
.hero::after { content:''; position:absolute; inset:0; opacity:.5;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px; -webkit-mask-image: linear-gradient(180deg,#000,transparent); mask-image: linear-gradient(180deg,#000,transparent); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 76px 0 88px; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; backdrop-filter: blur(4px); }
.chip svg { width: 15px; height: 15px; color: var(--green-400); }
.hero h1 { font-size: clamp(34px, 5.4vw, 62px); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.hero h1 .hl { background: linear-gradient(120deg, var(--green-400), var(--amber-soft)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.82); max-width: 540px; margin: 22px 0 30px; }
.hero .cta-group { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-owners { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 12px 18px; border-radius: var(--radius); }
.hero-owners .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--green-500); display: grid; place-items: center; flex-shrink: 0; }
.hero-owners .dot svg { width: 22px; height: 22px; color: #fff; }
.hero-owners b { display: block; font-family: var(--font-head); font-size: 15px; }
.hero-owners span { font-size: 13px; color: rgba(255,255,255,.75); }

.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,.96); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-lg); }
.hero-logo-badge { background: #fff; border-radius: var(--radius); padding: 18px; display: grid; place-items: center; }
.hero-logo-badge img { width: 78%; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.hero-stat { background: var(--bg); border-radius: var(--radius-sm); padding: 14px 10px; text-align: center; }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 22px; color: var(--blue-700); font-weight: 800; }
.hero-stat span { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.hero-float { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-float svg { width: 26px; height: 26px; }
.hero-float b { font-family: var(--font-head); font-size: 14px; color: var(--ink); }
.hero-float span { font-size: 12px; color: var(--muted); }
.hero-float.f1 { top: -18px; right: -10px; }
.hero-float.f2 { bottom: -20px; left: -18px; }
@media (max-width: 940px){
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 52px 0 64px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ---------- Marquee franja (loop, azul oscuro) ---------- */
.strip { background: linear-gradient(90deg, var(--blue-900), var(--blue-800) 50%, var(--blue-900)); color: #fff; overflow: hidden; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.strip-track { display: flex; gap: 32px; white-space: nowrap; width: max-content; animation: strip 30s linear infinite; font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .02em; }
.strip-track span { display: inline-flex; align-items: center; gap: 10px; }
.strip-track .sep { color: var(--green-400); opacity: .85; font-weight: 700; }
.strip-track svg { width: 16px; height: 16px; color: var(--green-400); }
@keyframes strip { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Categorías ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; overflow: hidden; transition: all .25s; display: flex; flex-direction: column; gap: 16px; }
.cat-card::after { content:''; position:absolute; inset:0; background: var(--grad-brand); opacity:0; transition: opacity .25s; z-index:0; }
.cat-card > * { position: relative; z-index: 1; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::after { opacity: 1; }
.cat-card:hover, .cat-card:hover .cat-count, .cat-card:hover h3 { color: #fff; }
.cat-ic { width: 62px; height: 62px; border-radius: var(--radius); background: var(--blue-050); display: grid; place-items: center; color: var(--blue-600); transition: all .25s; }
.cat-card:hover .cat-ic { background: rgba(255,255,255,.2); color: #fff; }
.cat-ic svg { width: 32px; height: 32px; }
.cat-card h3 { font-size: 21px; }
.cat-count { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 500; transition: color .25s; }
.cat-card:hover .cat-count { border-color: rgba(255,255,255,.3); }
.cat-count .arw { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-050); display: grid; place-items: center; color: var(--blue-600); transition: all .2s; }
.cat-card:hover .arw { background: #fff; color: var(--blue-700); }
@media (max-width: 860px){ .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .cat-grid { grid-template-columns: 1fr; } }

/* ---------- Tarjetas de producto ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1080px){ .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px){ .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 420px){ .prod-grid { grid-template-columns: 1fr; } }

.card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s, border-color .22s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.card-media { position: relative; aspect-ratio: 1 / 1; background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%); overflow: hidden; display: block; }
.card-media svg, .card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.card-media img { object-fit: cover; }
.card:hover .card-media svg, .card:hover .card-media img { transform: scale(1.06); }
.card-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--green-500); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 11px; padding: 5px 11px; border-radius: var(--radius-pill); letter-spacing: .02em; }
.card-tag.blue { background: var(--blue-600); }
.card-tag.amber { background: var(--amber); color: var(--ink); }
.card-fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--muted); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(-6px); transition: all .2s; }
.card:hover .card-fav { opacity: 1; transform: translateY(0); }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 11.5px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.card-name { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; line-height: 1.32; color: var(--ink); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 41px; }
.card-name a:hover { color: var(--blue-600); }
.card-price { margin-top: auto; margin-bottom: 14px; }
.card-price .amt { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--blue-900); }
.card-price .cur { font-size: 13px; color: var(--muted); font-weight: 600; }
.card-price .ask { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--green-600); }
.card-price small { display: block; font-size: 11.5px; color: var(--muted-2); font-weight: 500; }
.card-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.card-add { background: var(--grad-blue); color: #fff; border-radius: var(--radius-sm); padding: 11px; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; transition: all .16s; }
.card-add:hover { filter: brightness(1.08); box-shadow: var(--shadow-blue); }
.card-add svg { width: 17px; height: 17px; }
.card-ico { width: 42px; border-radius: var(--radius-sm); display: grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink); transition: all .16s; }
.card-ico svg { width: 18px; height: 18px; }
.card-ico.wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }
.card-ico.eye:hover { background: var(--blue-050); color: var(--blue-600); border-color: var(--blue-100); }

/* ---------- Beneficios ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all .22s; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit .b-ic { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-600); }
.benefit:nth-child(2n) .b-ic { background: var(--blue-050); color: var(--blue-600); }
.benefit .b-ic svg { width: 30px; height: 30px; }
.benefit h4 { font-size: 17px; margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 14px; }
@media (max-width: 860px){ .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px){ .benefits { grid-template-columns: 1fr; } }

/* ---------- Promo band ---------- */
.promo { background: var(--grad-blue); color: #fff; border-radius: var(--radius-lg); padding: 48px; display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 32px; position: relative; overflow: hidden; }
.promo::before { content:''; position:absolute; right:-40px; top:-40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
.promo::after { content:''; position:absolute; left:-60px; bottom:-80px; width: 220px; height: 220px; border-radius: 50%; background: rgba(52,208,117,.18); }
.promo > * { position: relative; z-index: 1; }
.promo h2 { color: #fff; font-size: clamp(24px, 3.4vw, 36px); }
.promo p { color: rgba(255,255,255,.85); margin-top: 10px; font-size: 16px; max-width: 560px; }
@media (max-width: 760px){ .promo { grid-template-columns: 1fr; padding: 34px 26px; text-align: center; } .promo .btn { justify-self: center; } }

/* ---------- Testimonios ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.review .stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.review .stars svg { width: 18px; height: 18px; }
.review p { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.review .who b { font-family: var(--font-head); font-size: 15px; color: var(--ink); display: block; }
.review .who span { font-size: 13px; color: var(--muted); }
@media (max-width: 860px){ .reviews { grid-template-columns: 1fr; } }

/* ---------- Nosotros / info empresa ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-hero); aspect-ratio: 5/4; display: grid; place-items: center; padding: 40px; }
.about-media img { width: 74%; filter: brightness(0) invert(1); opacity: .96; }
.about-media .ring { position: absolute; inset: 20px; border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--radius); }
.about h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 18px; }
.about p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-list { display: grid; gap: 14px; margin-top: 22px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; }
.about-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.about-list .ck svg { width: 15px; height: 15px; }
.about-list b { font-family: var(--font-head); color: var(--ink); }
@media (max-width: 860px){ .about { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
@media (max-width: 520px){ .contact-cards { grid-template-columns: 1fr; } }
.cc { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; transition: all .2s; }
.cc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.cc .cc-ic { width: 48px; height: 48px; border-radius: var(--radius-sm); display: grid; place-items: center; flex-shrink: 0; color: #fff; }
.cc .cc-ic.wa { background: var(--wa); } .cc .cc-ic.ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.cc .cc-ic.tel { background: var(--blue-600); } .cc .cc-ic.map { background: var(--green-600); }
.cc .cc-ic svg { width: 24px; height: 24px; }
.cc b { font-family: var(--font-head); font-size: 15px; color: var(--ink); display: block; }
.cc span { font-size: 13.5px; color: var(--muted); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); transition: all .15s; font-size: 15px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px var(--blue-050); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }

.hours { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-top: 20px; }
.hours h4 { display: flex; align-items: center; gap: 10px; font-size: 17px; margin-bottom: 14px; }
.hours h4 svg { width: 20px; height: 20px; color: var(--green-600); }
.hours .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line-2); font-size: 14.5px; }
.hours .row:last-child { border-bottom: none; }
.hours .row span:last-child { font-weight: 600; color: var(--ink); }
.hours .row.closed span:last-child { color: #c0392b; }

/* ---------- Mapa ---------- */
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.1) contrast(1.05); }
.map-open { position: absolute; bottom: 16px; left: 16px; right: 16px; }

/* ---------- Franja CTA WhatsApp ---------- */
.wa-band { background: linear-gradient(135deg, #128c4a, #25d366); color: #fff; border-radius: var(--radius-lg); padding: 44px; text-align: center; position: relative; overflow: hidden; }
.wa-band h2 { color: #fff; font-size: clamp(24px, 3.6vw, 38px); }
.wa-band p { color: rgba(255,255,255,.9); margin: 12px auto 26px; max-width: 560px; font-size: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #c5d6ea; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer .f-brand img { height: 68px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer .f-brand p { font-size: 14px; color: #9fb4cc; max-width: 300px; }
.footer li { margin-bottom: 10px; }
.footer a { color: #b9cae0; font-size: 14.5px; transition: color .15s; }
.footer a:hover { color: var(--green-400); }
.footer .f-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer .f-contact svg { width: 17px; height: 17px; color: var(--green-400); flex-shrink: 0; margin-top: 3px; }
.footer .f-contact b { color: #fff; display: block; font-family: var(--font-head); font-weight: 600; }
.footer .socials { display: flex; gap: 10px; margin-top: 16px; }
.footer .socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: all .18s; }
.footer .socials a:hover { transform: translateY(-3px); }
.footer .socials a.wa:hover { background: var(--wa); } .footer .socials a.ig:hover { background: #dc2743; } .footer .socials a.mp:hover { background: var(--green-600); }
.footer .socials svg { width: 20px; height: 20px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: #8ba3c0; flex-wrap: wrap; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ---------- Botones flotantes ---------- */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #7dffab, #00e676 55%, #00c853); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 4px rgba(0,230,118,.22), 0 8px 22px rgba(0,230,118,.5), 0 0 26px rgba(57,255,120,.75); transition: transform .2s, box-shadow .2s; }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 0 0 5px rgba(0,230,118,.3), 0 10px 28px rgba(0,230,118,.65), 0 0 42px rgba(57,255,120,.95); }
.fab-wa svg { width: 34px; height: 34px; position: relative; z-index: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }
.fab-wa::after { content:''; position:absolute; inset:0; border-radius:50%; border:2px solid #39ff78; animation: pulse 1.8s ease-out infinite; }
.fab-wa::before { content:''; position:absolute; inset:-3px; border-radius:50%; box-shadow: 0 0 20px 3px rgba(57,255,120,.75); animation: neon 1.5s ease-in-out infinite alternate; }
@keyframes pulse { 0%{transform:scale(1);opacity:.85;} 100%{transform:scale(1.8);opacity:0;} }
@keyframes neon { from{opacity:.5;} to{opacity:1;} }
.fab-wa .tip { position:absolute; right: 74px; background: var(--ink); color:#fff; padding: 8px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight:600; white-space:nowrap; opacity:0; transform: translateX(8px); transition: all .2s; pointer-events:none; }
.fab-wa:hover .tip { opacity:1; transform: translateX(0); }

.to-top { position: fixed; right: 24px; bottom: 96px; z-index: 149; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--blue-700); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--blue-600); color: #fff; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Carrito (drawer) ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 400; visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.cart-overlay { position: absolute; inset: 0; background: rgba(11,37,69,.5); opacity: 0; transition: opacity .25s; }
.cart-drawer.open .cart-overlay { opacity: 1; }
.cart-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bg); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; background: #fff; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.cart-item .ci-media { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; background: var(--bg-2); }
.cart-item .ci-media svg, .cart-item .ci-media img { width: 100%; height: 100%; object-fit: contain; }
.cart-item .ci-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; line-height: 1.25; color: var(--ink); }
.cart-item .ci-price { font-size: 13.5px; color: var(--green-600); font-weight: 700; margin-top: 3px; }
.cart-item .ci-ask { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-top: 3px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; margin-top: 8px; }
.qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue-700); font-weight: 700; transition: background .12s; }
.qty button:hover { background: var(--blue-050); }
.qty span { min-width: 30px; text-align: center; font-weight: 600; font-size: 14px; }
.ci-remove { color: var(--muted-2); align-self: flex-start; transition: color .15s; }
.ci-remove:hover { color: #c0392b; }
.ci-remove svg { width: 18px; height: 18px; }
.cart-empty { flex: 1; display: grid; place-content: center; text-align: center; color: var(--muted); gap: 12px; padding: 40px; }
.cart-empty svg { width: 60px; height: 60px; color: var(--line); margin: 0 auto; }
.cart-foot { background: #fff; border-top: 1px solid var(--line); padding: 20px; }
.cart-line { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14.5px; color: var(--muted); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0 4px; padding-top: 12px; border-top: 1px dashed var(--line); }
.cart-total b { font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.cart-total .amt { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--blue-900); }
.cart-note { font-size: 12px; color: var(--muted); margin: 6px 0 14px; }
.cart-actions { display: grid; gap: 10px; }
.link-clear { text-align: center; font-size: 13px; color: var(--muted); font-weight: 600; padding: 6px; }
.link-clear:hover { color: #c0392b; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 500; display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 12px; background: var(--ink); color: #fff; padding: 14px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); font-size: 14.5px; font-weight: 500; transform: translateY(20px); opacity: 0; transition: all .3s; max-width: 90vw; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast .tk { width: 26px; height: 26px; border-radius: 50%; background: var(--green-500); display: grid; place-items: center; flex-shrink: 0; }
.toast .tk svg { width: 16px; height: 16px; }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); padding: 20px 0; }
.crumb a:hover { color: var(--blue-600); }
.crumb .sep { color: var(--muted-2); }
.crumb .cur { color: var(--ink); font-weight: 600; }

/* ---------- Página producto ---------- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px){ .pd { grid-template-columns: 1fr; gap: 30px; } }
.pd-gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.pd-main-img { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(160deg, var(--bg), var(--bg-2)); aspect-ratio: 1; display: grid; place-items: center; }
.pd-main-img svg, .pd-main-img img { width: 82%; height: 82%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumb { width: 82px; height: 82px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--bg-2); transition: all .15s; padding: 6px; }
.pd-thumb.active { border-color: var(--blue-600); box-shadow: 0 0 0 3px var(--blue-050); }
.pd-cat { color: var(--green-600); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: 13px; }
.pd h1 { font-size: clamp(24px, 3.6vw, 36px); margin: 10px 0 14px; }
.pd-price { display: flex; align-items: baseline; gap: 10px; margin: 18px 0; }
.pd-price .amt { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--blue-900); }
.pd-price .ask { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--green-600); }
.pd-price .cur { color: var(--muted); font-weight: 600; }
.pd-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.pd-meta .m { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-2); padding: 8px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 500; }
.pd-meta .m svg { width: 15px; height: 15px; color: var(--green-600); }
.pd-desc { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 18px 0; }
.pd-buy { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 22px 0; }
.pd-buy .qty { margin: 0; transform: scale(1.1); transform-origin: left; }
.pd-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
@media (max-width: 480px){ .pd-actions { grid-template-columns: 1fr; } }
.pd-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.pd-features .pf { display: flex; gap: 10px; align-items: center; }
.pd-features .pf .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-050); color: var(--blue-600); display: grid; place-items: center; flex-shrink: 0; }
.pd-features .pf .ic svg { width: 20px; height: 20px; }
.pd-features .pf b { font-family: var(--font-head); font-size: 13.5px; display: block; color: var(--ink); }
.pd-features .pf span { font-size: 12.5px; color: var(--muted); }

/* ---------- Catálogo ---------- */
.catalog { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px){ .catalog { grid-template-columns: 1fr; } .catalog-side { position: static; } }
.catalog-side { position: sticky; top: calc(var(--header-h) + 16px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.catalog-side h4 { font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.filter-list li a { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14.5px; color: var(--text); font-weight: 500; transition: all .13s; }
.filter-list li a:hover, .filter-list li a.active { background: var(--blue-050); color: var(--blue-700); font-weight: 600; }
.filter-list li a .n { font-size: 12px; color: var(--muted-2); background: var(--bg-2); padding: 2px 8px; border-radius: 8px; }
.filter-list li a.active .n { background: var(--blue-100); color: var(--blue-700); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.catalog-toolbar .count { color: var(--muted); font-size: 14.5px; }
.catalog-toolbar .count b { color: var(--ink); }
.sortsel { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-size: 14px; font-weight: 500; }
.chips-mobile { display: none; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 18px; }
.chips-mobile::-webkit-scrollbar { height: 0; }
.chips-mobile a { flex-shrink: 0; padding: 9px 16px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--line); font-size: 13.5px; font-weight: 600; color: var(--text); white-space: nowrap; }
.chips-mobile a.active { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
@media (max-width: 900px){ .chips-mobile { display: flex; } .catalog-side { display: none; } }

/* ---------- Utilidades / animaciones scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } .strip-track, .fab-wa::after, .fab-wa::before { animation: none !important; } }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; } .mt-24 { margin-top: 24px; }
.hide { display: none !important; }
.page-head { background: var(--grad-hero); color: #fff; padding: 48px 0; position: relative; overflow: hidden; }
.page-head::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 90% 10%, rgba(52,208,117,.25), transparent 45%); }
.page-head h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); position: relative; }
.page-head p { color: rgba(255,255,255,.8); margin-top: 10px; position: relative; max-width: 620px; }
.empty-state { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty-state svg { width: 64px; height: 64px; color: var(--line); margin: 0 auto 16px; }
.empty-state h3 { color: var(--ink); margin-bottom: 8px; }

/* ---------- Barra de vista previa (solo propietario) ---------- */
.preview-bar { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(90deg, var(--amber), var(--amber-soft)); color: #3d2c00; font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; text-align: center; }
.preview-bar b { color: #000; }
.preview-bar a { color: #7a4b00; text-decoration: underline; font-weight: 700; white-space: nowrap; }
