/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* ALVA - Footer en 3 columnas */
@media (min-width: 768px) {

  #footer .footer-container .links {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  #footer .footer-container .links > .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 70px;
    align-items: start;
    width: 100%;
  }

  #footer .footer-container .links > .row > .wrapper {
    width: auto;
    max-width: none;
    flex: none;
  }
}
/* ALVA - Ocultar Información adicional en fichas de producto */
body.page-product #product-details-info {
    display: none !important;
}

/* ALVA - Aviso últimas unidades */
.alva-low-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 16px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #111;
    text-transform: uppercase;
}

.alva-low-stock span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #b00020;
    border-radius: 50%;
    flex-shrink: 0;
}