/* ═══════════════════════════════════════════
   Home v3 — Tablet & Desktop (min-width: 600px)
═══════════════════════════════════════════ */

body { padding-top: 54px; }

.v3-main { max-width: 1280px; margin: 0 auto; }

/* ── HERO ─────────────────────────────────── */

.v3-hero { padding: 60px 0 68px; }

.v3-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.v3-hero-title { font-size: 44px; }
.v3-hero-sub { font-size: 15px; margin-bottom: 28px; }

.v3-search-form {
  max-width: 560px;
  padding: 8px 8px 8px 20px;
  margin-bottom: 24px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.v3-search-input { font-size: 15px; }
.v3-search-btn { padding: 10px 28px; font-size: 14px; }

/* ── SECTION ──────────────────────────────── */

.v3-section-title { font-size: 18px; }

/* ── CARRUSEL — DESKTOP: expand horizontal ── */

.v3-offers { padding: 28px 40px; }

/* Sobreescribir el scroll-horizontal de mobile */
.v3-carousel {
  overflow-x: visible;
  scroll-snap-type: none;
  height: 240px;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 0;
}

.v3-car-item {
  flex: 0.85;
  flex-direction: column;
  scroll-snap-align: none;
  height: 280px;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  transition: flex 0.42s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.v3-car-item.active {
  flex: 3;
}

.v3-car-img {
  width: 100%;
  height: 280px;
  padding: 12px;
  transition: height 0.42s ease;
}

.v3-car-item.active .v3-car-img {
  height: 155px;
  padding: 10px 16px;
}

/* Badge: oculto en no-activo, visible en activo */
.v3-car-badge {
  opacity: 0;
  transition: opacity 0.2s 0.2s;
}

.v3-car-item.active .v3-car-badge { opacity: 1; }

/* Info: oculta en no-activo, animada en activo */
.v3-car-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 16px;
  transition: max-height 0.35s ease, opacity 0.22s 0.15s ease;
}

.v3-car-item.active .v3-car-info {
  max-height: 140px;
  opacity: 1;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

/* Color del texto siempre blanco en desktop (el fondo es primario) */
.v3-car-name { color: #fff; font-size: 17px; }
.v3-car-price-old { color: #fff; font-size: 11px; }
.v3-car-price-sale { color: #fff; font-size: 24px; }
.v3-car-cta { display: none; }

.v3-car-item.active .v3-car-cta {
  display: flex;
  width: 36px;
  height: 36px;
}

/* Dots: ocultos en desktop */
.v3-car-dots { display: none; }

@media (min-width: 1024px) {
  body { padding-top: 62px; }
}

@media (min-width: 1200px) {
  .v3-main { max-width: 1360px; }
  .v3-hero { padding: 72px 0 80px; }
  .v3-hero-title { font-size: 52px; }
  .v3-offers { padding: 32px 56px; }
  /* productos-populares viene de Home.desktop.css */
}
