/* ============================================================================
   ESENCIA Y TAZA - STYLES.CSS
   Hoja de estilos completa
   =========================================================================== */

/* VARIABLES */
:root {
  --color-dark: #3D2817;
  --color-medium: #6B5344;
  --color-light: #A0826D;
  --color-gold: #D4AF37;
  --color-cream: #FFFAF0;
  --color-beige: #E8DECC;
  --color-border: #ddd;
  --color-shadow: rgba(61, 40, 23, 0.1);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Elimina el tap delay de 300 ms en iOS/Android y el resaltado azul */
a, button, [role="button"], input, select, textarea, label {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-4);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
}

h3 {
  font-size: 1.875rem;
}

p {
  margin-bottom: var(--spacing-4);
  color: var(--color-medium);
  line-height: 1.8;
}

a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--color-gold);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--color-dark);
  color: white;
  box-shadow: 0 4px 6px var(--color-shadow);
}

.btn-primary:hover {
  background-color: var(--color-medium);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px var(--color-shadow);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px var(--color-shadow);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.navbar-logo .logo-text {
  font-family: var(--font-serif);
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-link {
  color: var(--color-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-link:hover {
  color: var(--color-gold);
}

.navbar-link--active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.25rem;
}

/* HERO */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-banner-cta {
  position: absolute;
  bottom: 9%;
  left: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1.5rem;
  z-index: 1;
}

.hero-wm-btn {
  position: absolute;
  display: inline-block;
  right: 3%;
  bottom: 13%;
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  padding: 1.1rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(0,0,0,.4);
  transition: background .2s, transform .15s, box-shadow .2s;
  z-index: 2;
  line-height: 1.4;
}
.hero-wm-btn:hover {
  background: #e0bc45;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(0,0,0,.45);
}

@media (max-width: 767px) {
  .hero-img-wrap { height: 340px; }
  .hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .hero-banner-cta {
    bottom: 5%;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 0 1rem;
  }
  .hero-banner-cta .btn {
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    min-width: 220px;
    text-align: center;
  }
  .hero-wm-btn { display: none; }
}

/* SECTIONS */
.section {
  padding: 4rem var(--spacing-4);
  border-bottom: 1px solid var(--color-border);
}

.section-subtitle {
  text-align: center;
  color: var(--color-medium);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ORIGIN SECTION */
.origin-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.origin-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--color-shadow);
  transition: transform 0.3s;
}

.origin-image img:hover {
  transform: scale(1.05);
}

.origin-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--color-cream);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-gold);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  color: var(--color-medium);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* PRODUCTS SECTION */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(61,40,23,.2);
}
.product-card--destacado {
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(212,175,55,.2);
}
.product-card--destacado:hover {
  box-shadow: 0 18px 40px rgba(212,175,55,.3);
}

/* ── Visual (zona imagen) ── */
.product-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.product-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.product-visual-tamano {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.55);
  position: absolute;
  bottom: 8px;
  right: 12px;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.product-card:hover .product-visual-logo { transform: scale(1.06); }

/* ── Body ── */
.product-body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-origin {
  font-size: .65rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .3rem;
}
.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .45rem;
  line-height: 1.25;
}
.product-desc {
  font-size: .8rem;
  color: var(--color-medium);
  line-height: 1.6;
  margin-bottom: .55rem;
  flex: 1;
}

/* ── Selector En grano / Molido ── */
.product-tipo-group {
  display: flex;
  gap: .35rem;
  margin-bottom: .9rem;
}
.tipo-pill {
  flex: 1;
  padding: .38rem .3rem;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: transparent;
  color: var(--color-medium);
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  line-height: 1.2;
}
.tipo-pill:hover { border-color: var(--color-dark); color: var(--color-dark); }
.tipo-pill--active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
}

/* ── Precio + botón ── */
.product-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  padding-top: .8rem;
  border-top: 1px solid var(--color-border);
}
.product-pricing { display: flex; flex-direction: column; gap: 1px; }
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}
.product-size-label {
  font-size: .67rem;
  color: #aaa;
  margin-top: 2px;
}
.btn-add-card {
  padding: .55rem 1rem;
  background: var(--color-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.btn-add-card:hover { background: var(--color-medium); transform: translateY(-1px); }

/* FOOTER */
.footer {
  background: var(--color-dark);
  color: white;
  padding: 3rem var(--spacing-4) 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--color-gold);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-column address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom-copy {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin-bottom: .6rem;
}
.footer-bottom-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.footer-bottom-contacto a {
  color: var(--color-gold);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: opacity .2s;
}
.footer-bottom-contacto a:hover { opacity: .8; text-decoration: underline; }
.footer-bottom-contacto span {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}

/* ACCESSIBILITY */
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-dark);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-main:focus {
  top: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .origin-content { grid-template-columns: 1fr; }
  .navbar-menu { display: none; }
  .section { padding: 2rem var(--spacing-4); }
  .footer-content { grid-template-columns: 1fr; }

  /* Announcement bar — texto más compacto en móvil */
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.45rem 2.2rem 0.45rem 0.75rem;
    line-height: 1.35;
  }

  /* Hero — sin estilos del hero anterior (ahora es img) */
  .hero { min-height: unset; padding: 0; }

  /* Footer bottom wrap */
  .footer-bottom-copy { font-size: 0.72rem; text-align: center; }
  .footer-bottom-contacto { flex-direction: column; gap: 0.4rem; align-items: center; font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Logo en el footer */
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
  margin-bottom: 1rem;
}

/* ============================================================================
   AJUSTES VERSIÓN DE MERCADO
   =========================================================================== */

/* ── Sección contacto ─────────────────────────────────────────────────────── */
.section-contact {
  background: var(--color-dark);
  padding: 5rem 0;
  border-bottom: none;
}
.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-intro h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: .5rem;
}
.contact-intro p {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  margin: 0;
}

/* Grid principal */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* Tarjeta del formulario */
.contact-card {
  background: var(--color-cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: .95rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem 2rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-medium);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--color-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.btn-enviar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  background: var(--color-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: .25rem;
}
.btn-enviar:hover { background: var(--color-medium); transform: translateY(-2px); }
.form-nota {
  font-size: .75rem;
  color: var(--color-medium);
  text-align: center;
  margin: 0;
}

/* Canales directos */
.contact-canales { display: flex; flex-direction: column; gap: .75rem; }
.canales-titulo {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: .25rem;
}
.canal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid rgba(255,255,255,.08);
}
.canal-item:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.canal-wa  { background: #1a3d20; }
.canal-mail{ background: rgba(255,255,255,.07); }
.canal-tel { background: rgba(255,255,255,.05); }
.canal-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.canal-wa  .canal-icon { background: #25D366; color: #fff; }
.canal-mail .canal-icon { background: var(--color-gold); color: var(--color-dark); }
.canal-tel  .canal-icon { background: rgba(255,255,255,.15); color: #fff; }
.canal-texto {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.canal-texto strong { color: #fff; font-size: .95rem; }
.canal-texto small { color: rgba(255,255,255,.55); font-size: .78rem; }
.canal-arrow { color: rgba(255,255,255,.3); flex-shrink: 0; }
.canal-item:hover .canal-arrow { color: var(--color-gold); }

.contact-horario {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  margin-top: .5rem;
  padding: 0 .25rem;
}

/* Flag "Más pedido" en producto */
.product-flag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* Redes en footer */
.footer-redes { display: flex; gap: 14px; margin-bottom: .5rem; }
.footer-redes a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}
.footer-redes a:hover { background: var(--color-gold); color: var(--color-dark); }
.footer-handle { color: var(--color-gold); font-weight: 600; margin-top: .3rem; }

/* BARRA FLOTANTE DE REDES (visible siempre, pese al scroll) */
.redes-flotantes {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.redes-flotantes .flot {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transition: transform .15s;
  will-change: transform;
}
.redes-flotantes .flot:hover { transform: scale(1.1); }
.flot-wa { background: #25D366; }
.flot-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.flot-tt { background: #010101; }

@media (max-width: 600px) {
  .redes-flotantes .flot { width: 48px; height: 48px; }
}

/* Imagen sección Origen — foto del cafetal */
.origin-img-placeholder {
  width: 100%;
  max-width: 420px;
  height: 300px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 14px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

/* Feedback formulario contacto */
.field-error {
  font-size: .75rem;
  color: #e53e3e;
  margin-top: .15rem;
}
.form-nota--ok {
  color: #22863a !important;
  font-size: .82rem !important;
  font-weight: 600;
}
.nota-wa {
  color: #25D366;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================================
   CARRITO
   =========================================================================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
  z-index: 1000;
}
.cart-panel.abierto ~ .cart-overlay,
.cart-overlay.visible { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 90vw;
  height: 100vh; height: 100dvh;
  background: #fff;
  box-shadow: -8px 0 30px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 1001;
  display: flex; flex-direction: column;
  will-change: transform;
}
.cart-panel.abierto { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--color-dark); color: #fff;
}
.cart-header h3 { color: #fff; margin: 0; font-size: 1.3rem; }
.cart-header-btns { display: flex; align-items: center; gap: .4rem; }
.cart-vaciar {
  background: none; border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  width: 34px; height: 34px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
  padding: 0;
}
.cart-vaciar:hover { color: #ff6b6b; background: rgba(255,107,107,.15); }
.cart-close {
  background: none; border: none; color: #fff;
  font-size: 1.8rem; cursor: pointer; line-height: 1;
}

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; overscroll-behavior: contain; }
.cart-vacio { text-align: center; color: var(--color-medium); margin-top: 3rem; line-height: 1.8; }

.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--color-border);
}
.cart-item-info { display: flex; flex-direction: column; gap: 2px; }
.cart-item-info strong { color: var(--color-dark); font-size: .95rem; }
.cart-item-info span { font-size: .8rem; color: var(--color-medium); }
.cart-item-precio { color: var(--color-gold) !important; font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--color-border); background: var(--color-cream);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  color: var(--color-dark);
}
.qty-btn:hover { background: var(--color-gold); border-color: var(--color-gold); }

.cart-footer { padding: 1.25rem 1.5rem; border-top: 2px solid var(--color-border); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem; font-size: 1.1rem;
}
.cart-total-row strong { color: var(--color-dark); font-size: 1.4rem; }
.btn-checkout {
  width: 100%; padding: 1rem;
  background: #25D366; color: #fff; border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: background .2s;
}
.btn-checkout:hover:not([disabled]) { background: #1da851; }
.btn-checkout[disabled] { background: #ccc; cursor: not-allowed; }
.cart-nota { font-size: .75rem; color: var(--color-medium); text-align: center; margin-top: .75rem; }

@media (max-width: 600px) {
  .cart-panel { width: 100%; max-width: 100%; }
}

/* Botón Pagar en línea (Wompi) */
.btn-pagar {
  width: 100%; padding: 1rem;
  background: var(--color-dark); color: #fff;
  border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: .6rem;
  transition: background .2s;
}
.btn-pagar:hover:not([disabled]) { background: var(--color-medium); }
.btn-pagar[disabled] { background: #ccc; cursor: not-allowed; }

/* El botón WhatsApp ahora con ícono */
.btn-checkout { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ── Footer legal ─────────────────────────────────────────────────────────── */
.footer-legal {
  text-align: center;
  padding: .75rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-bottom: .5rem;
}
.legal-link {
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s;
}
.legal-link:hover { color: var(--color-gold); text-decoration: underline; }
.legal-sep { color: rgba(255,255,255,.3); margin: 0 .5rem; font-size: .8rem; }

/* ── Banner de cookies / privacidad ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  border-top: 2px solid var(--color-gold);
  z-index: 1300;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.cookie-banner[hidden] { display: none; }
.cookie-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  flex: 1;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
}
.cookie-content a { color: var(--color-gold); }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-btn {
  padding: .5rem 1.1rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--ok  { background: var(--color-gold); color: var(--color-dark); border: none; }
.cookie-btn--info{ background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
@media (max-width: 600px) {
  .cookie-content { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Popup bienvenida ────────────────────────────────────────────────────── */
@keyframes popFadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes popSlideUp { from { opacity:0; transform:translateY(28px) scale(.97) } to { opacity:1; transform:translateY(0) scale(1) } }

.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: popFadeIn .3s ease;
}
.popup-overlay[hidden] { display: none !important; }

.popup-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
  animation: popSlideUp .35s ease;
  line-height: 0;
}
@media (max-width: 560px) {
  .popup-card {
    max-height: 82dvh;
    max-height: 82vh;
    overflow-y: auto;
    border-radius: 16px;
  }
  .popup-img-full { border-radius: 0; }
}

.popup-close {
  position: absolute; top: .75rem; right: .75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  line-height: 1;
}
.popup-close:hover { background: rgba(0,0,0,.7); }

.popup-img-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
/* Zona transparente sobre la X del diseño (esquina superior derecha) */
.popup-hit-x {
  position: absolute;
  top: 2%; right: 3%;
  width: 9%; aspect-ratio: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}
/* Zona transparente sobre el botón naranja del diseño */
.popup-hit-btn {
  position: absolute;
  left: 24%; right: 24%;
  top: 80%; bottom: 6%;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 560px) {
  .popup-hit-x  { top: 1.5%; right: 2%; width: 10%; }
  .popup-hit-btn{ left: 18%; right: 18%; top: 79%; }
}

/* ============================================================================
   TAGS DE PRODUCTO (tueste / uso)
   =========================================================================== */
.product-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin: .35rem 0 .75rem;
}
.product-tag {
  padding: .18rem .65rem;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  background: var(--color-beige);
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-tag--uso {
  background: var(--color-dark);
  color: var(--color-cream);
}

/* ============================================================================
   FAQ — Preguntas Frecuentes
   =========================================================================== */
/* ============================================================================
   TESTIMONIOS
   =========================================================================== */
.section-testimonios { background: var(--color-dark); }
.section-testimonios h2 { color: #fff; }
.section-testimonios .section-subtitle { color: rgba(255,255,255,.55); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.testi-card:hover { background: rgba(255,255,255,.09); }

.testi-stars { font-size: 1.2rem; color: var(--color-gold); letter-spacing: 2px; }

.testi-texto {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testi-autor {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: .8rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.testi-avatar--biz { background: var(--color-medium); color: #fff; }

.testi-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.testi-info strong { color: #fff; font-size: .9rem; font-weight: 700; }
.testi-ciudad { color: rgba(255,255,255,.45); font-size: .75rem; }

.testi-fecha { color: rgba(255,255,255,.3); font-size: .72rem; flex-shrink: 0; align-self: flex-start; }

.section-faq { background: var(--color-cream); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: box-shadow .2s;
}
.faq-item[open] {
  box-shadow: 0 6px 20px var(--color-shadow);
}
.faq-item[open] .faq-pregunta {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-border);
}

.faq-pregunta {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-pregunta::-webkit-details-marker { display: none; }
.faq-pregunta::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item[open] .faq-pregunta::after { transform: rotate(45deg); }

.faq-respuesta { padding: 1.2rem 1.5rem; }
.faq-respuesta p {
  margin: 0;
  font-size: .95rem;
  color: var(--color-medium);
  line-height: 1.75;
}
.faq-respuesta a {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: underline;
}
.faq-respuesta a:hover { color: var(--color-gold); }

@media (max-width: 600px) {
  .faq-pregunta { font-size: .95rem; padding: 1rem 1.25rem; }
  .faq-respuesta { padding: 1rem 1.25rem; }
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
  background: var(--color-dark);
  color: #F5E6D3;
  text-align: center;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  font-size: 0.82rem;
  position: relative;
  z-index: 101;
  line-height: 1.4;
}
.announcement-bar strong { color: var(--color-gold); }
.announcement-bar.hidden { display: none; }
.announcement-close {
  background: none;
  border: none;
  color: #F5E6D3;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.4rem;
  opacity: 0.55;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.announcement-close:hover { opacity: 1; }

/* ── FOOTER — MEDIOS DE PAGO ──────────────────────────────── */
.footer-medios {
  max-width: 1200px;
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-medios-label {
  color: rgba(255,255,255,.4);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  margin-right: 0.3rem;
}
.footer-medios-icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.medio-pago {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  transition: background .2s, color .2s, border-color .2s;
}
.medio-pago:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
  color: rgba(255,255,255,.85);
}

@media (max-width: 640px) {
  .footer-medios { gap: 0.5rem; }
  .footer-medios-label { width: 100%; text-align: center; margin-right: 0; }
}

/* ── MODAL CHECKOUT ───────────────────────────────────────── */
.co-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20,8,2,.65);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.co-overlay[hidden] { display: none; }

.co-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  width: 100%; max-width: 560px;
  padding: 1.8rem 1.6rem 1.5rem;
  position: relative;
  max-height: 92dvh;
  max-height: 92vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.co-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.1rem;
  cursor: pointer; color: #888; line-height: 1;
  padding: 0.2rem 0.4rem; border-radius: 4px;
}
.co-close:hover { background: #f0f0f0; color: #333; }
.co-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--color-dark); margin-bottom: 0.2rem; }
.co-subtitle { font-size: 0.85rem; color: #777; margin-bottom: 1.2rem; }

.co-fieldset { border: none; margin-bottom: 1.1rem; }
.co-legend {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--color-gold);
  border-bottom: 1px solid rgba(200,150,46,.25);
  padding-bottom: 0.3rem; margin-bottom: 0.8rem; width: 100%;
}
.co-field { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.7rem; }
.co-field label { font-size: 0.78rem; font-weight: 600; color: #444; }
.co-field input, .co-field select {
  border: 1.5px solid #ddd; border-radius: 7px;
  padding: 0.6rem 0.8rem; font-size: 0.9rem; font-family: inherit;
  background: #fafafa; transition: border-color .2s;
  width: 100%;
}
.co-field input:focus, .co-field select:focus {
  outline: none; border-color: var(--color-gold); background: #fff;
}
.co-field input.error, .co-field select.error { border-color: #e53935; }

.co-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

/* Toggle factura */
.co-toggle {
  display: flex; align-items: center; gap: 0.5rem;
  cursor: pointer; font-size: 0.88rem; color: var(--color-dark);
  margin-bottom: 0.6rem; user-select: none;
}
.co-toggle input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--color-gold); }
.co-factura-fields { margin-top: 0.5rem; }
.co-factura-fields[hidden] { display: none; }

/* Resumen */
.co-resumen {
  display: flex; align-items: center; justify-content: space-between;
  background: #faf5ee; border-radius: 8px; padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem; color: var(--color-dark);
}
.co-resumen strong { font-size: 1.1rem; color: var(--color-dark); }

/* Botones acción */
.co-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.co-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem; border: none; border-radius: 8px; cursor: pointer;
  font-size: 0.95rem; font-weight: 700; font-family: inherit;
  transition: opacity .2s, transform .15s;
}
.co-btn:hover { opacity: .88; transform: translateY(-1px); }
.co-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.co-btn-pagar { background: var(--color-dark); color: #fff; }
.co-btn-wa    { background: #25D366; color: #fff; }

@media (max-width: 480px) {
  .co-modal { padding: 1.4rem 1.1rem 1.2rem; }
  .co-row2  { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .co-row2 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   MENÚ HAMBURGUESA
   ══════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background .2s;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(200,150,46,.12); }
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #C8962E;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-hamburger.is-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menú móvil drawer */
.nav-mobile {
  position: fixed;
  top: 60px; /* sobreescrito por JS con el offsetHeight real del header */
  left: 0; right: 0;
  background: var(--color-dark, #3D2817);
  z-index: 998;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 2px solid rgba(200,150,46,.25);
  animation: slideDown .22s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile-list {
  list-style: none;
  padding: 0; margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-link {
  display: block;
  padding: 0.9rem 0.5rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .18s, padding-left .18s;
}
.nav-mobile-link:hover, .nav-mobile-link:focus {
  color: #C8962E;
  padding-left: 1rem;
  outline: none;
}
.nav-mobile-cta {
  display: block;
  text-align: center;
  background: #C8962E;
  color: #3D2817;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: opacity .2s;
}
.nav-mobile-cta:hover { opacity: .9; }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}
@media (min-width: 769px) {
  .nav-mobile { display: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  width: 44px;
  height: 44px;
  background: #3D2817;
  color: #C8962E;
  border: 2px solid rgba(200,150,46,.6);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s, opacity .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  opacity: .85;
}
.scroll-top:hover { background: #C8962E; color: #3D2817; transform: translateY(-3px); opacity: 1; }
.scroll-top[hidden] { display: none; }

/* ══════════════════════════════════════════════════════════════
   CART TOAST — notificación al añadir producto
   ══════════════════════════════════════════════════════════════ */
.cart-toast {
  position: fixed;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: #2C1A0E;
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.2rem 0.9rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(200,150,46,.2);
  z-index: 9998;
  min-width: 300px;
  max-width: 360px;
  width: calc(100vw - 2.4rem);
  transition: bottom .38s cubic-bezier(.34,1.4,.64,1);
  border-left: 4px solid #C8962E;
}
.cart-toast--visible { bottom: 1.5rem; }

.ct-info {
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.ct-check {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  background: #C8962E; color: #2C1A0E;
  border-radius: 50%; font-size: 0.85rem; font-weight: 700;
}
.ct-msg {
  font-size: 0.92rem; font-weight: 600; line-height: 1.3;
  color: #fff;
}
.ct-actions {
  display: flex; gap: 0.5rem;
}
.ct-seguir {
  flex: 1; padding: 0.55rem 0.5rem;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: background .2s;
  font-family: inherit;
}
.ct-seguir:hover { background: rgba(255,255,255,.18); }
.ct-ver {
  flex: 1; padding: 0.55rem 0.5rem;
  background: #C8962E; color: #2C1A0E;
  border: none; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
  font-family: inherit;
}
.ct-ver:hover { opacity: .88; }

@media (max-width: 480px) {
  .cart-toast { bottom: -160px; min-width: unset; }
  .cart-toast--visible { bottom: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */
.section-newsletter {
  background: linear-gradient(135deg, #2C1A0E 0%, #3D2817 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-tag {
  display: inline-block;
  background: rgba(200,150,46,.2);
  border: 1px solid rgba(200,150,46,.4);
  color: #C8962E;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 0.25rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}
.newsletter-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.newsletter-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.8rem;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.newsletter-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: #C8962E; }
.newsletter-submit {
  width: 100%;
  padding: 0.9rem;
  background: #C8962E;
  color: #3D2817;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s, transform .2s;
}
.newsletter-submit:hover { opacity: .9; transform: translateY(-1px); }
.newsletter-nota {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  margin-top: 0.5rem;
}
@media (max-width: 540px) {
  .newsletter-row { grid-template-columns: 1fr; }
}
