/* ==========================================================================
   НУТРИЦЕВТИКИ VORWARTS PHARMA - ИНДИВИДУАЛЬНЫЕ СТИЛИ
   ========================================================================== */

/* 1. Кастомная Hero-визуализация (эффект наслоения 3-х упаковок) */
.nutra-hero-visual {
  position: relative;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nutra-hero-visual__img {
  position: absolute;
  max-width: 240px;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0.3s;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* Позиционирование со сдвигом */
.nutra-hero-visual .img-1 {
  transform: translateX(-100px) translateY(-20px) rotate(-8deg);
  z-index: 2;
left: 10px;
}

.nutra-hero-visual .img-2 {
  transform: translateX(0) translateY(10px) scale(1.1);
  z-index: 3;
    left: 80px;
}

.nutra-hero-visual .img-3 {
  transform: translateX(100px) translateY(-40px) rotate(12deg);
  z-index: 1;
  left: 180px;
}

/* Интерактив при ховере на всю Hero область */
.nutra-hero-visual:hover .img-1 {
  transform: translateX(-130px) translateY(-10px) rotate(-12deg);
}
.nutra-hero-visual:hover .img-2 {
  transform: translateX(0) translateY(-10px) scale(1.15);
}
.nutra-hero-visual:hover .img-3 {
  transform: translateX(130px) translateY(-20px) rotate(18deg);
}

/* 2. Сетка и Индивидуальные Карточки Продуктов */
.nutra-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(240,244,248,0.5) 100%);
}

.nutra-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nutra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.nutra-card__visual {
  background: #fdfdfd;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Легкие подложки-градиенты для визуальной глубины каждой карточки */
.nutra-card__visual::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.12;
  z-index: 1;
}

.nutra-card__img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.5s ease;
}

.nutra-card:hover .nutra-card__img {
  transform: scale(1.06);
}

.nutra-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nutra-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nutra-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e293b;
}

.nutra-card__desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.nutra-card__subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.nutra-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.nutra-card__list li {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.nutra-card__list li ion-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.nutra-card__footer {
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nutra-card__form {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* 3. Индивидуальные цветовые схемы продуктов */

/* Схема L-Бетаргин (Оранжево-красные тона) */
.nutra-card--l-betargin .nutra-card__visual::before { background: #ff4e50; }
.nutra-card--l-betargin .nutra-card__badge { background: #fff5f5; color: #e53e3e; }
.nutra-card--l-betargin .nutra-card__list li ion-icon { color: #e53e3e; }
.nutra-card--l-betargin:hover { border-color: rgba(229, 62, 62, 0.2); }

/* Схема Бетаргин (Классический Рубиновый/Бордовый) */
.nutra-card--betargin .nutra-card__visual::before { background: #8a1834; }
.nutra-card--betargin .nutra-card__badge { background: #fdf2f4; color: #8a1834; }
.nutra-card--betargin .nutra-card__list li ion-icon { color: #8a1834; }
.nutra-card--betargin:hover { border-color: rgba(138, 24, 52, 0.2); }

/* Схема Артижель (Зеленый / Растительный эко-тон) */
.nutra-card--artizhel .nutra-card__visual::before { background: #2ecc71; }
.nutra-card--artizhel .nutra-card__badge { background: #ebfbee; color: #27ae60; }
.nutra-card--artizhel .nutra-card__list li ion-icon { color: #27ae60; }
.nutra-card--artizhel:hover { border-color: rgba(39, 174, 96, 0.2); }

/* 4. Блок дополнительных преимуществ */
.bio-advantage-item h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 6px;
}

.bio-advantage-item p {
  font-size: 0.95rem;
  color: #64748b;
  padding-left: 28px;
  line-height: 1.5;
}

/* Адаптивность для мобильных экранов */
@media (max-width: 991px) {
  .nutra-hero-visual {
    height: 320px;
    margin-top: 40px;
  }
  .nutra-hero-visual__img {
    max-width: 130px;
  }
  .nutra-hero-visual .img-1 { transform: translateX(-70px) rotate(-8deg); }
  .nutra-hero-visual .img-3 { transform: translateX(70px) rotate(12deg); }
}
