/* ============================================================================
 *  STORE.CSS — estilos propios de la home tipo tienda (raíz del sitio).
 *  Se carga después de styles.css y reutiliza sus variables/tokens de marca.
 * ============================================================================ */

/* ---------- HERO DE MARCA ---------- */
.store-hero {
  position: relative;
  padding: 148px 0 64px;
  overflow: hidden;
  text-align: center;
}
.store-hero .container { position: relative; z-index: 2; max-width: 760px; }
.store-hero h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); margin-bottom: 16px; }
.store-hero h1 em { font-style: italic; color: var(--acento); }
.store-hero .sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.store-hero .trust-row { justify-content: center; margin-top: 26px; }

/* ---------- GRILLA DE PRODUCTOS ---------- */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 720px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
  --card-acento: var(--acento);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.product-card-cover-link { align-self: center; }
.product-card-cover {
  width: 132px;
  margin-bottom: 20px;
  filter: drop-shadow(0 14px 26px rgba(45,42,38,.22));
  transition: transform .3s var(--ease);
}
.product-card:hover .product-card-cover { transform: translateY(-3px) rotate(-1deg); }

.product-card-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-acento);
  background: color-mix(in srgb, var(--card-acento) 12%, transparent);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

.product-card h3 { font-size: 1.3rem; line-height: 1.25; margin-bottom: 8px; }
.product-card h3 a { color: inherit; text-decoration: none; }
.product-card h3 a:hover { color: var(--card-acento); }
.product-card p.desc { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }

.product-card-stats {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--rule);
}
.product-card-stats b { color: var(--ink); font-family: var(--serif); }

.product-card-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.product-card-price .old { text-decoration: line-through; color: var(--ink-soft); font-size: 0.95rem; }
.product-card-price .now { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: var(--card-acento); }

.product-card-actions { display: flex; flex-direction: column; gap: 10px; }

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--card-acento) 0%, color-mix(in srgb, var(--card-acento) 75%, black) 100%);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.product-card-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px var(--card-acento); }

.product-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 20px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color .2s ease;
}
.product-card-link:hover { color: var(--card-acento); }
.product-card-link .arrow { transition: transform .25s var(--ease); }
.product-card-link:hover .arrow { transform: translateX(3px); }

/* ---------- FAQ CORTA ---------- */
.store-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 640px; margin: 0 auto; }
.store-faq-item { background: #fff; border: 1px solid var(--rule); border-radius: 14px; padding: 18px 22px; }
.store-faq-item h4 { font-size: 0.98rem; margin-bottom: 6px; }
.store-faq-item p { font-size: 0.88rem; color: var(--ink-soft); }
