/* ====== SEKCJA START ====== */
.ingredients-section {
  background: #0f0115; /* żółte tło */
  padding: 80px 40px;
}
.ingredients-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.ring-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredients-ring img {
  max-width: 500px;
  height: auto;
  display: block;
}
.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ingredient {
  cursor: pointer;
  transition: transform .3s ease, color .3s ease;
}
.ingredient:hover {
  transform: translateX(6px);
}
.ingredient .num {
  font-size: 28px;
  font-weight: 800;
  color: #00aaff;
  margin-right: 12px;
}
.ingredient h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: burlywood;
}
.ingredient p {
  margin: 0;
  color: #f5f5f5;
  font-size: 15px;
}

/* ====== POPUP ====== */
#popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1000;
}
#popup[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.popup-center {
  background: #fff;
  color: #222;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
  max-width: 1000px;
  width: 90%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #00aaff;
  cursor: pointer;
}
.popup-text .popup-num {
  font-size: 40px;
  font-weight: 900;
  color: #00aaff;
  display: block;
  margin-bottom: 10px;
}
#popup-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
}
#popup-desc {
  font-size: 16px;
  margin: 0 0 14px;
  color: #444;
}
#popup-long {
  font-size: 15px;
  line-height: 1.6;
}
.popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 900px) {
  .popup-center {
    grid-template-columns: 1fr;
  }
}
