/* --- Bloque Ingredientes (Front) --- */
.nutri-product-ingredients {
  display: block !important;
  width: 100% !important;
  max-width: 1280px; /* ajusta si tu contenedor principal es distinto */
  margin: 80px auto 60px auto !important;
  clear: both;
  flex: 0 0 100%;
}

.nutri-product-ingredients__title {
  text-align: center;
  font-weight: 700;
  color: #0b3557;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.nutri-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.nutri-ingredient-card {
  background: #fff;
  border: 1px solid #e6e9f1;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nutri-ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.nutri-ingredient-image {
  position: relative;
}

.nutri-ingredient-image img {
  display: block;
  width: 100%;
  height: auto;
}

.nutri-ingredient-amount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0b3557;
  color: #fff;
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.nutri-ingredient-content {
  padding: 16px;
}

.nutri-ingredient-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0b3557;
  margin-bottom: 8px;
}

.nutri-ingredient-description {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.5;
}
