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

#product-availability .stock-label {
  display: inline-block !important;
  padding: 6px 12px !important;
  border-radius: 16px !important;
  font-weight: bold !important;
  font-size: 0.95rem !important;
  color: #fff !important;
  margin-top: 5px !important;
}

/* Disponible: verde */
#product-availability .stock-available {
  background-color: #28a745 !important;
  margin-bottom: 10px !important;
}

/* Sin stock: rojo */
#product-availability .stock-unavailable {
  background-color: #dc3545 !important;
}

/* Advertencia de exceso: amarillo */
#product-availability .stock-warning {
    display: inline-block !important;
    background-color: #f9f9f9 !important;
    border-left: 4px solid #dc3545 !important;
    padding: 10px 16px !important;
    font-size: 1em !important;
    color: #dc3545 !important;
    font-weight: bold !important;
    margin: 1em 0 !important;
    margin-top: 8px !important;
}