.web-block {
padding: 10px 0 10px;
}


.button-group {
  margin: 20px 0;
}

.zakaz-kak-button {
  /* Базовые параметры */
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent; /* Полностью прозрачный фон */
  color: white; /* Белый цвет текста */
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;

  /* Граница и скругление */
  border: 2px solid white; /* Видимая белая граница */
  border-radius: 50px;

  /* Плавные переходы */
  transition: 
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;

  /* Центрирование */
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

/* Эффект при наведении */
.zakaz-kak-button:hover {
  color: white; /* Текст остаётся белым */
  background-color: #0088cc; /* Синий фон при наведении */
  border-color: #0077b3; /* Тёмно-синяя граница */
  transform: translateY(-2px); /* Лёгкое поднятие */
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* Активный статус (при клике) */
.zakaz-kak-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
  .zakaz-kak-button {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    margin: 5px 0;
  }
  
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}








.guide-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #3498db;
  font-weight: 700;
}

.steps-list {
  list-style: none;
  counter-reset: step-counter;
}

.step {
  display: flex;
  margin-bottom: 30px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3498db;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-right: 20px;
}






/* Базовая стилизация шапки */
.site-header {
background-color: #ffffff;
width: 100%;
position: relative;
z-index: 1000;

}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
height: 160px;
}

/* Логотип слева */
.logo-wrapper {
flex: 0 0 auto;
display: flex;
align-items: center;
}

.logo-link {
display: block;
}

.logo-image {
height: 140px;
width: auto;
display: block;
border-radius: 8px;
}

/* Меню справа — применяем новый стиль */
.main-menu {
flex: 1 1 auto;
margin-left: 40px;
}

.menu-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: flex-end;
gap: 8px; /* Заменили 30px на 8px — как в вашем новом стиле */
align-items: center;
}

.menu-item {
margin: 0;
}

.menu-link {
color: #3498db;
text-decoration: none;
padding: 8px 16px;
margin: 0 8px;
display: inline-block;
position: relative;
transition: all 0.3s ease;
font-family: 'Inter', sans-serif;
font-size: 17px;
font-weight: 500;
will-change: transform, box-shadow, color;
}

/* Псевдоэлемент для подчёркивания */
.menu-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: #3498db;
transition: width 0.3s ease, background-color 0.3s ease;
}

/* Эффекты при наведении */
.menu-link:hover {
color: #2980b9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
border-radius: 6px;
}

/* Подчёркивание при наведении */
.menu-link:hover::after {
width: 100%;
background-color: #2980b9;
}

/* Стиль для активного пункта меню */
.menu-link.active {
color: #2980b9;
font-weight: 600;
border-radius: 6px;
}

.menu-link.active::after {
width: 100%;
background-color: #2980b9;
}

/* Адаптивность: экраны до 768px */
@media (max-width: 768px) {
.header-container {
flex-direction: column;
align-items: flex-start;
padding: 20px 20px;
height: auto;
gap: 20px;
}

.logo-wrapper {
margin-bottom: 15px;
}

.main-menu {
margin-left: 0;
width: 100%;
}

.menu-list {
flex-direction: column;
gap: 0; /* Убираем gap — отступы заданы через margin у ссылок */
width: 100%;
align-items: flex-start;
}

.menu-link {
font-size: 16px;
margin: 8px 0; /* Вертикальные отступы вместо горизонтальных */
padding: 8px 16px;
}

/* На мобильных: чуть тоньше линия подчёркивания */
.menu-link::after {
height: 1.5px;
}
}

/* Адаптивность: экраны до 480px */
@media (max-width: 480px) {
.header-container {
padding: 15px 15px;
gap: 15px;
}

.logo-image {
height: 110px;
}

.menu-link {
font-size: 15px;
padding: 6px 12px;
}
}


































.header .menu {
  text-align: center;
  padding: 10px 0;
}

.header .menu a {
  color: #3498db;            /* Основной цвет текста */
  text-decoration: none;    /* Убираем подчёркивание */
  padding: 8px 16px;       /* Отступы внутри ссылки */
  margin: 0 8px;          /* Отступы между ссылками */
  display: inline-block;  /* Чтобы работали отступы и ширина */
  position: relative;       /* Для псевдоэлемента ::after */
  transition: all 0.3s ease; /* Плавные переходы */
}

/* Псевдоэлемент для подчёркивания */
.header .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;             /* Толщина линии */
  background-color: #3498db; /* Цвет линии */
  transition: width 0.3s ease, background-color 0.3s ease;
}

/* Эффекты при наведении */
.header .menu a:hover {
  color: #2980b9;         /* Темнее основной цвет */
  transform: translateY(-2px); /* Лёгкое поднятие */
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25); /* Тень */
  border-radius: 6px;     /* Скругление углов */
}

/* Подчёркивание при наведении */
.header .menu a:hover::after {
  width: 100%;
  background-color: #2980b9; /* Темнее цвет линии */
}

/* Дополнительно: плавное исчезновение тени при уходе курсора */
.header .menu a {
  will-change: transform, box-shadow, color;
}











































/* Основной контейнер блока */
.delivery-info-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 25px 20px;
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  background-color: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Заголовок блока */
.delivery-title {
  text-align: center;
  color: #2980b9;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Описание графика */
.delivery-schedule-desc {
  text-align: center;
  font-style: italic;
  color: #7f8c8d;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Заголовки разделов */
.delivery-section-title {
  text-align: center;
  color: #3498db;
  font-size: 22px;
  font-weight: 600;
  margin: 35px 0 20px 0;
  position: relative;
}

.delivery-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Список правил */
.delivery-rules-list {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0 0 25px 0;
}

/* Каждое правило */
.delivery-rule {
  padding: 14px 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

/* Маркер для обычных правил */
.delivery-rule::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  display: inline-block;
  width: 1.8em;
  text-align: center;
  margin-left: -2em;
  font-size: 16px;
}

/* Критическое правило (воскресенье) */
.delivery-rule-critical {
  color: #c0392b;
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

.delivery-rule-critical::before {
  content: "!";
  color: #e74c3c;
  background-color: #fdf2f2;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e74c3c;
}

/* Примечание внизу правил */
.delivery-note {
  font-style: italic;
  color: #95a5a6;
  font-size: 14px;
  text-align: center;
  padding: 14px 20px;
  background-color: #ebf5f7;
  border-left: 3px solid #3498db;
  border-radius: 0 8px 8px 0;
  margin: 20px auto;
  max-width: 500px;
}


/* Блок городов */
.delivery-cities-section {
  margin-top: 30px;
}

/* Карточка города */
.delivery-city-card {
  border: 1px solid #dbe2e9;
  border-radius: 10px;
  margin: 16px 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.delivery-city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Название города */
.delivery-city-name {
  padding: 18px 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f5fa 100%);
  color: #2c3e50;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.delivery-city-name::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #3498db;
}

.delivery-city-card.active .delivery-city-name::after {
  content: '−';
}

/* Блок контактов (скрыт по умолчанию) */
.delivery-contacts {
  padding: 20px 28px;
  background-color: #fcfdfe;
  color: #4a6178;
  line-height: 1.7;
  border-top: 1px solid #e8f0f7;
  display: none;
}

/* Параграфы в контактах */
.delivery-contacts p {
  margin: 12px 0;
  font-size: 14px;
}

/* Жирный текст в контактах (метки полей) */
.delivery-contacts strong {
  color: #2980b9;
  font-weight: 600;
}

/* Примечание в контактах */
.delivery-contact-note {
  font-style: italic;
  color: #7f8c8d;
  font-size: 13px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #dbe2e9;
}

/* Активный статус карточки */
.delivery-city-card.active {
  border-color: #3498db;
  box-shadow: 0 4px 14px rgba(52, 152, 219, 0.25);
}

.delivery-city-card.active .delivery-city-name {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
}

.delivery-city-card.active .delivery-contacts {
  display: block;
}

/* Плавное раскрытие (альтернатива display: block) */
/*
.delivery-contacts {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.delivery-city-card.active .delivery-contacts {
  max-height: 300px;
  padding: 20px 28px;
}
*/

/* Адаптивность: экраны до 768px */
@media (max-width: 768px) {
  .delivery-info-block {
    padding: 20px 15px;
    margin: 15px;
  }
  
  .delivery-title {
    font-size: 24px;
  }
  
  .delivery-schedule-desc,
  .delivery-section-title {
    font-size: 14px;
  }
  .delivery-rule,
  .delivery-contacts p {
    font-size: 14px;
    padding: 12px 0;
  }

  .delivery-note {
    font-size: 13px;
    padding: 12px 15px;
    margin: 15px auto;
  }

  .delivery-city-name {
    padding: 16px 22px;
    font-size: 15px;
  }

  .delivery-contacts {
    padding: 16px 22px;
  }
}

/* Адаптивность: экраны до 480px */
@media (max-width: 480px) {
  .delivery-info-block {
    margin: 10px;
    padding: 15px 10px;
  }

  .delivery-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .delivery-schedule-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  .delivery-section-title {
    font-size: 17px;
  }

  .delivery-rule,
  .delivery-contacts p,
  .delivery-note {
    font-size: 12px;
    padding: 8px 0;
  }

  .delivery-city-name {
    font-size: 14px;
    padding: 14px 18px;
  }

  .delivery-contacts {
    padding: 14px 18px;
  }

  .delivery-contact-note {
    font-size: 11px;
    margin-top: 8px;
    padding-top: 6px;
  }

  /* Уменьшаем отступы у маркеров на мобильных */
  .delivery-rules-list {
    padding-left: 15px;
  }

  .delivery-rule::before,
  .delivery-rule-critical::before {
    width: 1.6em;
    margin-left: -1.8em;
    font-size: 14px;
  }
}

/* Тёмный режим (автоматическое определение через prefers-color-scheme) */
@media (prefers-color-scheme: dark) {
  .delivery-info-block {
    background-color: #1e293b;
    color: #e2e8f0;
  }

  .delivery-title,
  .delivery-section-title {
    color: #60a5fa;
  }

  .delivery-schedule-desc {
    color: #94a3b8;
  }

  .delivery-rule {
    border-bottom-color: #334155;
  }

  .delivery-contacts {
    background-color: #334155;
    color: #cbd5e1;
  }

  .delivery-contacts strong {
    color: #93c5fd;
  }

  .delivery-contact-note,
  .delivery-note {
    color: #94a3b8;
    background-color: transparent;
    border-left-color: #60a5fa;
  }

  .delivery-city-card {
    border-color: #475569;
  }

  .delivery-city-card.active {
    border-color: #60a5fa;
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.25);
  }

  .delivery-city-card.active .delivery-city-name {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
  }

  .delivery-rule::before {
    color: #4ade80;
  }

  .delivery-rule-critical::before {
    color: #f87173;
    background-color: #312e2b;
    border-color: #f87173;
  }
}

/* Стили для печати */
@media print {
  .delivery-info-block,
  .delivery-city-card {
    box-shadow: none;
    border: 1px solid #ccc;
    background: white !important;
    color: black !important;
    page-break-inside: avoid;
  }

  .delivery-city-card.active .delivery-city-name {
    background: white !important;
    color: black !important;
    font-weight: 600;
  }

  .delivery-section-title::after {
    display: none;
  }

  .delivery-rule::before,
  .delivery-rule-critical::before {
    content: none; /* Убираем маркеры при печати */
  }

  .delivery-contacts {
    display: block !important; /* Всегда показываем контакты при печати */
    padding: 10px 0;
  }

  .delivery-contact-note,
  .delivery-note {
    border-left: none;
    padding-left: 0;
  }

  /* Убираем интерактивные элементы */
  .delivery-city-name::after {
    display: none;
  }
}








































.telegram-button-container {
  margin: 20px 0;
}

.telegram-button {
  /* Базовые параметры */
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent; /* Полностью прозрачный фон */
  color: white; /* Синий цвет текста (как у Telegram) */
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;


  /* Граница и скругление */
  border: 2px solid white; /* Видимая граница */
  border-radius: 50px;


  /* Плавные переходы */
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;


  /* Центрирование */
  text-align: center;
  white-space: nowrap;
}

/* Эффект при наведении */
.telegram-button:hover {
  color: white; /* Текст становится белым */
  background-color: #0088cc; /* Фон становится синим */
  border-color: #0077b3; /* Темнее граница */
  transform: translateY(-2px); /* Лёгкое поднятие */
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* Активный статус (при клике) */
.telegram-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 600px) {
  .telegram-button {
    padding: 12px 24px;
    font-size: 15px;
  }
}



















































a:hover {
    text-decoration: none;
}


.water-info-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 24px auto;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.image-side {
  flex: 1 1 320px;
  min-width: 280px;
  position: relative;
}

.image-side img {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.text-side {
  flex: 2 1 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0 0 24px 0;
  font-style: italic;
}

.composition-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
}

.group-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 20px 0 12px 0;
}

.elements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elements-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.element-name {
  font-weight: 500;
  color: #444;
  flex: 0 0 120px;
}

.element-value {
  font-weight: 600;
  color: #3498db;
  text-align: right;
  flex: 0 0 140px;
}

.divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 20px 0;
}

.param-value {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.cta-section {
  text-align: center;
  margin-top: auto;
}

.cta-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 16px 0;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  background-color: #16a085;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(22, 160, 133, 0.2);
}



/* Адаптация для экранов < 768px */
@media (max-width: 768px) {
  .water-info-block {
    flex-direction: column;
    border-radius: 12px;
    margin: 16px auto;
  }

  .image-side,
  .text-side {
    flex: 1 1 auto;
    min-width: auto;
  }

  .image-side {
    order: 1;
  }

  .text-side {
    order: 2;
    padding: 24px 16px;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .group-title {
    font-size: 1rem;
  }

  .element-name,
  .element-value {
    flex: none;
    width: 100%;
    text-align: left;
  }

  .elements-list li {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* Дополнительно: мелкие экраны (< 480px) */
@media (max-width: 480px) {
  .water-info-block {
    margin: 12px auto;
    border-radius: 10px;
  }

  .text-side {
    padding: 20px 12px;
  }

  .product-title {
    font-size: 1.6rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}






























.button-container {
  padding: 10px;
}

.cta-section-sostav {
  display: block;                  /* Кнопка становится блочным элементом */
  width: 100%;                   /* Занимает всю ширину контейнера */
  max-width: 100%;             /* Гарантирует отсутствие переполнения */
  padding: 12px 12px;          /* Отступы внутри кнопки */
  background-color: #3498db;    /* Синий фон */
  color: white;                 /* Белый текст */
  text-decoration: none;        /* Убираем подчёркивание */
  border-radius: 12px;         /* Скругление углов */
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;            /* Текст внутри кнопки по центру */
  box-sizing: border-box;      /* Учитываем padding в общей ширине */
  transition: background-color 0.3s ease;
}

.cta-section-sostav:hover {
  background-color: #2980b9;   /* Тёмный оттенок при наведении */
  color: white;
}






.responsive-image {
  max-width: 80%;     /* Ограничиваем ширину картинки до 80% от родителя */
  height: auto;      /* Сохраняем пропорции */
  display: block;     /* Убираем лишние отступы */
  border-radius: 8px; /* Скругление углов */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Тень */
  margin: 0 auto;     /* Центрируем картинку внутри figure */
}

/* Дополнительно: уменьшаем картинку на мобильных */
@media (max-width: 768px) {
  .responsive-image {
    max-width: 60%; /* На мобильных — 60% от ширины экрана */
  }
}


.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem 0;
}

.content-left {
  flex: 0 0 auto; /* Фиксированная ширина под контент */
  margin-right: 4rem; /* Отступ между колонками */
  /* Убрано: align-items: center; — теперь содержимое выравнивается по левому краю */
}

.content-right {
  flex: 1 1 auto;
  text-align: center; /* Текст по центру в правой колонке */
}

.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-caption {
  margin-top: 0.5rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content-left,
  .content-right {
    flex: 1 1 100%;
    min-width: auto;
    margin-right: 0;
    text-align: center;
  }

  .content-left {
    order: 1;
    margin-bottom: 2rem;
  }

  .content-right {
    order: 2;
    margin-bottom: 0;
  }
}
































.footer-info {
  display: flex;
  justify-content: space-between; /* Блоки распределены по краям и центру */
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  color: #ffffff;
}

.info-block {
  flex: 1;
  min-width: 200px;
  text-align: center; /* ВАЖНО: центрируем содержимое внутри блока */
  padding: 0 10px;
}

/* Убираем лишние выравнивания для конкретных блоков */
.info-block.left,
.info-block.center,
.info-block.right {
  text-align: center;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
  }
  
  .info-block {
    width: 100%;
    max-width: 400px;
    margin: 10px auto;
    text-align: center; /* Сохраняем центрирование на мобильных */
  }
}
































.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(25% - 20px);
    max-width: 25%;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}


.gallery-item img {
    width: 60%;
    height: auto;
    display: block;          /* Важно: превращает img в блочный элемент */
    border-radius: 8px;
    margin: 0 auto;          /* Центрирует по горизонтали */
}

.caption {
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
    width: 60%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Адаптивные медиа-запросы */
@media (max-width: 1200px) {
    .gallery-item {
        flex: 1 1 calc(33.33% - 20px);
        max-width: 33.33%;
    }
    .gallery-item-vid {
        flex: 1 1 calc(33.33% - 20px);
        max-width: 33.33%;
    }
}

@media (max-width: 900px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
        max-width: 50%;
    }
    .gallery-item-vid {
        flex: 1 1 calc(50% - 20px);
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    .gallery-item,
    .gallery-item-vid {
        flex: 1 1 calc(50% - 20px);
        max-width: 50%;
    }
    .gallery-item img,
    .gallery-item-vid img,
    .caption {
        width: 100%;
    }
}


.gallery-item-vid {
    flex: 1 1 calc(25% - 20px);
    max-width: 25%;
    text-align: center;
    border: 2px solid #ddd;      /* Обводка: толщина, тип, цвет */
    border-radius: 8px;         /* Скругление углов (как у картинки) */
    padding: 2px;              /* Отступ внутри рамки */
}

.gallery-item-vid img {
    width: 60%;
    height: auto;
    display: block;          /* Важно: превращает img в блочный элемент */
    border-radius: 8px;
    margin: 0 auto;          /* Центрирует по горизонтали */
}


/* Адаптация для экранов < 1200px: 3 картинки в ряд */
@media (max-width: 1200px) {
    .gallery-item-vid {
        flex: 1 1 calc(33.33% - 20px);
        max-width: 33.33%;
    }
}

/* Адаптация для экранов < 900px: 2 картинки в ряд */
@media (max-width: 900px) {
    .gallery-item-vid {
        flex: 1 1 calc(50% - 20px);
        max-width: 50%;
    }
}

/* Адаптация для экранов < 600px: 1 картинка в ряд */
@media (max-width: 600px) {
    .gallery-item-vid {
        flex: 1 1 100%;
        max-width: 100%;
    }
}





















#block-1669727139382 .fa-tag::before  {
display: none;
}

#block-1711730678771 > div > div > div > div > div > div > div > a:nth-child(1){
margin-right: 35%;
}

#block-1669727139382  .btn {
margin: 10px;
}


#block-1711736233891 .img-resp {
margin-right: 10%;
margin-left: 3.5%;
margin-bottom: 10%;
}


#block-1713419784806 .link-wrap {
display: none;

}
#block-1713419784806 .amount{
display: none;
}
#block-1713419784806 .price-value::before{
display: none;

}

#block-1713419784806 .title{

margin: 0;
}


#block-1427120885778 span.mwp-fb-input-label{
<style>
<a href="https://баранчинская-вода.рф/agreement.html/">ddd</a>

</style>
}
#block-1427120885778 .parsley-errors-list li.parsley-pattern{
color: white;
text-decoration: underline;

}

#block-1427120885778 .parsley-errors-list li.parsley-required{
color: white;
text-decoration: underline;

}


#block-1716273459433 > div > div > div > div > div > div > div > div > div.div1{
    float:left;
    
}
#block-1716273459433 > div > div > div > div > div > div > div > div > div.div2{
    float:right;
 
}
#block-1716273459433 > div > div > div > div > div > div > div > div > div.water{
    float:left;
    width: 80%;
}
#block-1733728165941 > div > div > div > div > div > div > div{
display: block;
  
  border: 1px solid red;

}
#block-1716273459433 > div > div > div > div > div > div > div > div > div.price{
    float:right;
width: 15%;
  
      text-align: center;
      
color: red;
 
}
#block-1716273459433 > div > div > div > div > div > div > div > div > div.div0{
    float:left;
}
#block-1716273459433 > div > div > div > div > div > div > div > div > div.div3{
    float:right;
}
#block-1733728176809 > div > div > div > div > div{

  
  border: 1px solid red;
}



#block-1761547303503 > div > div > div > div > div > div:nth-child(1){
border: 1px solid red;

}

#block-1762401395651 > div > div > div > div > div > div > div{
border: 1px solid red;
}




#block-1761729666656 > div > div > div > div > div > div.col-10.offset-1.margin-xs-t-30.text-center.col-md-7.margin-md-t-0 > div > a {
  color: black;
  font-family: "Lato", sans-serif;
}
.container, .container-lg, .container-md, .container-sm, .container-xl{
    max-width: 1900px;
}


.rounded-button{
  background-color: transparent; ; /* Белый фон */
  color: white; /* Изначальный цвет текста черный */
  border: 1px solid white; /* Белая обводка */
  padding: 10px 20px; /* Отступы внутри кнопки */
  text-align: center; /* Выравнивание текста по центру */
  text-decoration: none; /* Убираем подчеркивание ссылок */
  display: inline-block; /* Делаем кнопку блочным элементом */
  font-size: 16px; /* Размер шрифта */
  cursor: pointer; /* Меняем курсор при наведении */
  border-radius: 15px; /* Скругление углов */
  transition: background-color 0.3s ease, color 0.3s ease; /* Плавный переход */
 
}

.rounded-button:hover {
  background-color: #ffffff; /* Белый фон при наведении */
  color: #28337e; /* Синий цвет текста при наведении */
  
}
.rounded-button-bar:hover {
  background-color: #28337e; /* Белый фон при наведении */

  color: white; /* Синий цвет текста при наведении */

  
}

.rounded-button-bar{
  background-color: transparent; ; /* Белый фон */
  color: #007aff; /* Изначальный цвет текста черный */
  border: 1px solid #007aff; /* Белая обводка */
  padding: 10px 20px; /* Отступы внутри кнопки */
  text-align: center; /* Выравнивание текста по центру */
  text-decoration: none; /* Убираем подчеркивание ссылок */
  display: inline-block; /* Делаем кнопку блочным элементом */
  font-size: 16px; /* Размер шрифта */
  cursor: pointer; /* Меняем курсор при наведении */
  border-radius: 15px; /* Скругление углов */
  transition: background-color 0.3s ease, color 0.3s ease; /* Плавный переход */
 
 
}


.mwp-fb-input-label{

color:;
}





#block-1761814269138 > div > div > div > div{
margin-top: -50px;
max-height: 0px;
}



.menu {

}

.menu a {
  text-decoration: none;
  color: #333;
}
#block-1761813821438 > div > div > div > div > div > div > div.nav-links.menu-responsive{

 align-items: center;
  

}








#block-1762404373192 > div > div > div > div > div > div:nth-child(3) > div {
  width: 350px;
  height: 340px;
  border: 1px solid #28337e;
  border-radius: 15px;
  box-sizing: border-box;
  
  /* Центрирование самого блока */
  margin-left: auto;
  margin-right: auto;
  
  /* Центрирование содержимого внутри блока */
  display: flex;
  justify-content: center;
  align-items: center;
}





#block-1762404373192 > div > div > div > div > div > div:nth-child(1) > div {
  width: 340px;
  height: 280px;
  border: 1px solid #28337e;
  border-radius: 15px;
  box-sizing: border-box;
  
  /* Центрирование самого блока */
  margin-left: auto;
  margin-right: auto;
  
  /* Центрирование содержимого внутри блока */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Плавный переход для эффекта увеличения */
  transition: transform 0.3s ease;
}

#block-1762404373192 > div > div > div > div > div > div:nth-child(1) > div:hover {
  /* Увеличение блока на 10% при наведении */
  transform: scale(1.1);
}


#block-1762404373192 > div > div > div > div > div > div:nth-child(2) > div {
  width: 280px;
  height: 340px;
  border: 1px solid #28337e;
  border-radius: 15px;
  box-sizing: border-box;
  
  /* Центрирование самого блока */
  margin-left: auto;
  margin-right: auto;
  
  /* Центрирование содержимого внутри блока */
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Плавный переход для эффекта увеличения */
  transition: transform 0.3s ease;
}



#block-1762404373192 > div > div > div > div > div > div:nth-child(1) > div:hover {
  /* Увеличение блока на 10% при наведении */
  transform: scale(1.1);
}