/* ==============================================
   HIDER · home.css
   Ubicación: /frontend/css/home.css
   Descripción: Estilos para la página de inicio, incluyendo secciones como
   Hero · categorías · productos · promo · valores
   ============================================== */

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: calc(100vh - var(--header-h) - 42px);
  gap: 48px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px) 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(52px, 7.5vw, 100px);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--brown-deep);
  margin-top: 20px;
}

.hero-title em {
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ── Hero visual ─────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 72vh;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floater {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
  z-index: 3;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hero-floater:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-floater__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floater__name {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

.hero-floater__price {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Hero stats ──────────────────────────────── */
.hero-stats {
  background: var(--white);
  border-top: 1px solid var(--line-soft);
  position: relative;
  z-index: 2;
}

.hero-stat {
  padding: 28px 0;
}

.hero-stat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-stat__item {
  padding: 0 24px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.hero-stat__item:last-child {
  border-right: 0;
}

.hero-stat__n {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brown);
  line-height: 1;
  font-weight: 500;
}

.hero-stat__l {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── Categorías ──────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.cat-card .img-zoom {
  position: absolute;
  inset: 0;
}

.cat-card .img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(30,18,8,.72));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 28px 32px;
  color: white;
}

.cat-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 1;
  color: #fffaf2;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75), 0 0 2px rgba(0,0,0,0.9);
}

.cat-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.cat-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  color: #fffaf2;
  flex: 1;
  min-width: 0;
  text-shadow: 0 3px 16px rgba(0,0,0,0.78), 0 0 2px rgba(0,0,0,0.95);
}

.cat-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    background 0.25s var(--ease);
  flex-shrink: 0;
}

.cat-card:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg, transparent 35%, rgba(30,18,8,.72));
}

/* ── Secciones ───────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

#categories {
  padding-top: clamp(36px, 5vw, 56px);
}

.section-cream { background: var(--cream); }

.section-cream .eyebrow,
.section-cream .text-muted {
  color: #6f4d3b;
}

.section-ink {
  background: var(--brown-deep);
  color: var(--cream);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-title {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--brown-deep);
  margin-top: 12px;
}

.section-title em {
  font-style: italic;
  color: var(--brown);
}

.section-ink .section-title { color: var(--cream); }
.section-ink .eyebrow { color: var(--gold-light); }
.section-ink .eyebrow::before { background: var(--gold-light); }

/* ── Promo banner ────────────────────────────── */
.promo-banner {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: 360px;
}

.promo-copy {
  padding: 60px 0;
}

.promo-title {
  font-size: clamp(34px, 5vw, 60px);
  color: var(--brown-deep);
  line-height: 1.05;
}

.promo-title em {
  font-style: italic;
  color: var(--brown);
}

.promo-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Valores ─────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.value-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: background var(--duration);
}

.value-item:last-child { border-right: 0; }
.value-item:hover { background: var(--cream); }

.value-icon {
  color: var(--gold);
  margin-bottom: 18px;
}

.value-icon svg {
  width: 34px;
  height: 34px;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Testimonios ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--duration);
}

.testimonial:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.45;
  color: var(--brown-deep);
  font-style: italic;
  flex: 1;
}

.testimonial-meta {
  font-size: 13px;
  color: var(--muted);
}

.testimonial-meta strong {
  color: var(--ink);
  font-weight: 500;
}

/* ── Quote ───────────────────────────────────── */
.quote-section {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  background: var(--brown-deep);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  color: rgba(252, 244, 232, 0.15);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
  font-style: italic;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  color: var(--cream);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.2;
  letter-spacing: 0;
}

.quote-text em {
  font-style: italic;
  color: var(--gold-light);
}

.quote-attr {
  display: block;
  margin-top: 28px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 244, 232, 0.4);
}

/* ── Social grid ─────────────────────────────── */
#instagram .section-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
}

.ig-platform-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.ig-platform-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: #5f4a3d;
  text-decoration: none;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.ig-platform-tab--ig:hover {
  background: rgba(225,48,108,0.12);
  border-color: #E1306C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,48,108,0.15);
}

.ig-platform-tab--tt:hover {
  background: rgba(0,0,0,0.08);
  border-color: #010101;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.ig-platform-tab--ig {
  border-color: #E1306C;
  color: #b0184b;
  background: rgba(225,48,108,0.06);
}

.ig-platform-tab--tt {
  border-color: #010101;
  color: #010101;
  background: rgba(0,0,0,0.04);
}

.ig-platform-tab svg { flex-shrink: 0; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 10px;
}

/* Fila 1: Instagram | Fila 2: TikTok */
.ig-cell {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: block;
  height: 100%;
}

.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

/* Overlay oscuro en hover */
.ig-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 1;
}

/* Badge red social */
.ig-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
  transform: translateY(6px);
  opacity: 0;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.ig-badge--instagram {
  background: rgba(225,48,108,0.85);
  color: white;
}

.ig-badge--tiktok {
  background: rgba(0,0,0,0.75);
  color: white;
}

/* Línea separadora entre filas */
.ig-cell--tiktok {
  border: 2px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

/* Hover state */
.ig-cell:hover img        { transform: scale(1.07); }
.ig-cell:hover::after     { opacity: 1; }
.ig-cell:hover .ig-badge  {
  opacity: 1;
  transform: translateY(0);
}

/* Separador visual entre IG y TikTok */
.ig-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}

.ig-divider-line {
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.ig-divider-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: var(--white);
}

/* ── ig-row invisible en desktop, scroll en móvil ── */
.ig-row { display: contents; }

@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    height: auto;
  }
  .ig-row { display: contents; }
}

@media (max-width: 600px) {

  .ig-platform-tab {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 11px;
  }

  /* Grid 2 columnas × 3 filas — todo visible */
  .ig-row { display: contents; }

  .ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 44vw);
    gap: 8px;
  }

  .ig-cell {
    width: 100%;
    height: 100%;
    border-radius: var(--r);
    overflow: hidden;
  }

  /* Badges siempre visibles en móvil */
  .ig-badge {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* ── Newsletter ──────────────────────────────── */
.newsletter {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--brown-deep);
}

.newsletter-title em {
  font-style: italic;
  color: var(--brown);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
  margin-top: 1rem;
}

.newsletter-form .input {
  flex: 1;
  border-radius: 999px;
  padding: 14px 22px;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(1),
  .value-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 32px;
  }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:last-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
  .promo-inner { grid-template-columns: 1fr; }
  .promo-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stat .reveal-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat__item:nth-child(2) { border-right: 0; }
  .hero-stat__item:nth-child(1),
  .hero-stat__item:nth-child(2) {
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card:last-child {
    grid-column: auto;
    aspect-ratio: 4/5;
  }
  .newsletter-form { flex-direction: column; }
  .hero-stat .reveal-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive mobile ───────────────────────── */
@media (max-width: 768px) {

  /* Stats: 2x2 en vez de 4 columnas */
  .hero-stat {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 20px;
    gap: 0;
  }

  .hero-stat__item {
    padding: 20px 16px;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    text-align: center;
  }

  /* Bordes: derecha en los impares, ninguno en los últimos 2 */
  .hero-stat__item:nth-child(odd) {
    border-right: 1px solid var(--line-soft);
  }

  .hero-stat__item:nth-child(3),
  .hero-stat__item:nth-child(4) {
    border-bottom: none;
  }

  .hero-stat__n {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* Valores: 1 columna en móvil pequeño */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 14px;
    padding: 20px;
    text-align: left;
  }

  .value-icon {
    grid-column: 1;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin: 0;
    align-self: center;
    flex-shrink: 0;
  }

  .value-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .value-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero-stat__item {
    padding: 18px 12px;
  }
}

/* ══════════════════════════════════════════════
   DARK MODE — home overrides
   ══════════════════════════════════════════════ */

/* ── Hero ────────────────────────────────────── */
[data-theme="dark"] .hero {
  background: var(--bg-soft);
}

[data-theme="dark"] .hero-title {
  color: var(--text);
}

[data-theme="dark"] .hero-sub {
  color: var(--muted);
}

/* Ghost button visible en dark sobre fondo oscuro */
[data-theme="dark"] .btn-ghost {
  border-color: rgba(237, 232, 224, 0.25);
  color: var(--text);
}
[data-theme="dark"] .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 168, 122, 0.08);
}

[data-theme="dark"] .hero-floater {
  background: var(--surface);
  border: 1px solid var(--line);
}
[data-theme="dark"] .hero-floater__name {
  color: var(--text);
}

[data-theme="dark"] .hero-stats {
  background: var(--surface);
  border-top-color: var(--line);
}

[data-theme="dark"] .hero-stat__item {
  border-color: var(--line);
}

[data-theme="dark"] .hero-stat__n {
  color: var(--gold-light);
}

[data-theme="dark"] .hero-stat__l {
  color: var(--muted);
}

/* ── Títulos de sección ──────────────────────── */
[data-theme="dark"] .section-title {
  color: var(--text);
}
[data-theme="dark"] .section-title em {
  color: var(--gold-light);
}

/* ── Sección crema ───────────────────────────── */
[data-theme="dark"] .section-cream {
  background: var(--surface);
}

[data-theme="dark"] .section-cream .eyebrow,
[data-theme="dark"] .section-cream .text-muted {
  color: #d8c7b8;
}

/* ── Promo banner ────────────────────────────── */
[data-theme="dark"] .promo-banner {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .promo-title {
  color: var(--text);
}
[data-theme="dark"] .promo-title em {
  color: var(--gold-light);
}

/* ── Valores / Tres mundos ───────────────────── */
[data-theme="dark"] .values-grid {
  border-color: var(--line);
}
[data-theme="dark"] .value-item {
  border-right-color: var(--line);
  border-bottom-color: var(--line);
}
[data-theme="dark"] .value-item:hover {
  background: var(--surface-2);
}
[data-theme="dark"] .value-title {
  color: var(--text);
}

/* ── Bestsellers / Testimonios ───────────────── */
[data-theme="dark"] .testimonial {
  background: var(--surface);
  border-color: var(--line);
}
[data-theme="dark"] .testimonial-text {
  color: var(--text);
}
[data-theme="dark"] .testimonial-meta strong {
  color: var(--text);
}

/* ── Instagram & TikTok tabs ─────────────────── */
[data-theme="dark"] .ig-platform-tab {
  background: var(--surface);
  border-color: var(--line);
  color: #ede8e0;
}
[data-theme="dark"] .ig-platform-tab--ig {
  border-color: rgba(225, 48, 108, 0.5);
  color: #ff7aa6;
  background: rgba(225, 48, 108, 0.08);
}
[data-theme="dark"] .ig-platform-tab--ig:hover {
  background: rgba(225, 48, 108, 0.15);
  border-color: #E1306C;
}
[data-theme="dark"] .ig-platform-tab--tt {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .ig-platform-tab--tt:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .ig-divider-label {
  background: var(--surface);
  border-color: var(--line);
  color: var(--muted);
}
[data-theme="dark"] .ig-divider-line {
  background: var(--line);
}

/* ── Newsletter ──────────────────────────────── */
[data-theme="dark"] .newsletter-title {
  color: var(--text);
}
[data-theme="dark"] .newsletter-title em {
  color: var(--gold-light);
}

/* ── Popup promocional ───────────────────────── */
.promo-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.promo-popup-overlay.open { display: flex; }

.promo-popup-box {
  position: relative;
  width: 100%;
  max-width: 780px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  background: #fff;
  animation: popupIn 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes popupIn {
  from { opacity:0; transform:scale(0.92) translateY(16px); }
  to   { opacity:1; transform:scale(1)    translateY(0);    }
}

.promo-popup-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.promo-popup-close:hover { background: rgba(0,0,0,0.7); }

.promo-popup-img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

.promo-popup-body {
  padding: 24px 32px 32px;
  text-align: center;
}
.promo-popup-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  color: #2d1a0e;
}
.promo-popup-body p {
  margin: 0 0 20px;
  font-size: 15px;
  color: #7a6855;
}
.promo-popup-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #9b6a2f;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.promo-popup-btn:hover { background: #7a5224; }

/* Tablet */
@media (max-width: 768px) {
  .promo-popup-box  { max-width: 92vw; border-radius: 16px; }
  .promo-popup-img  { max-height: 340px; }
  .promo-popup-body { padding: 20px 24px 28px; }
  .promo-popup-body h3 { font-size: 19px; }
}

/* Mobile */
@media (max-width: 480px) {
  .promo-popup-overlay { padding: 10px; }
  .promo-popup-box     { max-width: 100%; border-radius: 14px; }
  .promo-popup-img     { max-height: 260px; }
  .promo-popup-body    { padding: 16px 18px 24px; }
  .promo-popup-body h3 { font-size: 17px; }
  .promo-popup-body p  { font-size: 13px; }
}
}
