/* ============ VARIABILI ============ */
.nutra-header, .nutra-footer {
  --nutra-green: #5a8a3a;
  --nutra-green-dark: #3d5f28;
  --nutra-green-light: #a8c98a;
  --nutra-cream: #faf7f0;
  --nutra-text: #2c2c2c;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ============ HEADER ============ */
.nutra-header {
  background: #ffffff;
  border-bottom: 1px solid #ece9e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nutra-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutra-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--nutra-text);
}

.nutra-logo__icon {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
}

.nutra-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nutra-logo__name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--nutra-green-dark);
  letter-spacing: 0.5px;
}

.nutra-logo__tagline {
  font-size: 11px;
  color: #888;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
/* ============================================
   /* ============================================
   FOOTER NUTRABOTANICA - VERDE SCURO
   ============================================ */

.nutra-footer {
  background: linear-gradient(180deg, #1f2e16 0%, #182610 100%);
  color: rgba(232, 243, 220, 0.75);
  padding: 60px 0 0;
  margin-top: 60px;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  width: 100%;
}

.nutra-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #a8c98a;
}

.nutra-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === BRAND FOOTER === */
.nutra-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

/* === LOGO FOOTER: bianco su sfondo verde === */
.nutra-footer img.nutra-footer__img,
.nutra-footer .nutra-footer__brand img {
  width: auto !important;
  height: 150px !important;
  max-height: 150px !important;
  max-width: 240px !important;
  min-width: 0 !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  padding: 0 !important;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nutra-footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #a8c98a;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* === DIVIDER === */
.nutra-footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(168, 201, 138, 0.4);
  margin: 0 0 32px 0;
}

/* === INFO LEGALI === */
.nutra-footer__info {
  max-width: 600px;
  margin-bottom: 40px;
}

.nutra-footer__line {
  margin: 8px 0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232, 243, 220, 0.85);
  letter-spacing: 0.3px;
}

.nutra-footer__line strong {
  color: #ffffff;
  font-weight: 600;
}

.nutra-footer__line a {
  color: #a8c98a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nutra-footer__line a:hover {
  color: #ffffff;
  border-bottom-color: #a8c98a;
}

.nutra-footer__legal {
  margin-top: 18px !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(168, 201, 138, 0.7);
  font-weight: 500;
}

/* === COPYRIGHT === */
.nutra-footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(168, 201, 138, 0.15);
  padding: 22px 0;
  margin-top: 10px;
}

.nutra-footer__bottom p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(168, 201, 138, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* === FOOTER MOBILE === */
@media (max-width: 768px) {
  .nutra-footer {
    padding-top: 45px;
    margin-top: 40px;
  }

  .nutra-footer__inner {
    padding: 0 24px;
  }

  .nutra-footer img.nutra-footer__img,
  .nutra-footer .nutra-footer__brand img {
    height: 80px !important;
    max-height: 80px !important;
    max-width: 200px !important;
  }

  .nutra-footer__tagline {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .nutra-footer__line {
    font-size: 13px;
  }

  .nutra-footer__legal {
    font-size: 10px;
  }

  .nutra-footer__bottom p {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 480px) {
  .nutra-footer__brand {
    margin-bottom: 26px;
  }

  .nutra-footer img.nutra-footer__img,
  .nutra-footer .nutra-footer__brand img {
    height: 122px !important;
    max-height: 122px !important;
    max-width: 180px !important;
  }
}
/* ============================================
   NUTRABOTANICA - HEADER MINIMAL CON LOGO
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

.nutra-header {
  --nutra-green: #5a8a3a;
  --nutra-green-light: #7ba85c;
  --nutra-green-dark: #3d5f28;
  --nutra-cream: #faf7f0;
  --nutra-beige: #e8dfc8;
  --nutra-text: #2c3a1f;

  background: #ffffff;
  border-bottom: 1px solid var(--nutra-beige);
  box-shadow: 0 2px 10px rgba(61, 95, 40, 0.04);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nutra-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === LOGO === */
.nutra-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--nutra-text);
  transition: opacity 0.3s ease;
}

.nutra-logo:hover {
  opacity: 0.85;
}

.nutra-logo__icon {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(61, 95, 40, 0.1));
}

.nutra-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nutra-logo__name {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--nutra-green-dark);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.nutra-logo__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--nutra-green);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .nutra-header__inner {
    padding: 18px 20px;
  }

  .nutra-logo {
    gap: 12px;
  }

  .nutra-logo__icon {
    width: 52px;
    height: 52px;
  }

  .nutra-logo__name {
    font-size: 24px;
    letter-spacing: 0.8px;
  }

  .nutra-logo__tagline {
    font-size: 9px;
    letter-spacing: 2.2px;
  }
}

@media (max-width: 480px) {
  .nutra-logo__icon {
    width: 38px;
    height: 38px;
  }

  .nutra-logo__name {
    font-size: 21px;
  }

  .nutra-logo__tagline {
    font-size: 8px;
    letter-spacing: 1.8px;
  }
}

/* Nasconde l'header originale del tema */
#header[role="banner"]:not(.nutra-header) {
  display: none !important;
}
.nutra-footer img.nutra-footer__img,
.nutra-footer .nutra-footer__brand img {
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
/* ============================================
   HEADER - LOGO SONNO RAPIDO INGRANDITO
   ============================================ */

.nutra-header img.nutra-logo__img,
.nutra-header .nutra-logo img {
  width: auto !important;
  height: 90px !important;
  max-height: 90px !important;
  max-width: 320px !important;
  min-width: 0 !important;
  display: block !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: opacity 0.3s ease;
}

.nutra-header .nutra-logo:hover img {
  opacity: 0.85;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .nutra-header img.nutra-logo__img,
  .nutra-header .nutra-logo img {
    height: 70px !important;
    max-height: 70px !important;
    max-width: 240px !important;
  }
}

@media (max-width: 480px) {
  .nutra-header img.nutra-logo__img,
  .nutra-header .nutra-logo img {
    height: 58px !important;
    max-height: 58px !important;
    max-width: 200px !important;
  }
}

/* ============================================
   NUTRABOTANICA - LINK LEGALI FOOTER
   ============================================ */

.nutra-footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 201, 138, 0.12);
  width: 100%;
  max-width: 600px;
}

.nutra-footer__legal-links a {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(232, 243, 220, 0.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  padding: 4px 0;
}

.nutra-footer__legal-links a:hover {
  color: #ffffff;
  border-bottom-color: #a8c98a;
}

.nutra-footer__legal-sep {
  color: rgba(168, 201, 138, 0.4);
  font-size: 11px;
  user-select: none;
}

/* === MOBILE === */
@media (max-width: 480px) {
  .nutra-footer__legal-links {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .nutra-footer__legal-links a {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}