/* ============================================================
   MONOCOMANDO · Grifería Mayorista — Estilo Premium Oscuro
   ============================================================ */
:root {
  --bg: #0a0d11;
  --bg-2: #0e1218;
  --panel: #131922;
  --panel-2: #181f2b;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #eef2f6;
  --muted: #93a0ae;
  --gold: #d4af37;
  --gold-2: #f4d97e;
  --gold-soft: rgba(212, 175, 55, 0.14);
  --green: #2fbf71;
  --red: #ff5f56;
  --radius: 16px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* CRÍTICO: sin esto, display de autor anula el atributo hidden */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
::selection { background: var(--gold); color: #111; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #2a3440; border-radius: 6px; }

.gold { background: linear-gradient(120deg, var(--gold), var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(10, 13, 17, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 800; letter-spacing: 0.06em; font-size: 17px; }
.brand em { font-style: normal; color: var(--gold); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  /* el logo es fondo negro opaco: el gradiente queda cubierto, usamos borde sutil */
  background: #05070a;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
  overflow: hidden; flex-shrink: 0;
}
.brand-mark img {
  width: 100%; height: 100%; object-fit: cover;
}
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { margin-left: 4px; }
.nav-burger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px; padding: 8px; }
.nav-burger span { display: block; width: 18px; height: 2px; background: #fff; margin: 3px 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  transition: transform .2s, box-shadow .2s, background .2s; border: none;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #171204; box-shadow: 0 8px 26px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212, 175, 55, 0.42); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 150px 24px 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-1 { width: 520px; height: 520px; background: rgba(212, 175, 55, 0.22); top: -180px; right: -120px; animation: drift 12s ease-in-out infinite alternate; }
.orb-2 { width: 420px; height: 420px; background: rgba(47, 191, 113, 0.12); bottom: -160px; left: -100px; animation: drift 16s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(40px, 30px); } }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-soft); border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-2); border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: .03em;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(47,191,113,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(47,191,113,0); } 100% { box-shadow: 0 0 0 0 rgba(47,191,113,0); } }
.hero h1 { font-size: clamp(40px, 6vw, 64px); font-weight: 800; margin: 22px 0 18px; letter-spacing: -0.02em; }
.lead { color: var(--muted); font-size: 18px; max-width: 520px; margin-bottom: 30px; }
.lead strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero video */
.hero-video {
  position: relative; height: 460px; display: grid; place-items: center;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.hero-video video {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- BENEFITS ---------- */
.benefits {
  max-width: 1200px; margin: 0 auto; padding: 40px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.benefit {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: transform .25s, border-color .25s;
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.4); }
.benefit-icon { font-size: 24px; filter: drop-shadow(0 4px 10px rgba(212,175,55,.25)); }
.benefit h3 { font-size: 15px; margin-bottom: 4px; }
.benefit p { color: var(--muted); font-size: 13px; }

/* ---------- SECTIONS ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; margin: 12px 0 12px; }
.section-head p { color: var(--muted); font-size: 15.5px; }

/* ---------- PRODUCT CARDS ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.45); box-shadow: var(--shadow); }
.card-media {
  position: relative; aspect-ratio: 1 / 0.82; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.08), transparent 65%), var(--bg-2);
  padding: 18px; transition: background .3s;
}
.card:hover .card-media { background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.16), transparent 65%), var(--bg-2); }
.card-media svg, .card-media img { width: 82%; height: 82%; object-fit: contain; transition: transform .45s; }
.card:hover .card-media svg, .card:hover .card-media img { transform: scale(1.06) rotate(-2deg); }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; }
.badge-destacado { background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #171204; }
.badge-nuevo { background: var(--green); color: #04150b; }
.badge-oferta { background: var(--red); color: #fff; }
.badge-video { background: rgba(0,0,0,.65); color: #fff; border: 1px solid var(--line-2); }
.card-body { padding: 16px 18px 18px; }
.card-cat { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.card-title { font-size: 14.5px; font-weight: 600; margin: 6px 0 10px; line-height: 1.35; min-height: 2.7em; font-family: var(--font-head); }
.card-code { font-size: 11px; color: var(--muted); font-family: monospace; }
.card-price { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.price-mayorista { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--gold-2); }
.price-lista { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.card-cta { margin-top: 14px; width: 100%; }
.card-stock { position: absolute; top: 12px; right: 12px; font-size: 10.5px; color: var(--green); font-weight: 600; letter-spacing: .04em; }
.card-stock.medio { color: #e8c15a; }
.card-stock.bajo { color: var(--red); }

.grid-more {
  display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 34px;
}
.grid-more span {
  font-size: 12.5px; color: var(--muted); letter-spacing: .06em;
}
.grid-more .btn { min-width: 220px; }

.catalog-note {
  margin-top: 40px; text-align: center; padding: 22px; border-radius: var(--radius);
  background: var(--panel); border: 1px dashed var(--line-2); color: var(--muted); font-size: 14px;
}
.catalog-note strong { color: var(--text); }
.catalog-note a { color: var(--gold); font-weight: 600; }

/* ---------- WHOLESALE ---------- */
.wholesale { border-block: 1px solid var(--line); background: var(--bg-2); max-width: none; }
.wholesale > .wholesale-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.wholesale h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 12px 0 16px; }
.wholesale-copy > p { color: var(--muted); margin-bottom: 22px; font-size: 15.5px; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li { display: flex; gap: 12px; padding: 9px 0; color: var(--text); font-size: 15px; }
.check-list span { color: var(--gold); font-weight: 800; }
.wholesale-card { background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-2); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
.wholesale-card h3 { margin-bottom: 20px; font-size: 18px; }
.tier { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; transition: border-color .2s; }
.tier:hover { border-color: var(--line-2); }
.tier strong { display: block; font-size: 14.5px; }
.tier span { font-size: 12.5px; color: var(--muted); }
.tier em { font-style: normal; font-family: var(--font-head); font-weight: 800; color: var(--gold-2); font-size: 18px; }
.tier.hot { border-color: rgba(212,175,55,.35); background: rgba(212,175,55,.05); }
.tier-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ---------- CONTACT ---------- */
.contact-box {
  display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(212,175,55,.12), rgba(212,175,55,.03));
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 24px; padding: 40px 44px;
}
.contact-box h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; margin: 10px 0 8px; }
.contact-box p { color: var(--muted); max-width: 480px; }
.btn-wa { font-size: 15px; padding: 15px 28px; }
.wa-icon { display: inline-grid; place-items: center; }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(4,6,9,.8);
  backdrop-filter: blur(8px); display: grid; place-items: center; padding: 20px;
  animation: fadeIn .25s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative; width: min(940px, 100%); max-height: 90vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: 22px; box-shadow: var(--shadow);
  animation: popIn .3s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes popIn { from { transform: scale(.92) translateY(14px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-close {
  position: sticky; top: 14px; margin-left: calc(100% - 46px); z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid var(--line-2); color: #fff; font-size: 15px;
  transition: transform .2s, background .2s;
}
.modal-close:hover { transform: rotate(90deg); background: var(--red); border-color: var(--red); }
.modal-body { padding: 0 32px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.modal-visual { display: flex; flex-direction: column; gap: 14px; }
.visual-stage {
  position: relative; border-radius: 16px; background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.1), transparent 65%), var(--bg-2);
  border: 1px solid var(--line); overflow: hidden;
  display: grid; place-items: center; aspect-ratio: 1 / 0.95;
}
.visual-stage img, .visual-stage svg { width: 88%; height: 88%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,.55)); }
#visualContent { width: 100%; height: 100%; display: grid; place-items: center; }

.modal-info { padding-top: 8px; }
.modal-info .card-cat { font-size: 12px; }
.modal-info h3 { font-size: 24px; margin: 8px 0 6px; font-weight: 700; }
.modal-code { font-family: monospace; color: var(--muted); font-size: 13px; margin-bottom: 14px; display: inline-block; background: var(--panel-2); padding: 4px 10px; border-radius: 8px; }
.modal-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.specs { list-style: none; margin-bottom: 20px; }
.specs li { display: flex; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; color: var(--text); }
.specs li::before { content: "◆"; color: var(--gold); font-size: 9px; align-self: center; }
.modal-price { display: flex; align-items: center; gap: 16px; margin-bottom: 6px; }
.modal-price .price-mayorista { font-size: 30px; }
.modal-price .price-lista { font-size: 15px; }
.price-note { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.modal-actions .btn { width: 100%; }
.btn-green { background: linear-gradient(120deg, #25d366, #128c7e); color: #04210f; box-shadow: 0 8px 26px rgba(37,211,102,.25); }
.btn-green:hover { transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--line-2); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.garantia-line { margin-top: 16px; font-size: 12.5px; color: var(--green); font-weight: 600; }
.garantia-line::before { content: "🛡️ "; }

/* ---------- TRAY ---------- */
.tray-fab {
  position: fixed; bottom: 96px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; border: none;
  background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #171204;
  font-size: 22px; box-shadow: 0 10px 30px rgba(212,175,55,.4); transition: transform .2s;
  animation: popIn .3s;
}
.tray-fab:hover { transform: scale(1.08); }
.tray-fab b { position: absolute; top: -4px; right: -4px; background: var(--red); color: #fff; font-size: 12px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; }
.tray {
  position: fixed; bottom: 22px; right: 22px; z-index: 91; width: 340px; max-height: 60vh;
  background: var(--panel); border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow); animation: popIn .3s;
}
.tray-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.tray-head button { background: none; border: none; color: var(--muted); font-size: 15px; }
.tray-list { overflow-y: auto; padding: 10px 14px; }
.tray-item { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.tray-item .del { background: none; border: none; color: var(--red); font-size: 14px; }
.tray > .btn { margin: 12px 14px 16px; }

/* ---------- CATEGORY CARDS ---------- */
.cat-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.45); box-shadow: var(--shadow); }
.cat-icon { font-size: 36px; margin-bottom: 14px; filter: drop-shadow(0 4px 10px rgba(212,175,55,.25)); }
.cat-card h3 { font-size: 17px; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; min-height: 2.4em; }
.cat-card .btn { padding: 10px 18px; font-size: 13px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { border-top: 1px solid var(--line); background: var(--bg-2); max-width: none; }
.testimonials > .testimonial-grid { max-width: 1200px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
  transition: transform .3s, border-color .3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.35); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 14px; left: 20px;
  font-size: 48px; color: rgba(212,175,55,.2); font-family: Georgia, serif; line-height: 1;
}
.testimonial-text { color: var(--text); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testimonial-author strong { display: block; color: var(--text); font-size: 14px; }
.testimonial-author span { color: var(--muted); font-size: 12px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; transition: border-color .25s;
}
.faq-item:hover { border-color: rgba(212,175,55,.3); }
.faq-item[open] { border-color: rgba(212,175,55,.4); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-family: var(--font-head);
  font-weight: 600; font-size: 15px; color: var(--text); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--gold); font-weight: 300;
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; line-height: 1.65;
}

/* ---------- HERO STATS (mayorista) ---------- */
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  padding: 28px;
}
.stat-item {
  background: rgba(0,0,0,.35); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px 16px; text-align: center;
  transition: border-color .25s;
}
.stat-item:hover { border-color: rgba(212,175,55,.4); }
.stat-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 26px; color: var(--gold-2); margin-bottom: 4px;
}
.stat-label {
  color: var(--muted); font-size: 12px; text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- PDF DOWNLOAD CARDS ---------- */
.pdf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.pdf-card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.pdf-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.45); box-shadow: var(--shadow); }
.pdf-card-wide { grid-column: span 4; flex-direction: row; text-align: left; gap: 20px; padding: 24px 30px; }
.pdf-icon { font-size: 32px; filter: drop-shadow(0 4px 10px rgba(212,175,55,.25)); }
.pdf-card h3 { font-size: 16px; color: var(--text); }
.pdf-card p { color: var(--muted); font-size: 13px; margin: 0; }
.pdf-size { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .04em; }
@media (max-width: 1024px) { .pdf-grid { grid-template-columns: repeat(2, 1fr); } .pdf-card-wide { grid-column: span 2; } }
@media (max-width: 600px) { .pdf-grid { grid-template-columns: 1fr; } .pdf-card-wide { grid-column: span 1; flex-direction: column; text-align: center; } }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(120deg, #25d366, #128c7e);
  display: grid; place-items: center; font-size: 26px;
  box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1) rotate(8deg); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .featured-grid, .grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-video { height: 360px; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .wholesale > .wholesale-grid { grid-template-columns: 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .featured-grid, .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero { padding-top: 110px; }
  .benefits { grid-template-columns: 1fr; }
  .modal-body { padding: 0 18px 24px; }
  .tray { width: calc(100vw - 40px); right: 20px; }
  .contact-box { padding: 30px 24px; }
}
@media (max-width: 460px) {
  .featured-grid, .grid { grid-template-columns: 1fr; }
}
