/* ─── Tokens ──────────────────────────────────────────── */
:root {
  /* Neutrales */
  --bg: #FFFFFF;
  --bg-soft: #F6F5F2;
  --bg-mute: #FAFAFA;
  --ink: #1A1A1A;
  --ink-2: #444444;
  --ink-3: #888888;
  --line: #ECECEC;
  --line-2: #E0E0E0;

  /* Marca Propet */
  --primary: #C41E2A;        /* rojo Propet — CTA + badges sale */
  --primary-dark: #9B1520;
  --gold: #F5C842;           /* amarillo logo */
  --gold-deep: #E8B423;

  /* Acentos juguetones (estilo Phlox) */
  --accent-purple: #5B3DBE;
  --accent-teal: #2BB99A;
  --accent-coral: #FF6B5B;
  --accent-blue: #6CB4EE;
  --accent-orange: #F39C5A;

  /* Estados */
  --success: #20C997;

  /* Tipografía */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Métricas */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 6px rgba(20, 20, 20, 0.04);
  --shadow: 0 8px 24px rgba(20, 20, 20, 0.06);
  --shadow-lg: 0 24px 48px rgba(20, 20, 20, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -100%; left: 0; z-index: 9999;
  background: var(--primary); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { top: 0; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── Topbar ──────────────────────────────────────────── */
.topbar {
  background: var(--bg-soft);
  font-size: 0.85rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a { color: var(--ink-2); transition: color .2s; }
.topbar a:hover { color: var(--primary); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar i { color: var(--ink-2); }
@media (max-width: 700px) {
  .topbar .hide-mobile { display: none; }
}

/* ─── Navbar ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: #1A1A1A; font-size: 1.5rem;
  flex-shrink: 0;
}
.logo-text strong {
  display: block; font-size: 1rem; letter-spacing: 1.5px;
  font-weight: 800; text-transform: uppercase; color: var(--ink);
}
.logo-text span {
  display: block; font-size: 0.78rem; color: var(--ink-3); margin-top: 2px; font-weight: 500;
}

.navbar-links { display: none; gap: 36px; }
@media (min-width: 1024px) { .navbar-links { display: flex; } }
.navbar-links a {
  color: var(--ink); font-size: 0.95rem; font-weight: 600; padding: 6px 0;
  position: relative; transition: color .2s;
}
.navbar-links a.active, .navbar-links a:hover { color: var(--gold-deep); }
.navbar-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  transition: transform .2s, background .2s, box-shadow .2s;
  box-shadow: 0 6px 14px rgba(245, 200, 66, 0.3);
}
.cart-btn:hover { transform: scale(1.05); background: var(--gold-deep); }
.cart-btn .cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #1A1A1A; color: #fff;
  border-radius: 50%; min-width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; padding: 0 6px;
}

.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 10px; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; inset: 0; background: rgba(255,255,255,0.98);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px; z-index: 999; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.mobile-menu a:hover { color: var(--primary); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--bg-soft);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: end; min-height: 560px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1.2fr; gap: 40px; min-height: 640px; }
}
.hero-text { padding: 40px 0 80px; }
.hero-text h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-text p {
  color: var(--ink-2); font-size: 1.05rem; max-width: 460px; margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-purple); color: #fff;
  padding: 16px 32px; font-size: 0.95rem; font-weight: 700;
  border-radius: var(--radius-sm);
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 10px 24px rgba(91, 61, 190, 0.3);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(91, 61, 190, 0.4); }
.hero-image { position: relative; align-self: end; }
.hero-image img {
  width: 100%; height: auto; max-height: 640px; object-fit: contain; object-position: bottom;
}

/* ─── Section base ────────────────────────────────────── */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-header {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap;
  gap: 16px; margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800;
}
.section-tabs { display: flex; gap: 24px; flex-wrap: wrap; }
.section-tabs button {
  font-size: 0.84rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink-3); padding: 6px 0;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.section-tabs button:hover { color: var(--ink); }
.section-tabs button.active { color: var(--accent-purple); border-bottom-color: var(--accent-purple); }

/* ─── 3 categorías destacadas ─────────────────────────── */
.cats3 { padding: 0; background: var(--bg); }
.cats3-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .cats3-grid { grid-template-columns: repeat(3, 1fr); } }

.cat3 {
  position: relative; aspect-ratio: 4/5;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 36px 24px;
  overflow: hidden;
  text-align: center;
}
.cat3-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 14rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.92);
  z-index: 1;
}
.cat3-img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 78%; max-width: 320px; aspect-ratio: 1/1;
  object-fit: cover; z-index: 2;
  border-radius: 50% 50% 0 0;
  background: rgba(255,255,255,0.15);
}
.cat3-info { position: relative; z-index: 3; padding-top: 24px; }
.cat3-info .label {
  display: block; font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.cat3-info h3 { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.cat3-info .btn {
  display: inline-block; background: var(--accent-purple); color: #fff;
  padding: 11px 24px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .2s, background .2s;
}
.cat3-info .btn:hover { transform: translateY(-2px); }
.cat3.bg-yellow { background: var(--gold); }
.cat3.bg-yellow .cat3-letter { color: rgba(255,255,255,0.7); }
.cat3.bg-yellow .cat3-info .label { color: var(--accent-purple); text-shadow: none; }
.cat3.bg-yellow .cat3-info h3 { color: var(--ink); }
.cat3.bg-yellow .cat3-info .btn { background: var(--accent-purple); }
.cat3.bg-purple { background: var(--accent-purple); }
.cat3.bg-purple .cat3-letter { color: rgba(255,255,255,0.18); }
.cat3.bg-purple .cat3-info .btn { background: var(--accent-teal); }
.cat3.bg-teal { background: var(--accent-teal); }
.cat3.bg-teal .cat3-letter { color: rgba(255,255,255,0.18); }
.cat3.bg-teal .cat3-info .btn { background: var(--accent-purple); }

/* ─── 4 mini banners ──────────────────────────────────── */
.banners4 { padding: 96px 0; background: var(--bg); }
.banners4-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .banners4-grid { grid-template-columns: 1fr 1fr; } }

.banner4 {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-soft);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 220px;
  transition: transform .25s, box-shadow .25s;
}
.banner4:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.banner4-img {
  position: relative; overflow: hidden;
  background: var(--tone, var(--accent-teal));
}
.banner4-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.banner4-body {
  background: var(--bg-soft);
  padding: 28px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.banner4-body h3 { font-size: 1.7rem; font-weight: 800; color: var(--ink); }
.banner4-body p { color: var(--ink-3); font-size: 0.92rem; margin-bottom: 8px; }
.banner4-body .price {
  display: flex; align-items: baseline; gap: 8px;
  color: var(--tone, var(--accent-teal)); font-weight: 700;
}
.banner4-body .price strong { font-size: 1.7rem; font-weight: 800; }
.banner4-body .price small { color: var(--ink-3); font-weight: 500; font-size: 0.85rem; }

.banner4.tone-teal   { --tone: var(--accent-teal); }
.banner4.tone-orange { --tone: var(--accent-orange); }
.banner4.tone-coral  { --tone: var(--accent-coral); }
.banner4.tone-blue   { --tone: var(--accent-blue); }

/* ─── Productos / bestseller ──────────────────────────── */
.productos { padding: 96px 0; background: var(--bg); }
.productos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
@media (min-width: 768px) { .productos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .productos-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.producto {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  text-align: left;
}
.producto:hover { transform: translateY(-6px); }
.producto:hover .add-btn { opacity: 1; transform: translateY(0); }

.producto-img {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.producto-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.producto:hover .producto-img img { transform: scale(1.04); }

.producto-badge {
  position: absolute; top: 14px; left: 14px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: #fff; z-index: 2;
}
.producto-badge.sale { background: var(--accent-coral); }
.producto-badge.hot  { background: var(--accent-teal); }

.add-btn {
  position: absolute; bottom: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: 0 8px 16px rgba(91,61,190,0.3);
}
.add-btn:hover { background: var(--primary); }
@media (max-width: 1024px) { .add-btn { opacity: 1; transform: none; } }

.producto-body {
  padding: 18px 4px 4px;
  display: flex; flex-direction: column; gap: 6px;
}
.producto-body h3 {
  font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.producto-body .meta { font-size: 0.85rem; color: var(--ink-3); }
.producto-body .price {
  margin-top: 6px; color: var(--accent-purple); font-weight: 800; font-size: 1.15rem;
}
.producto-body .price del { color: var(--ink-3); font-size: 0.85rem; font-weight: 600; margin-right: 8px; }

/* ─── Deal of the day ─────────────────────────────────── */
.deal { padding: 96px 0; background: var(--bg-soft); }
.deal-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: stretch;
}
@media (min-width: 900px) { .deal-grid { grid-template-columns: 1fr 2fr; } }

.deal-card {
  background: var(--accent-orange);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.deal-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.deal-card .meta { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 14px; }
.deal-card .price { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.deal-card .add-btn-static {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-purple); color: #fff;
  padding: 12px 26px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius-sm); margin-bottom: 22px;
  transition: transform .2s, background .2s;
}
.deal-card .add-btn-static:hover { background: var(--primary); transform: translateY(-2px); }
.deal-card img { width: 75%; max-width: 260px; height: auto; margin-top: auto; }

.deal-main {
  background: var(--accent-teal);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center; position: relative; overflow: hidden; min-height: 360px;
  color: #fff;
}
@media (min-width: 700px) { .deal-main { grid-template-columns: 1.2fr 1fr; } }

.countdown { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.countdown-cell {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 14px 6px 10px;
  text-align: center; min-width: 78px; flex: 1;
}
.countdown-cell strong {
  display: block; font-size: 1.9rem; font-weight: 900;
  color: var(--accent-teal); line-height: 1;
}
.countdown-cell span {
  font-size: 0.7rem; color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 4px; display: block;
}
.deal-main h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: #fff; margin-bottom: 8px;
}
.deal-main .product-name { color: rgba(255,255,255,0.95); margin-bottom: 4px; font-size: 1.05rem; font-weight: 600; }
.deal-main .product-price { color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 22px; }
.deal-main .product-price small { font-weight: 500; opacity: 0.7; text-decoration: line-through; margin-left: 8px; font-size: 0.85em; }
.deal-main .deal-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-purple); color: #fff;
  padding: 13px 26px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .2s, background .2s;
}
.deal-main .deal-cta:hover { background: var(--primary); transform: translateY(-2px); }
.deal-main-img img { width: 100%; height: auto; max-height: 320px; object-fit: contain; }

/* ─── Blog ────────────────────────────────────────────── */
.blog { padding: 96px 0; background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }

.blog-card {
  display: flex; flex-direction: column; gap: 18px;
}
.blog-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .4s;
}
.blog-card:hover img { transform: scale(1.02); }
.blog-meta { font-size: 0.82rem; color: var(--ink-3); font-weight: 600; }
.blog-meta strong { color: var(--ink-2); }
.blog-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--ink); line-height: 1.3; }
.blog-card p { color: var(--ink-2); font-size: 0.95rem; }
.blog-card .read-more {
  align-self: flex-start;
  background: var(--accent-purple); color: #fff;
  padding: 12px 26px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .2s, background .2s;
}
.blog-card .read-more:hover { background: var(--primary); transform: translateY(-2px); }

/* ─── Brands ──────────────────────────────────────────── */
.brands {
  padding: 64px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.brands-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  align-items: center;
}
@media (min-width: 768px) { .brands-row { grid-template-columns: repeat(5, 1fr); } }
.brand-item {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 4px; font-weight: 700;
  color: var(--ink-3); opacity: 0.55;
  text-align: center; text-transform: uppercase;
  transition: opacity .2s, color .2s;
}
.brand-item:hover { opacity: 1; color: var(--ink); }

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: #1A1A1A; color: #BFBFBF;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr 1.5fr; } }

.footer-brand .logo-block { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand .logo-text strong { color: #fff; }
.footer-brand .logo-text span { color: #888; }
.footer-brand p { color: #999; font-size: 0.92rem; max-width: 280px; }

.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; border: 1px solid #333; color: #BFBFBF;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: #BFBFBF; font-size: 0.92rem; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p, .footer-col address {
  color: #BFBFBF; font-size: 0.92rem; font-style: normal; margin-bottom: 12px; line-height: 1.7;
}

.subscribe-form {
  display: flex; margin-top: 16px;
  background: #2A2A2A; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid #333;
}
.subscribe-form input {
  flex: 1; background: transparent; border: none;
  padding: 13px 16px; color: #fff; font-family: inherit; font-size: 0.92rem; outline: none;
}
.subscribe-form input::placeholder { color: #777; }
.subscribe-form button {
  background: var(--gold); color: var(--ink);
  padding: 0 22px; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
  transition: background .2s;
}
.subscribe-form button:hover { background: var(--gold-deep); }

.footer-bottom {
  border-top: 1px solid #2A2A2A;
  padding: 22px 0; text-align: center; color: #777; font-size: 0.85rem;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── WhatsApp float ──────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.7rem; z-index: 998;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  animation: wapulse 2.4s ease-in-out infinite;
}
@keyframes wapulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7); }
}

/* ─── Cart drawer ─────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100;
  display: none; justify-content: flex-end;
}
.cart-overlay.open { display: flex; }
.cart-panel {
  width: 100%; max-width: 420px;
  background: #fff;
  display: flex; flex-direction: column;
  animation: slidein .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes slidein { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart-head {
  padding: 22px 24px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-head h3 { color: var(--ink); font-size: 1.2rem; }
.cart-head button { color: var(--ink-2); font-size: 1.6rem; line-height: 1; padding: 0 4px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--ink-3); text-align: center; padding: 60px 0; }
.cart-empty i { font-size: 3rem; color: var(--line-2); margin-bottom: 16px; display: block; }
.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.ci-info h4 { color: var(--ink); font-size: 0.95rem; margin-bottom: 6px; font-weight: 700; }
.ci-qty { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 0.85rem; }
.ci-qty button {
  background: var(--bg-soft); width: 24px; height: 24px; border-radius: 4px;
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.ci-qty button:hover { background: var(--line-2); }
.ci-price { color: var(--accent-purple); font-weight: 800; }
.ci-remove { color: var(--ink-3); font-size: 0.78rem; margin-top: 4px; cursor: pointer; }
.ci-remove:hover { color: var(--primary); }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span { color: var(--ink-2); }
.cart-total strong { color: var(--ink); font-size: 1.4rem; font-weight: 800; }
.cart-checkout {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: #25D366; color: #fff;
  padding: 15px; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: background .2s, transform .2s;
}
.cart-checkout:hover { background: #1da851; transform: translateY(-1px); }
