/* === EUDALIE - What is Eudalie? (изолированная секция) === */
.eud-section-what {
  padding: 80px 0;
  background: #fff;
}

.eud-what {
  position: relative;
}

.eud-title {
  text-align: center;
  margin-bottom: 30px;
}

.eud-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.7;
  color: #24384e;
  text-align: center;
}

.eud-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.eud-feature {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
}

.eud-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eud-feature-icon svg {
  width: 100%;
  height: 100%;
}

.eud-feature-title {
  font-size: 22px;
  color: #d2ada5;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eud-feature-desc {
  color: #24384e;
  line-height: 1.6;
  margin: 0;
}





/* === EUDALIE - Effects Section with Background Image === */
.eud-section-effects-bg {
  position: relative;
  background-size: cover;
  background-position: center right; /* Лицо — справа */
  background-repeat: no-repeat;
  padding: 100px 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 600px;
}

/* Полупрозрачный оверлей для читаемости текста */
.eud-section-effects-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.5) 100%);
  z-index: 1;
}

.eud-effects-overlay {
  position: relative;
  z-index: 2;
}

.eud-effects-content {
  max-width: 600px;
  margin-left: 0;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.eud-effects-title {
  margin-bottom: 20px;
  color: #24384e;
}

.eud-effects-text {
  color: #24384e;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 17px;
}

.eud-effects-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.eud-effects-list li {
  color: #24384e;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.eud-effects-list li::before {
  content: '•';
  color: #d2ada5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.eud-effects-cta {
  text-align: center;
  margin-top: 20px;
}

.eud-btn-primary {
  display: inline-block;
  background: #d2ada5;
  color: white;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.eud-btn-primary:hover {
  background: #c59c98;
  transform: translateY(-2px);
}

/* === Адаптивность === */
@media (max-width: 991px) {
  .eud-section-effects-bg {
    min-height: auto;
    padding: 60px 0;
  }

  .eud-section-effects-bg::before {
    background: rgba(255,255,255,0.9);
  }

  .eud-effects-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .eud-effects-cta {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .eud-effects-content {
    padding: 20px;
    background: white;
  }

  .eud-section-effects-bg {
    background-position: center center;
    background-size: auto 100%;
  }
}







/* === EUDALIE - Active Ingredients Section === */
.eud-section-ingredients {
  padding: 80px 0;
  background: #fff;
}

.eud-ingredients-title {
  text-align: center;
  margin-bottom: 20px;
}

.eud-ingredients-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #24384e;
  font-size: 18px;
  line-height: 1.7;
}

.eud-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.eud-ingredient-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.eud-ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.eud-ingredient-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.eud-ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eud-ingredient-name {
  font-size: 20px;
  color: #d2ada5;
  font-weight: 700;
  margin: 15px 15px 10px;
  text-transform: uppercase;
}

.eud-ingredient-desc {
  color: #24384e;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 15px 15px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .eud-ingredients-grid {
    grid-template-columns: 1fr;
  }

  .eud-ingredients-intro,
  .eud-ingredient-desc {
    font-size: 16px;
  }

  .eud-ingredient-name {
    font-size: 18px;
  }
}






/* === EUDALIE - Package Leaflet Section === */
.eud-section-leaflet {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.eud-leaflet {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* Обводка как в .problem__body */
.eud-leaflet::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #c5d7e0;
}

.eud-leaflet-title {
  text-align: center;
  margin-bottom: 40px;
}

.eud-leaflet-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.eud-leaflet-item {
  margin: 0;
}

.eud-leaflet-subtitle {
  font-size: 20px;
  color: #d2ada5;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.eud-leaflet-text {
  color: #24384e;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-leaflet {
    padding: 20px;
  }

  .eud-leaflet-content {
    gap: 20px;
  }

  .eud-leaflet::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .eud-leaflet-title {
    font-size: 36px;
  }

  .eud-leaflet-subtitle {
    font-size: 18px;
  }

  .eud-leaflet-text {
    font-size: 15px;
  }
}






/* === EUDALIE - Expert Recommendation Section === */
.eud-section-expert {
  padding: 60px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.eud-expert {
  display: flex;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #f9f9f9;
}

.eud-expert-media {
  flex: 1;
  min-width: 300px;
}

.eud-expert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eud-expert-info {
  flex: 1;
  background: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eud-expert-title {
  margin: 0 0 10px;
  font-size: 44px;
}

.eud-expert-subtitle {
  font-size: 18px;
  color: #d2ada5;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eud-expert-description {
  margin: 20px 0;
  color: #24384e;
  line-height: 1.7;
}

.eud-expert-description p {
  margin: 0 0 15px;
  font-size: 16px;
}

.eud-expert-description p:last-child {
  font-weight: 600;
  color: #24384e;
  margin-top: 10px;
}

.eud-expert-id {
  margin-top: 15px;
}

.eud-expert-id img {
  max-width: 120px;
  height: auto;
}

/* === Адаптивность === */
@media (max-width: 991px) {
  .eud-expert {
    flex-direction: column;
  }

  .eud-expert-media img {
    height: 250px;
  }

  .eud-expert-info {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .eud-section-expert {
    padding: 40px 0;
  }

  .eud-expert-title {
    font-size: 36px;
  }

  .eud-expert-subtitle {
    font-size: 16px;
  }

  .eud-expert-description p {
    font-size: 15px;
    line-height: 1.6;
  }
}







/* === EUDALIE - Customer Reviews Section === */
.eud-section-reviews {
  padding: 80px 0;
  background: #fff;
}

.eud-reviews-title {
  text-align: center;
  margin-bottom: 20px;
}

.eud-reviews-intro {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #24384e;
  line-height: 1.7;
  font-size: 17px;
  text-align: center;
}

.eud-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.eud-review-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #d2ada5; /* Акцентная полоса — как доверие */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.eud-review-header {
  font-size: 18px;
  color: #24384e;
  margin-bottom: 12px;
  font-weight: 600;
}

.eud-review-text {
  color: #24384e;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eud-reviews-intro {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .eud-section-reviews {
    padding: 60px 0;
  }

  .eud-review-card {
    padding: 20px;
  }
}





/* === EUDALIE - FAQ Section === */
.eud-section-faq {
  padding: 80px 0;
  background: #fff;
}

.eud-faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.eud-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.eud-faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
}

.eud-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.eud-faq-question {
  font-size: 19px;
  color: #d2ada5;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
}

.eud-faq-answer {
  color: #24384e;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-section-faq {
    padding: 60px 0;
  }

  .eud-faq-question {
    font-size: 18px;
  }

  .eud-faq-answer {
    font-size: 15px;
  }
}








/* === EUDALIE — ФОРМА ЗАКАЗА: ФИНАЛЬНАЯ КОМПАКТНАЯ ВЕРСИЯ (обновлённая) === */

/* === Правая часть: форма === */
.face__box form {
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form__body {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Уменьшено — поля ближе друг к другу */
}

/* Заголовок скидки */
.form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.form__head p {
  margin: 0;
  font-size: 15px;
  color: #24384e;
  font-weight: 600;
}

.form__head p span {
  color: #d2ada5;
}

.form__discont {
  background: #d2ada5;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 9px;
  border-radius: 30px;
  white-space: nowrap;
}

/* === Блок цен — с !important для борьбы с конфликтами === */
.form__price {
  background: #f9f9f9 !important;
  padding: 9px !important;
  border-radius: 10px !important;
  border: 1px dashed #c5d7e0 !important;
  margin-bottom: 10px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.form__price-new {
  font-size: 18px !important;        /* Увеличили для акцента */
  color: #24384e !important;
  font-weight: 700 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
  display: block !important;
}

.form__price-new .price_main {
  font-size: 22px !important;        /* Главная цена — крупная */
  color: #d2ada5 !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}

.form__price-old {
  font-size: 12px !important;
  color: #888 !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  display: block !important;
}

.form__price-old .price_old {
  text-decoration: line-through !important;
  font-weight: 500 !important;
  color: #888 !important;
  font-size: 12px !important;
}

/* Поля ввода */
.form__label {
  position: relative;
  width: 100%;
}

.form__field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #c5d7e0;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
  box-sizing: border-box;
  line-height: 1.4;
}

.form__field:focus {
  border-color: #d2ada5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(210, 173, 165, 0.2);
}

.form__field::placeholder {
  color: #999;
  font-size: 14px;
}

/* Кнопка — увеличена по высоте и отступу сверху */
.form__btn {
  background: #d2ada5;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  margin-top: 14px; /* Увеличенный отступ перед кнопкой */
  width: 100%;
  display: block;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 8px rgba(210, 173, 165, 0.2);
}

.form__btn:hover {
  background: #c59c98;
  transform: translateY(-1px);
}

/* Таймер */
.form__time {
  text-align: center;
  margin-top: 10px;
  padding-top: 7px;
  border-top: 1px solid #eee;
  color: #24384e;
  font-size: 13px;
}

.form__time-title {
  font-size: 13px;
  margin-bottom: 4px;
  color: #24384e;
}

.form__time-box {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  font-size: 14px;
}

.form__time-count {
  display: flex;
  align-items: center;
  gap: 2px;
}

.form__time-count span:first-child {
  color: #d2ada5;
  min-width: 26px;
  text-align: center;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .face__box form {
    padding: 12px;
  }

  .form__body {
    gap: 4px;
  }

  .form__price {
    padding: 8px;
    margin-bottom: 9px;
  }

  .form__price-new .price_main {
    font-size: 17px;
  }

  .form__field {
    padding: 8px 12px;
    font-size: 14px;
  }

  .form__btn {
    font-size: 15px;
    padding: 14px 12px;
    margin-top: 12px;
  }

  .form__time-title {
    font-size: 12px;
  }

  .form__time-box {
    font-size: 13px;
    gap: 2px;
  }
}

@media (max-width: 576px) {
  .form__head p {
    font-size: 13px;
  }

  .form__discont {
    font-size: 14px;
    padding: 4px 8px;
  }

  .form__price-new {
    font-size: 15px;
  }

  .form__price-new .price_main {
    font-size: 16px;
  }

  .form__price-old {
    font-size: 12px;
  }

  .form__btn {
    font-size: 15px;
    padding: 14px 12px;
    margin-top: 12px;
    letter-spacing: 0.5px;
  }
}