/*
 * Vista inicial de la tienda.
 *
 * Las ofertas son el inicio comercial. JavaScript puede cambiar
 * posteriormente a Productos, Emprendimiento o Contacto.
 */
#home {
  display: block;
}

#products,
#businessven,
#contact {
  display: none;
}

/*
 * Pulido previo a pruebas públicas.
 * Se carga después de los demás estilos para actuar como override.
 */

.terms-inline-link,
.footer-action-link,
.footer-legal-links a {
  color: #1683ff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.terms-inline-link:hover,
.terms-inline-link:focus-visible,
.footer-action-link:hover,
.footer-action-link:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: #00bfe8;
}

.reservation-terms,
.checkout-terms,
.checkout-save-profile,
.public-account-terms {
  align-items: flex-start;
  cursor: pointer;
  gap: 12px;
}

.reservation-terms input[type="checkbox"],
.checkout-terms input[type="checkbox"],
.checkout-save-profile input[type="checkbox"],
.public-account-terms input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex: 0 0 22px;
  margin: 2px 0 0;
  accent-color: #ec0074;
  cursor: pointer;
}

.category-tab {
  min-height: 46px;
}

.footer-copy {
  line-height: 1.55;
  margin: 0 0 14px;
}

.footer-action-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.MediosPago {
  line-height: 1.6;
}

@media (max-width: 700px) {
  .reservation-terms,
  .checkout-terms,
  .checkout-save-profile,
  .public-account-terms {
    gap: 14px;
    min-height: 58px;
  }

  .reservation-terms input[type="checkbox"],
  .checkout-terms input[type="checkbox"],
  .checkout-save-profile input[type="checkbox"],
  .public-account-terms input[type="checkbox"] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-basis: 28px;
    margin-top: 1px;
  }

  .terms-inline-link {
    display: inline;
    padding: 3px 0;
  }

  .reservation-submit,
  .checkout-submit,
  .public-account-submit,
  #checkoutButton {
    min-height: 54px;
    font-size: 1rem;
  }

  .category-tab {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
  }

  .quantity_button,
  .product-detail__quantity button {
    min-width: 44px;
    min-height: 44px;
  }

  .footer-legal-links {
    align-items: center;
  }

  .footer-copy {
    text-align: left;
  }
}


/*
 * Alineación general de cabecera y contenido.
 * La franja rosa ocupa toda la pantalla, mientras el contenido
 * se mantiene centrado con el mismo ancho máximo del footer.
 */
.header_container {
  width: 100%;
}

.header {
  width: min(calc(100% - 32px), 1320px);
  margin-inline: auto;
}

@media (max-width: 700px) {
  .header {
    width: 100%;
    margin-inline: 0;
  }
}
