
/* ============ Contacto ============ */
.amnu-contacto {
  padding: 80px 20px;
  background: #EDE6D6;
  display: flex;
  justify-content: center;
}

.contacto-card {
  background: #F8F1E4;
  padding: 50px;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-family: 'Chivo', sans-serif;
}

.contacto-card h2 {
  color: #B75729;
  font-size: 32px;
  margin-bottom: 40px;
}

.amnu-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contacto-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-right textarea {
  width: 100%;
  height: 170px;
  padding: 16px 18px;
  border-radius: 16px;
  border: none;
  background-color: #FDF7E5;
  color: #521526;
  font-size: 16px;
  font-family: 'Chivo', sans-serif;
  resize: none;
}

.amnu-contact-form input {
  padding: 14px 18px;
  border-radius: 16px;
  border: none;
  background-color: #FDF7E5;
  color: #521526;
  font-size: 16px;
  font-family: 'Chivo', sans-serif;
}

.amnu-contact-form input::placeholder,
.amnu-contact-form textarea::placeholder {
  color: #521526;
  opacity: 0.7;
}

.contacto-btn {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contacto-btn button {
  padding: 14px 36px;
  border-radius: 18px;
  border: none;
  background-color: #B75729;
  color: #FDF7E5;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: 'Chivo', sans-serif;
}

.contacto-btn button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* =========================
   CONTACTO MOBILE
   ========================= */

@media (max-width: 768px) {

  /* contenedor */
  .amnu-contacto {
    padding: 40px 16px;
  }

  .contacto-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  /* titulo */
  .contacto-card h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: left;
  }

  /* romper grid desktop */
  .amnu-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contacto-left {
    width: 100%;
    gap: 14px;
  }

  .contacto-right {
    width: 100%;
  }

  /* inputs */
  .amnu-contact-form input {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  /* textarea */
  .contacto-right textarea {
    width: 100%;
    height: 150px;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
  }

  /* boton */
  .contacto-btn {
    width: 100%;
    margin-top: 10px;
  }

  .contacto-btn button {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
  }

}

/* ============ Sabores ============ */
.sabores-page{
  font-family: "Chivo", sans-serif;
  padding: 30px 0 50px;
}

.sabores-title{
  text-align: center;
  color: #521526;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.sabores-subtitle{
  text-align: center;
  color: #521526;
  opacity: .9;
  margin: 0 auto 22px;
  max-width: 720px;
}

.sabores-divider{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px auto 18px;
  max-width: 980px;
  padding: 0 16px;
}
.sabores-line{
  flex: 1;
  height: 1px;
  background: rgba(82,21,38,.5);
}

.sabores-chip{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.chip-clasicos{ background: #E7D19A; color: #521526; }
.chip-premium{ background: #B75729; color: #FDF7E5; }
.chip-dietas{ background: #521526; color: #FDF7E5; }
.chip-pistacho{ background: #7A8F57; color: #FDF7E5; }

.sabores-grid{
  max-width: 980px;
  margin: 0 auto 10px;
  padding: 0 16px;
  gap: 22px;
}

.sabor-card{
  position: relative;
  background: #FFFBEE;
  border: 1px solid #E0CDD3;
  border-radius: 18px;
  padding: 18px 16px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 240px;
}
.sabor-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0,0,0,.14);
}

.sabor-img img,
img.sabor-img{
  width: 100% !important;
  max-width: 280px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
}

.sabor-name{
  color: #521526;
  font-weight: 700;
  margin: 0;
  letter-spacing: .5px;
}

.sabor-tag{
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
}
.tag-beige{ background:#E7D19A; color:#521526; }
.tag-green{ background:#7A8F57; color:#FDF7E5; }

.sabor-card--desc{
  background: #B75729;
  border-color: rgba(0,0,0,.08);
  color: #FDF7E5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sabor-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  padding: 6px 10px;
}
.sabor-name--light{
  color: #FDF7E5;
  opacity: .9;
}

/* =========================
   AMNU - SABOR SIN STOCK
   ========================= */

.card-sabor {
  position: relative;
}

.card-sabor.is-out-of-stock {
  opacity: 0.55;
  filter: grayscale(0.12);
}

.card-sabor.is-out-of-stock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 247, 229, 0.42);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.card-sabor .amnu-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  background: #B75729;
  color: #FDF7E5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.card-sabor.is-out-of-stock .btn-agregar,
.card-sabor.is-out-of-stock .amnu-add,
.card-sabor.is-out-of-stock .qty-plus,
.card-sabor.is-out-of-stock .qty-minus,
.card-sabor.is-out-of-stock .amnu-plus,
.card-sabor.is-out-of-stock .amnu-minus,
.card-sabor.is-out-of-stock .wp-block-button__link {
  pointer-events: none !important;
  opacity: 0.45 !important;
}

.card-sabor.is-out-of-stock .qty-control {
  opacity: 0.45;
}


/* =========================
   TITULO CONTACTO MOBILE
   ========================= */

@media (max-width: 768px) {

  .page-id-75 .entry-content h1,
  .page-id-75 .entry-content .wp-block-heading {

    font-size: 52px !important;
    line-height: 0.95 !important;
    text-align: center !important;

    white-space: nowrap !important;   /* evita que CONTACTO se parta */
    letter-spacing: 2px !important;

    padding-left: 10px !important;
    padding-right: 10px !important;
  }

}