.block_2-main {
  margin-bottom: 30px;
}

.block_2-right ul {
  list-style: none;
  padding-left: 0;
}

.block_2-right ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  list-style: none;
  /* Обеспечим правильное выравнивание текста */
  line-height: 1.4;
}

.block_2-right ul li::before {
  content: "✓";
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

/* Feature list with checkmark icon */
.feature-content p {
  margin-bottom: 20px;
}

.feature-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.feature-item:before {
  content: "";
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"%3E%3Cpath d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" fill="%234CAF50"/%3E%3C/svg%3E');
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.block_2-paint {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Ingredient cards layout */
.ingredient-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ingredient-image-container {
  flex: 0 0 auto;
  width: 40%;
  padding: 10px;
}

.ingredient-content {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.ingredient-card:nth-child(even) .ingredient-image-container {
  order: 2;
}

.ingredient-card:nth-child(even) .ingredient-content {
  order: 1;
}

@media (max-width: 768px) {
  .ingredient-image-container,
  .ingredient-content {
    flex: 1 1 100%;
    width: 100%;
  }

  .ingredient-image-container {
    order: -1 !important;
  }
}

.ingredient-image-container img {
  width: 400px;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .ingredient-image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  margin-bottom: 20px;
}

/* Leaflet styles */
.pl-leaflet-header {
  text-align: center;
}

.pl-leaflet-title {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pl-container-fluid {
  padding-left: 100px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .pl-container-fluid {
    padding-left: 60px;
    padding-right: 40px;
  }
}

.pl-section-header .pl-section-title {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.pl-section-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

.pl-section {
  margin-bottom: 16px;
}

.pl-important-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.pl-important-note .pl-note-icon {
  flex-shrink: 0;
  margin-top: 3px;
}

.pl-important-note p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}


/* Общие стили */
input, select, button, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  border: none;
  outline: none;
}

/* Стиль для select — с кастомной стрелочкой */
.country_select {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  background: #ffffff url(../images/arrow.png) 97% center no-repeat;
  border-radius: 5px;
  appearance: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Стиль для текстовых полей — БЕЗ стрелочки */
input[type="text"] {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 16px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Кнопка */
button[type="submit"] {
  display: block;
  width: 100%;
  height: 60px;
  margin: 20px 0;
  background: linear-gradient(90deg, #70db45 0%, #47cda8 100%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  border: none;
  border-radius: 32px;
  box-shadow: 0 5px 25px rgba(71, 205, 148, 0.5);
  cursor: pointer;
  transition: 0.5s;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(71, 205, 148, 0.7);
}

/* Обёртка */
#form__body {
  padding: 0 20px;
}

.price-block {
  text-align: center;
  margin: 20px 0;
}

.old-price {
  font-size: 16px;
  color: #999;
  margin-bottom: 5px;
}

.old-price s {
  text-decoration-color: #ccc; /* аккуратное зачёркивание */
}

.new-price {
  font-size: 26px;
  font-weight: 900;
  color: #333;
  margin-bottom: 15px;
}

.product-price-display {
    text-align: center;
    margin: 12px 0;
    font-family: Arial, sans-serif;
}

/* Старая цена — мелкая, тонкая, зачёркнутая */
.price-original-tag-a8x4 {
    display: inline-block;
    font-weight: 300;
    font-size: 15px;
    color: #ffffff;
    text-decoration: line-through;
    vertical-align: bottom;
    margin-right: 10px;
}

/* Новая цена — крупная, жирная, основная */
.price-discounted-tag-k9m2 {
    display: inline-block;
    font-weight: 500;
    font-size: 30px;
    color: #ffffff;
    line-height: 1;
    vertical-align: bottom;
}




@media (max-width: 767px) {
  /* 1. Отключаем слайдер-режим: делаем flex-контейнер */
  .review_slider .slick-list,
  .review_slider .slick-track {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    transform: none !important;
  }

  /* 2. Каждый слайд — отдельная карточка, 100% ширины, с отступами */
  .slide_wrap {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 15px 0 !important;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* 3. Прячем "невидимые" слайды — если Slick их скрывает */
  .slick-slide {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    height: auto !important;
    display: block !important;
  }

  /* 4. Убираем анимации и переходы */
  .review_slider {
    opacity: 1;
  }

  /* 5. Делаем фото отзывов адаптивными */

/* Показываем все сообщения с классом .web на мобильных */
.message.web {
  display: flex !important;
}

/* Для правильного отображения — если .web был скрыт */
@media (max-width: 767px) {
  .message.web {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Убедимся, что структура чата остаётся гибкой */
  .chat_wrap {
    flex-direction: column;
  }

  .message {
    max-width: 90%;
    margin: 8px 0;
  }

  .message_left {
    align-self: flex-start;
  }

  .message_right {
    align-self: flex-end;
  }

  /* Если используется flex — важно задать направление */
  .message {
    display: flex;
    align-items: center;
  }

  .message_text {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 300px;
  }
}




@media (max-width: 767px) {
  .pre_toform {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}