/* ═══════════════════════════════════════════════════
   Almaria Perfumes — Hoja de estilos
   Estilo: minimalista, elegante, responsive
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #241a1c;
  --ink-soft: #6d6062;
  --ink-faint: #a69598;
  --vino: #722f37;
  --vino-claro: #c9909a;
  --vino-oscuro: #46161e;
  --line: #eae7e8;
  --shadow: 0 2px 12px rgba(28, 26, 23, 0.06);
  --shadow-hover: 0 12px 32px rgba(28, 26, 23, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ══════════ FONDO DECORATIVO ANIMADO ══════════ */

.bg-deco {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* Halos suaves tipo bokeh */
.bg-deco .halo {
  position: absolute;
  border-radius: 50%;
  background: var(--vino);
  filter: blur(70px);
  opacity: 0.05;
  animation: halo-flotar 26s ease-in-out infinite alternate;
}

.halo-1 { width: 380px; height: 380px; top: -120px; right: -80px; }
.halo-2 { width: 300px; height: 300px; bottom: 8%; left: -110px; animation-delay: -9s; animation-duration: 32s; }
.halo-3 { width: 240px; height: 240px; top: 42%; right: 12%; opacity: 0.035; animation-delay: -18s; animation-duration: 38s; }

@keyframes halo-flotar {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-36px, 42px) scale(1.12); }
}

/* Puntos flotantes */
.bg-deco .punto {
  position: absolute;
  border-radius: 50%;
  background: var(--vino);
  opacity: 0.10;
  animation: punto-flotar 14s ease-in-out infinite alternate;
}

.bg-deco .punto.anillo {
  background: transparent;
  border: 1.5px solid var(--vino);
  opacity: 0.13;
}

.punto-1 { width: 10px; height: 10px; top: 16%; left: 7%; }
.punto-2 { width: 6px;  height: 6px;  top: 30%; left: 88%; animation-delay: -3s; animation-duration: 17s; }
.punto-3 { width: 14px; height: 14px; top: 62%; left: 5%;  animation-delay: -6s; animation-duration: 21s; }
.punto-4 { width: 8px;  height: 8px;  top: 76%; left: 92%; animation-delay: -9s; animation-duration: 15s; }
.punto-5 { width: 12px; height: 12px; top: 10%; left: 55%; animation-delay: -4s; animation-duration: 19s; }
.punto-6 { width: 7px;  height: 7px;  top: 48%; left: 96%; animation-delay: -12s; animation-duration: 23s; }
.punto-7 { width: 9px;  height: 9px;  top: 85%; left: 30%; animation-delay: -7s; animation-duration: 18s; }
.punto-8 { width: 5px;  height: 5px;  top: 22%; left: 26%; animation-delay: -10s; animation-duration: 16s; }
.punto-9 { width: 11px; height: 11px; top: 68%; left: 64%; animation-delay: -2s; animation-duration: 20s; }
.punto-10 { width: 6px; height: 6px;  top: 40%; left: 42%; animation-delay: -14s; animation-duration: 24s; }

@keyframes punto-flotar {
  from { transform: translate(0, 0); }
  50%  { transform: translate(12px, -26px); }
  to   { transform: translate(-10px, 18px); }
}

/* ══════════ HEADER ══════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vino);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--vino);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text em {
  font-style: italic;
  font-weight: 500;
  color: var(--vino);
}

/* Toggle Detal / Mayor */

.price-toggle {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow);
}

.price-toggle-btn {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.price-toggle-btn.is-active {
  background: var(--vino);
  color: #fff;
}

/* ══════════ HERO ══════════ */

.hero {
  text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--vino);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--vino);
}

.hero-subtitle {
  max-width: 46ch;
  margin: 0 auto 2.2rem;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

/* Barra de búsqueda */

.search-wrap {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--ink-faint);
  pointer-events: none;
}

.search-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem 3.2rem 1rem 3.4rem;
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-input::placeholder { color: var(--ink-faint); }

.search-input:focus {
  outline: none;
  border-color: var(--vino);
  box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.10);
}

.search-input::-webkit-search-cancel-button { display: none; }

.search-clear {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--line);
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-clear:hover { background: var(--vino-claro); color: var(--ink); }

/* ══════════ TOOLBAR / FILTROS ══════════ */

.catalog { padding-bottom: 5rem; }

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  padding: 1.5rem 0 1.2rem;
  border-top: 1px solid var(--line);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.select-wrap { position: relative; }

.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem 2.4rem 0.6rem 1rem;
  min-width: 210px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--vino);
}

.results-count {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.results-count strong { color: var(--ink); font-weight: 600; }

/* Chips de casas */

.brand-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scrollbar-width: none;
}

.brand-chips::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.chip:hover { border-color: var(--vino); color: var(--ink); }

.chip.is-active {
  background: var(--vino);
  border-color: var(--vino);
  color: #fff;
}

/* ══════════ GRID DE PRODUCTOS ══════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease;
  animation: card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--vino-claro);
  box-shadow: var(--shadow-hover);
}

/* Visual del producto (monograma sobre degradado) */

.card-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-monogram {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
  user-select: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .card-visual img,
.product-card:hover .card-monogram {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.badge-oferta {
  left: auto;
  right: 0.75rem;
  background: var(--vino);
  color: #fff;
}

.agotado-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(28, 26, 23, 0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.product-card.is-agotado .card-body { opacity: 0.55; }

.price-tachado {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-faint);
  margin-left: 0.3rem;
}

.badge-destacado {
  left: 0.75rem;
  right: auto;
  background: var(--vino);
  color: #fff;
}

/* Botón agregar al pedido */
.card-add {
  margin-top: 0.9rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--vino);
  background: transparent;
  border: 1.5px solid var(--vino);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.card-add:hover:not(:disabled) { background: var(--vino); color: #fff; }
.card-add.is-added { background: var(--vino); color: #fff; }
.card-add.just-added { transform: scale(0.96); }
.card-add:disabled {
  border-color: var(--line);
  color: var(--ink-faint);
  cursor: not-allowed;
}

/* ══════════ DESTACADOS ══════════ */
.featured {
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.featured-head { margin-bottom: 1.2rem; }

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
}

.featured-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 0.4rem;
  background: var(--vino);
  border-radius: 2px;
}

.featured-sub {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

.featured-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1.4rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.featured-track .product-card { scroll-snap-align: start; }

.featured-track::-webkit-scrollbar { height: 6px; }
.featured-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.product-card.is-featured {
  border-color: var(--vino-claro);
  box-shadow: 0 6px 22px rgba(114, 47, 55, 0.10);
}

/* ══════════ CARRITO ══════════ */
.cart-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 60;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: var(--vino);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.35);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cart-fab:hover { background: var(--vino-oscuro); transform: translateY(-3px); }
.cart-fab svg { width: 26px; height: 26px; }

.cart-fab-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--vino);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: pop 0.3s ease;
}

@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(28, 20, 22, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.cart-overlay.is-open { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.cart-close {
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-close:hover { color: var(--vino); }

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0.6rem 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-name { font-weight: 500; font-size: 0.95rem; line-height: 1.3; }
.cart-item-brand { font-size: 0.78rem; color: var(--ink-soft); font-weight: 300; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.3rem;
}

.cart-item-qty button {
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--vino);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cart-item-qty button:hover { background: rgba(114, 47, 55, 0.1); }
.cart-item-qty span { min-width: 1.2em; text-align: center; font-weight: 500; }

.cart-item-sub {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 3.4em;
  text-align: right;
}

.cart-empty {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  padding: 2rem;
}

.cart-empty-hint { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.3rem; }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 1.2rem 1.5rem calc(1.2rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.cart-total-row span { color: var(--ink-soft); font-size: 0.9rem; }
.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--vino);
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.cart-btn svg { width: 20px; height: 20px; }

.cart-btn-wa { background: #25d366; color: #fff; }
.cart-btn-wa:hover { background: #1fb457; }

.cart-btn-copy {
  background: var(--vino);
  color: #fff;
}
.cart-btn-copy:hover { background: var(--vino-oscuro); }
.cart-btn-copy.copied { background: var(--vino-oscuro); }

.cart-clear {
  border: none;
  background: transparent;
  color: var(--ink-faint);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.3rem;
  transition: color 0.2s ease;
}

.cart-clear:hover { color: var(--red, #a44444); }

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.1rem 1.2rem 1.25rem;
}

.card-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vino);
  margin-bottom: 0.3rem;
}

.card-name {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.9rem;
  transition: color 0.3s ease;
}

.product-card:hover .card-name { color: var(--vino); }

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.card-price-label {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.card-price {
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.card-price-alt {
  font-size: 0.78rem;
  color: var(--ink-faint);
  font-weight: 300;
  text-align: right;
}

/* ══════════ ESTADO VACÍO ══════════ */

.empty-state {
  text-align: center;
  padding: 4.5rem 1rem;
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--ink-faint);
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.empty-state p { color: var(--ink-soft); font-weight: 300; margin-bottom: 1.6rem; }

.btn-reset {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--vino);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-reset:hover { background: var(--vino-oscuro); }

/* ══════════ FOOTER ══════════ */

.site-footer {
  background: var(--vino-oscuro);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-brand em { font-style: italic; color: var(--vino-claro); }

.footer-note {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 1.4rem;
}

.footer-copy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); }

/* ══════════ RESPONSIVE ══════════ */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    gap: 0.6rem;
    padding-block: 0.7rem;
  }

  .toolbar { flex-direction: column; align-items: stretch; }

  .filter-select { width: 100%; }

  .results-count { margin-left: 0; }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.9rem;
  }

  .card-name { font-size: 0.94rem; }
  .card-price { font-size: 1.05rem; }
  .card-body { padding: 0.85rem 0.9rem 1rem; }
}

/* Respeta la preferencia de menos movimiento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
