/* ═══════════════════════════════════════════════════════════════
   CAPO'S LUXURY — HOME (index.css)
   Refactorizado limpio, moderno, sin herencias anticuadas
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   2. SECTIONS HEADERS
   ───────────────────────────────────────────────────────────── */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.link-more {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.link-more:hover {
  color: var(--primary-600);
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(350px, 60vh, 800px);
  overflow: hidden;
  background: #0c0700;
  margin-bottom: 0;
}

.hc-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.hc-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}

.hc-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(10, 6, 0, 0.75) 0%,
    rgba(10, 6, 0, 0.35) 50%,
    rgba(10, 6, 0, 0.65) 100%
  );
  padding: 20px;
}

.hc-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s 0.2s ease-out, transform 0.75s 0.2s ease-out;
}

.hc-slide.is-active .hc-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: clamp(60px, 10vw, 100px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hc-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.hc-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: 1;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
  margin: 0;
  color: #ffffff !important; /* Forzado a blanco puro */
}

.hc-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}

.hc-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn-primary,
.btn-ghost {
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Hero Controls */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hc-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary);
}

.hc-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.hc-prev {
  left: 20px;
}

.hc-next {
  right: 20px;
}

.hc-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hc-dot.is-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   2. BRANDS STRIP
   ───────────────────────────────────────────────────────────── */

.brands-strip {
  padding: clamp(32px, 5vw, 52px) clamp(16px, 4vw, 48px);
  border-top: 1px solid #e5ddd0;
  border-bottom: 1px solid #e5ddd0;
  background: #fff;
  overflow: hidden;
}

.brands-track {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center; /* Centrar marcas */
}

.brands-track::-webkit-scrollbar {
  display: none;
}

.brand-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
}

.brand-circle {
  width: clamp(72px, 10vw, 100px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #f9f7f3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.brand-circle:hover {
  border-color: var(--primary);
}

.brand-circle img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.brand-name {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 400; /* Sin negrita */
  letter-spacing: var(--ls-wide);
  color: #000000; /* Color negro */
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────
   3. DEALS BANNER
   ───────────────────────────────────────────────────────────── */

.deals-banner {
  position: relative;
  overflow: hidden;
  background: #0c0700;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 610px; /* Altura ajustada a 610px como se solicitó */
}

.deals-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/home/imgmedio.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.deals-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 7, 0, 0.95) 0%,
    rgba(12, 7, 0, 0.3) 50%,
    rgba(12, 7, 0, 0.95) 100%
  );
  z-index: 2;
}

.deals-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.deals-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.deals-label {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
}

.deals-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0;
  letter-spacing: var(--ls-tight);
}

.deals-title em {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.deals-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
}

.deals-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #0c0700;
  line-height: 1;
  flex-shrink: 0;
  border: 5px solid rgba(255, 255, 255, 0.15);
}

.deals-badge sup {
  font-size: 20px;
  margin-left: 2px;
}
  font-weight: 700;
  color: #0c0700;
  line-height: 1;
  flex-shrink: 0;
}

.deals-badge sup {
  font-size: 16px;
}

.deals-inner .btn-dark {
  background: #ffffff !important; 
  color: #0c0700 !important; 
  padding: 13px 29px !important; /* Aumentado un 30% como se solicitó */
  border-radius: 4px !important;
  font-weight: 400 !important;
  font-size: 14px !important; 
  letter-spacing: 0.2em !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: 1px solid #ffffff !important;
}

.deals-inner .btn-dark:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
}

/* ─────────────────────────────────────────────────────────────
   4. PROMO GRID
   ───────────────────────────────────────────────────────────── */

.promos-section {
  max-width: 1400px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  padding: 0 clamp(16px, 4vw, 48px);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 20px;
  aspect-ratio: 2 / 1; /* 🔑 Control real de altura: hace todo más bajo y compacto */
}

.pm-left {
  height: 100%;
}

.pm-right-stack {
  display: grid;
  grid-template-rows: 1fr 1fr; /* Dos filas iguales */
  gap: 20px;
  height: 100%;
}

.pm-rt {
  /* Contenedor grid child */
}

.pm-rb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #1a1206;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

/* pm-left ya no necesita aspect-ratio individual porque depende del contenedor padre */
.promo-card.pm-left {
  aspect-ratio: auto;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajustar imagen al contenedor */
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-card:hover img {
  transform: scale(1.08);
}

.promo-ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(0deg, rgba(10, 6, 0, 0.85) 0%, transparent 60%);
  border-radius: 4px;
}

.promo-ov--light {
  background: linear-gradient(0deg, rgba(250, 246, 240, 0.96) 0%, transparent 60%);
}

.promo-brand {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400; /* Sin negrita */
  color: #000000; /* Color negro */
  letter-spacing: 0.03em;
  line-height: 1;
}

.promo-brand--dark {
  color: #0c0700;
}

.promo-model {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

.promo-model--dark {
  color: #5a5a5a;
}

.promo-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
}

.promo-price--dark {
  color: #0c0700;
}

.promo-price strong {
  font-weight: 700;
}

.promo-badge-red {
  display: inline-flex;
  background: #c0392b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(192, 57, 43, 0.2);
}

.promo-badge-gold {
  display: inline-flex;
  background: var(--primary);
  color: #0c0700;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 100px; /* Pill shape */
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────────────────────
   5. ARRIVALS SECTION
   ───────────────────────────────────────────────────────────── */

.arrivals-section {
  margin-bottom: clamp(48px, 6vw, 80px);
  padding: clamp(36px, 4vw, 52px) clamp(16px, 4vw, 48px);
  background: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-head > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}

.heading {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #0c0700;
  line-height: 1;
  margin: 0;
}

.link-more {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.link-more:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.arrivals-slider {
  position: relative;
  overflow: hidden;
}

.arrivals-track {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.arrivals-track::-webkit-scrollbar {
  display: none;
}

.arrival-card {
  flex: 0 0 clamp(220px, 35vw, 360px);
  scroll-snap-align: start;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.arrival-card:hover {
  transform: translateY(-4px);
}

.arrival-img {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f0ebe5;
  overflow: hidden;
}

.arrival-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arrival-card:hover .arrival-img img {
  transform: scale(1.05);
}

.arrival-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  background: linear-gradient(0deg, rgba(10, 6, 0, 0.9) 0%, rgba(10, 6, 0, 0.3) 50%, transparent 80%);
  border-radius: 4px;
}

.arrival-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  line-height: 1;
}

.arrival-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arrival-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  color: #fff;
  margin-top: 6px;
}

.arrival-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.arrival-card:hover .arrival-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   6. FEATURED PRODUCTS
   ───────────────────────────────────────────────────────────── */

.featured-section {
  background: #f5ede0;
  padding: clamp(48px, 6vw, 72px) clamp(16px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.prod-slider {
  position: relative;
  overflow: hidden;
}

.prod-track {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 8px;
}

.prod-track::-webkit-scrollbar {
  display: none;
}

.pcard {
  flex: 0 0 clamp(200px, 28vw, 320px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pcard:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.pcard-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  background: #f0ebe5;
  overflow: hidden;
  text-decoration: none;
}

.pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pcard:hover .pcard-img-wrap img {
  transform: scale(1.06);
}

.pcard-body {
  padding: clamp(12px, 2vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pcard-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
}

.pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: #0c0700;
  line-height: 1.3;
  margin: 0;
}

.pcard-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 4px 0 0 0;
}

.pcard-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.pcard-btn-out,
.pcard-btn-gold {
  flex: 1;
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.pcard-btn-out {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.pcard-btn-out:hover {
  background: var(--primary);
  color: #0c0700;
}

.pcard-btn-gold {
  background: var(--primary);
  color: #0c0700;
}

.pcard-btn-gold:hover {
  background: var(--primary);
}

/* ─────────────────────────────────────────────────────────────
   7. CATEGORIES
   ───────────────────────────────────────────────────────────── */

.cats-section {
  padding: clamp(12px, 2vw, 24px) clamp(16px, 4vw, 48px); /* Reducido drásticamente el padding vertical */
  background: #fff;
  margin-bottom: clamp(24px, 4vw, 40px); /* También reducimos el margen inferior */
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  max-width: 1400px;
  margin: 0 auto;
}

.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #f0f0f0; /* Borde permanente sutil */
  background: #ffffff;
}

.cat-tile:hover {
  border-color: var(--primary); /* El borde se vuelve dorado al pasar el mouse */
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.cat-icon {
  width: clamp(50px, 7vw, 72px); /* Reducido un 10% (de 56-80px a 50-72px) */
  height: clamp(50px, 7vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.cat-tile:hover .cat-icon {
  transform: scale(1.05); /* Pequeño efecto en el icono al hacer hover */
}

.cat-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1;
}

.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #0c0700;
  margin: 0;
}

.cat-tile:hover .cat-name {
  color: var(--primary);
}

/* BOTON PRIVATE BANNER */ 
.private-banner .btn-gold { 
  display: inline-block; 
  text-decoration: none; 
  font-size: 14px; 
  padding: 10px 18px; 
  border-radius: 6px; 
  background: #d4af37; 
  color: #000; 
  font-weight: 500; 
  transition: all .3s ease; 
} 

.private-banner .btn-gold:hover { 
  background: #b8962e; 
} 


/* BOTONES OFFER FINAL */ 
.offer-final a { 
  display: inline-block; 
  text-decoration: none; 
  font-size: 14px; 
  padding: 10px 18px; 
  border-radius: 6px; 
} 

.offer-final a:first-child { 
  background: #d4af37; 
  color: #000; 
} 

.offer-final a:last-child { 
  border: 1px solid #ffffff; 
  color: #ffffff; 
}

.cat-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d4af37;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.cat-tile:hover .cat-link {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   8. PRIVATE BANNER
   ───────────────────────────────────────────────────────────── */

.private-banner {
  background: #000000;
  padding: clamp(44px, 6vw, 68px) clamp(16px, 4vw, 48px);
  margin-bottom: 0; /* Eliminado espacio innecesario debajo */
}

.private-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.private-text {
  flex: 1;
  min-width: 280px;
}

.private-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.private-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 0; /* Sin margen para evitar espacio innecesario */
}

.btn-gold {
  background: #d4af37;
  color: #0c0700;
  flex-shrink: 0;
}

.btn-gold:hover {
  background: #e6c355;
}

/* ─────────────────────────────────────────────────────────────
   9. OFFER FINAL
   ───────────────────────────────────────────────────────────── */

.offer-final {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* .offer-overlay original removido para usar la versión al final del archivo */

.offer-inner {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
}

.offer-text {
  flex: 1;
  min-width: 280px;
}

.offer-text .eyebrow {
  color: #d4af37;
}

.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 8px 0 12px 0;
}

.offer-title em {
  color: #d4af37;
  font-style: italic;
}

.offer-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  line-height: 1.7;
  margin: 0;
}

.offer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
}

/* ─────────────────────────────────────────────────────────────
   10. SLIDER CONTROLS
   ───────────────────────────────────────────────────────────── */

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0c0700;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.12);
  border-color: #d4af37;
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.sl-prev {
  left: clamp(8px, 2vw, 20px);
}

.sl-next {
  right: clamp(8px, 2vw, 20px);
}

/* ─────────────────────────────────────────────────────────────
   11. RESPONSIVE - TABLET
   ───────────────────────────────────────────────────────────── */

/* Responsive Promos */
@media (max-width: 1024px) {
  .promo-grid { 
    grid-template-columns: 1fr; 
    aspect-ratio: auto; /* Dejar que crezca verticalmente en móvil */
  }
  .pm-left {
    aspect-ratio: 16 / 9; /* Proporción horizontal para móvil */
  }
  .pm-right-stack {
    aspect-ratio: auto;
  }
}

@media (max-width: 768px) {
  .promo-grid { gap: 12px; }
  .pm-right-stack { gap: 12px; }
  .pm-rb-grid { gap: 12px; }
}

@media (max-width: 480px) {
  .pm-rb-grid {
    grid-template-columns: 1fr; /* Una columna para tarjetas pequeñas en móvil */
  }
}

@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pm-left {
    grid-row: auto;
    min-height: 400px;
  }

  .deals-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .deals-badge {
    align-self: flex-start;
  }

  .private-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .btn-gold {
    width: 100%;
    text-align: center;
  }

  .offer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-actions {
    width: 100%;
  }

  .offer-actions > * {
    flex: 1;
  }
}

/* ─────────────────────────────────────────────────────────────
   12. RESPONSIVE - MOBILE
   ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-carousel {
    height: clamp(300px, 50vh, 500px);
  }

  .hc-arrow {
    width: 40px;
    height: 40px;
  }

  .hc-arrow svg {
    width: 18px;
    height: 18px;
  }

  .hc-prev {
    left: 12px;
  }

  .hc-next {
    right: 12px;
  }

  .hc-actions {
    gap: 8px;
    margin-top: 24px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-dark {
    padding: 12px 20px;
    font-size: 11px;
  }

  .brands-track {
    gap: 16px;
    justify-content: flex-start;
  }

  .brand-circle {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 10px;
  }

  .promos-section {
    margin-bottom: 40px;
  }

  .promo-card {
    min-height: 300px;
  }

  .arrivals-section,
  .featured-section {
    padding: 28px 16px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cat-tile {
    padding: 16px 12px;
  }

  .cat-icon {
    width: 48px;
    height: 48px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
  }

  .sl-prev {
    left: 8px;
  }

  .sl-next {
    right: 8px;
  }

  .offer-final {
    background-attachment: scroll;
    min-height: 360px;
  }
}

/* ─────────────────────────────────────────────────────────────
   13. RESPONSIVE - SMALL MOBILE
   ───────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .hero-carousel {
    height: clamp(250px, 45vh, 400px);
  }

  .hc-title {
    letter-spacing: 0.02em;
  }

  .hc-sub {
    letter-spacing: 0.15em;
  }

  .hc-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .deals-inner {
    text-align: center;
  }

  .deals-badge {
    align-self: auto;
    margin: 0 auto;
  }

  .promos-section {
    margin-bottom: 32px;
  }

  .promo-card {
    min-height: 240px;
  }

  .cats-grid {
    grid-template-columns: 1fr;
  }

  .cat-tile {
    padding: 14px 8px;
    gap: 10px;
  }

  .private-banner {
    padding: 32px 16px;
  }

  .private-text h2 {
    font-size: clamp(18px, 4vw, 28px);
  }

  .offer-text p {
    font-size: 13px;
  }

  .btn-gold,
  .btn-dark,
  .btn-outline-white {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hc-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .hc-content {
    padding: 0 12px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 10px 16px;
    font-size: 10px;
  }

  .heading {
    font-size: clamp(20px, 5vw, 32px);
  }

  .pcard {
    flex: 0 0 clamp(160px, 40vw, 220px);
  }
}

/* ─────────────────────────────────────────────────────────────
   14. UTILITIES
   ───────────────────────────────────────────────────────────── */

.smart-header {
  transition: transform 0.3s ease;
}

.smart-header.header--hidden {
  transform: translateY(-100%);
}

.is-dragging {
  scroll-behavior: auto;
}

.offer-final { 
  background: none !important; /* Eliminamos fondo del padre para usar solo el overlay */
}

.offer-overlay { 
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  /* Mezcla elegante de dorado y negro sobre la imagen */
  background: 
    linear-gradient( 
      135deg,
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(212, 175, 55, 0.4) 100%
    ), 
    url("../assets/img/home/imgmedio.jpg"); 
    
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
} 


