/* ==========================================================================
   Ingredients Flavors — "Unreal Flavors, No BS" split section
   ========================================================================== */

.ingredients-flavors {
  background: #141414;
  color: #fff;
  padding: 80px 40px;
  border-bottom: 2px solid #fff;
}

.ingredients-flavors__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Left Column: Copy --- */
.ingredients-flavors__copy {
  flex: 1;
  min-width: 0;
}

.ingredients-flavors__headline {
  font-family: termina, sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.ingredients-flavors__sub {
  font-family: new-science-mono, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 40px;
}

/* --- Numbered flavor list --- */
.ingredients-flavors__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingredients-flavors__list-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: new-science-mono, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.ingredients-flavors__list-number {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  min-width: 16px;
}

/* --- CTA button --- */
.ingredients-flavors__cta {
  display: inline-block;
  font-family: new-science-mono, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: var(--radius-md);
  padding: 12px 48px;
  transition: background 0.2s, color 0.2s;
}

.ingredients-flavors__cta:hover {
  background: #fff;
  color: #1a1a1a;
}

/* --- Right Column: Image --- */
.ingredients-flavors__image-wrap {
  flex: 0 0 50%;
  max-width: 600px;
}

.ingredients-flavors__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .ingredients-flavors {
    padding: 50px 20px;
  }

  .ingredients-flavors__inner {
    flex-direction: column;
    gap: 40px;
  }

  .ingredients-flavors__image-wrap {
    flex: none;
    max-width: 100%;
  }

  .ingredients-flavors__cta {
    width: 100%;
  }
}
