/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  border-bottom: 4px solid var(--purple);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 55px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header__nav a:hover { color: var(--teal-dark); }
.header__nav a.active {
  background: var(--teal);
  color: #fff;
}

.header__social { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__social a { 
  opacity: 1;
  transition: opacity 0.2s;
  display: flex;
  background: #69498E;
  border-radius: 50%;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
}
.header__social a:hover { opacity: 0.6; }
.header__social img { width: 24px; height: 24px;display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff;
  z-index: 999;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  transform-origin: top;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-menu nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active {
  background: var(--bg-gray);
  color: var(--teal);
}
.mobile-menu nav a.active { color: var(--teal-dark); }
.mobile-menu__social { display: flex; gap: 16px; padding-left: 16px; }
.mobile-menu__social a { display: flex;
  background: #69498E;
  border-radius: 50%;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center; }
.mobile-menu__social a:hover { opacity: 1; }
.mobile-menu__social img { width: 22px; height: 22px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,1);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  /*border-bottom: 1px solid rgba(255,255,255,0.15);*/
  margin-bottom: 32px;
}
.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 66px; filter: brightness(0) invert(1); }
.footer__desc {
  font-size: 16px;
  line-height: 1.1;
  color: rgba(255,255,255,1);
  max-width: 280px;
  text-align: center;
}
.footer__desc.link{
  font-weight: bold;
  display: block;
  margin: 0.5em 0 0;
}
.footer__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-align: right;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal-light); }
.footer__social { display: flex; gap: 16px; margin-top: 4px;justify-content: flex-end; }
.footer__social a { opacity: 0.7; display: flex; transition: opacity 0.2s; }
.footer__social a:hover { opacity: 1; }
.footer__social img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.footer__social__logomillet{
  margin: 0 0 0 auto;
  max-width: 200px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer__disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); max-width: 500px; text-align: right; }

/* ===== INGREDIENT CARD ===== */
.ingredient-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ingredient-item:last-child { border-bottom: none; }
.ingredient-item__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ingredient-item__icon img { width: 28px; height: 28px; }
.ingredient-item__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.ingredient-item__text { font-size: 14px; line-height: 1.65; }

/* ===== BULLET LIST ===== */
.bullet-list { display: flex; flex-direction: column; gap: 16px; }
.bullet-list__item { display: flex; align-items: flex-start; gap: 14px; }
.bullet-list__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullet-list__icon img { width: 32px; height: 32px; }
.bullet-list__text { padding-top: 6px; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.bullet-list__text strong { color: var(--text-dark); font-family: 'Poppins', sans-serif; }

/* ===== COMPONENTS CARD ===== */
.components-card {
  background: var(--bg-card);
  border-radius: 50px;
  padding: 40px;
  width: 100%;
  margin: 0 auto;
}
.components-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.components-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.components-icon-item img { width: 120px; height: 120px; }
.components-icon-item span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--teal-dark);
}
.components-cla {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}
.components-cla__logo { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.components-cla__logo img { max-width: 300px; }
.components-cla__text p { font-size: 20px; margin-bottom: 12px; line-height: 1.7; }
.components-cla__text p:last-child { margin-bottom: 0; }
.components-cla__text strong { color: var(--teal-dark); font-family: 'Poppins', sans-serif; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__nav a { font-size: 11px; padding: 6px 10px; }
}
@media (max-width: 768px) {
  .header__social{ display: none; }
  .header__nav { display: none; }
  .hamburger { display: flex; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__disclaimer { text-align: left; }

  .components-cla { grid-template-columns: 1fr; text-align: center; }
  .components-card { padding: 24px 20px; }
  .components-icons { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer__social__logomillet{
    margin: 0 auto;
  }

  .footer__logo img{
    margin: 0 auto;
  }
  .components-cla__logo img {
      max-width: 214px;
  }
}
@media (max-width: 480px) {
  .components-icons { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .components-icon-item img { width: 40px; height: 40px; }
  .components-icon-item span { font-size: 12px; }
  .highlight-card { padding: 24px 20px; }
}
