/* Ingredients – Produkt-Napoj */
.ingredients-section { background: var(--color-bg); }

.ingredients__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.ingredients__left .section__eyebrow { display: block; }

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.ingredient {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.ingredient__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient strong {
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.ingredient p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* Nutrition facts label */
.nutrition-facts {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  font-size: var(--font-size-sm);
}

.nutrition-facts__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-black);
  color: var(--color-text);
  margin-bottom: var(--space-1);
  padding-bottom: var(--space-2);
  border-bottom: 3px solid var(--color-text);
}

.nutrition-facts__serving {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-xs);
}

.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table th {
  text-align: left;
  font-weight: var(--font-weight-semi);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}
.nutrition-table td {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.nutrition-table td:first-child { color: var(--color-text); font-weight: var(--font-weight-medium); }
.nutrition-table td:last-child { text-align: right; color: var(--color-text-dim); }
.nutrition-table__highlight td { color: var(--color-accent) !important; font-weight: var(--font-weight-bold) !important; }

@media (max-width: 900px) {
  .ingredients__inner { grid-template-columns: 1fr; }
}
