/* Start custom CSS for html, class: .elementor-element-1e6eb69 */:root {
  --arctic-blue: #0b5ed7;
  --deep-arctic-navy: #0a2540;
  --soft-blue: #eef5ff;
  --white: #ffffff;
  --text-muted: #526273;
  --border-color: #dbe5ef;
}

/* Main Hero */
.nutrition-hero {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  width: 100%;
  min-height: 650px;
  overflow: hidden;
  background: var(--white);
}

/* Left Content */
.nutrition-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 90px 7vw;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(11, 94, 215, 0.09),
      transparent 34%
    ),
    linear-gradient(145deg, #ffffff 0%, #f7faff 100%);
}

.nutrition-hero__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -70px;
  z-index: -1;
  width: 140px;
  height: 100%;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.nutrition-hero__text {
  width: 100%;
  max-width: 610px;
}

.nutrition-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--arctic-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nutrition-hero__eyebrow::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  border-radius: 10px;
  background: var(--arctic-blue);
}

.nutrition-hero h1 {
  margin: 0;
  color: var(--deep-arctic-navy);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.nutrition-hero h1 span {
  display: block;
  color: var(--arctic-blue);
}

.nutrition-hero__text > p {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Buttons */
.nutrition-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.nutrition-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 25px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.nutrition-btn span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.nutrition-btn:hover span {
  transform: translateX(5px);
}

.nutrition-btn--primary {
  color: var(--white);
  background: var(--arctic-blue);
  box-shadow: 0 14px 30px rgba(11, 94, 215, 0.22);
}

.nutrition-btn--primary:hover {
  transform: translateY(-3px);
  background: var(--deep-arctic-navy);
  box-shadow: 0 18px 35px rgba(10, 37, 64, 0.22);
}

.nutrition-btn--outline {
  color: var(--deep-arctic-navy);
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.85);
}

.nutrition-btn--outline:hover {
  transform: translateY(-3px);
  color: var(--white);
  border-color: var(--deep-arctic-navy);
  background: var(--deep-arctic-navy);
}

.nutrition-hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--deep-arctic-navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.nutrition-hero__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: var(--white);
  border-radius: 50%;
  background: var(--arctic-blue);
  font-size: 0.78rem;
}

/* Slider */
.nutrition-slider {
  position: relative;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  background: var(--deep-arctic-navy);
}

.nutrition-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.nutrition-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 6s ease;
}

.nutrition-slide.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.nutrition-slide img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.nutrition-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 37, 64, 0.22) 0%,
      rgba(10, 37, 64, 0.04) 45%,
      rgba(10, 37, 64, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(10, 37, 64, 0.74) 0%,
      transparent 45%
    );
}

.nutrition-slide__caption {
  position: absolute;
  right: 45px;
  bottom: 42px;
  left: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.nutrition-slide__caption > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.nutrition-slide__caption div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nutrition-slide__caption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nutrition-slide__caption strong {
  font-size: 1rem;
}

/* Slider Arrows */
.nutrition-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--deep-arctic-navy);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(10, 37, 64, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.nutrition-slider__arrow:hover {
  color: var(--white);
  background: var(--arctic-blue);
  transform: translateY(-50%) scale(1.08);
}

.nutrition-slider__arrow--prev {
  left: 25px;
}

.nutrition-slider__arrow--next {
  right: 25px;
}

/* Slider Dots */
.nutrition-slider__dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 11;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.nutrition-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background-color 0.3s ease;
}

.nutrition-slider__dot.active {
  width: 30px;
  border-radius: 20px;
  background: var(--white);
}

/* Responsive Tablet */
@media (max-width: 1050px) {
  .nutrition-hero {
    grid-template-columns: 48% 52%;
  }

  .nutrition-hero__content {
    padding: 75px 6vw;
  }

  .nutrition-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
  }

  .nutrition-slide__caption {
    right: 30px;
    left: 30px;
  }
}

/* Responsive Mobile */
@media (max-width: 800px) {
  .nutrition-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .nutrition-hero__content {
    order: 2;
    padding: 55px 24px 60px;
  }

  .nutrition-hero__content::after {
    display: none;
  }

  .nutrition-slider {
    order: 1;
    min-height: 430px;
  }

  .nutrition-slide img {
    min-height: 430px;
  }

  .nutrition-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .nutrition-hero__text > p {
    font-size: 1rem;
  }

  .nutrition-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .nutrition-slider__arrow--prev {
    left: 15px;
  }

  .nutrition-slider__arrow--next {
    right: 15px;
  }

  .nutrition-slide__caption {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }

  .nutrition-slider__dots {
    bottom: 100px;
  }
}

@media (max-width: 520px) {
  .nutrition-slider {
    min-height: 350px;
  }

  .nutrition-slide img {
    min-height: 350px;
  }

  .nutrition-hero__content {
    padding: 45px 18px 50px;
  }

  .nutrition-hero__buttons {
    flex-direction: column;
  }

  .nutrition-btn {
    width: 100%;
  }

  .nutrition-slider__arrow {
    top: 46%;
    width: 38px;
    height: 38px;
  }

  .nutrition-slide__caption > span {
    width: 46px;
    height: 46px;
  }

  .nutrition-slide__caption strong {
    font-size: 0.88rem;
  }
}/* End custom CSS */