.card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card .img-wrap {
  cursor: crosshair;
}

img.style.transition = 'transform 0s'; 

/* ---------- VARIABLES & RESET ---------- */
html {
  scroll-behavior: smooth;
}
#order-form-block {
  scroll-margin-top: 80px;
}

:root {
  --emerald: #006a4e;
  --emerald-light: #e6f3ef;
  --chocolate: #4d392d;
  --black: #222;
  --gray: #666;
  --white: #fff;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --max: 1140px;
  --gap: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  color: var(--black);
  background: #fafafa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  background: var(--white);
  border: 2px solid var(--emerald);
  color: var(--emerald);
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.25s;
}

.btn:hover {
  background: var(--emerald);
  color: var(--white);
}

/* ---------- HEADER ---------- */
/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7); /* прозрачный фон */
  backdrop-filter: blur(12px); /* эффект стекла */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 70px;
}

.header-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Логотип: картинка + текст */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--emerald);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 44px;
  width: auto;
}

/* Десктоп-меню */
.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.desktop-nav a:hover {
  color: var(--emerald);
}

.desktop-nav a:hover::after {
  width: 60%;
}

/* Эффект активного пункта */
.desktop-nav a.active {
  color: var(--emerald);
}
.desktop-nav a.active::after {
  width: 100%;
}

/* Бургер (скрыт на десктопе) */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- МОБИЛЬНОЕ МЕНЮ ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow-medium);
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 1000;
}

.mobile-nav a {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

/* показать/скрыть мобильное меню */
.mobile-nav.show {
  display: flex;
}

/* Адаптив: прячем десктоп-меню и показываем бургер */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}
/* ---------- HERO (заменён слайдером — старые стили убраны) ---------- */
/* Слайд 0 слайдера использует hero.webp через inline style */
.slide-hero .slide-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.slide-hero .slide-promo-content {
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-slide-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem) !important;
}

/* ---------- BENEFITS ---------- */
.benefits {
  padding: 4rem 0;
}

.benefits .container {
  max-width: var(--max);
  margin: 0 auto;
}

.benefits .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.img-benefit {
  width: 80px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ════════════════════════════════════════
   ГЛАВНЫЙ СЛАЙДЕР (заменяет hero, стоит сразу после header)
   ════════════════════════════════════════ */
.main-slider {
  position: relative;
  background: #0b1f14;
  overflow: hidden;
  height: 70vh;
  min-height: 420px;
  max-height: 700px;
}

.slider-overflow {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Общие свойства слайда ── */
.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ── Слайд 1: рекламный баннер ── */
.slide-promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s ease;
}

.main-slider[data-active="0"] .slide-promo-bg {
  transform: scale(1);
}

.slide-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgb(24 122 87 / 90%) 0%, rgba(0, 30, 18, 0.72) 55%, #5fb33624 100%);
}

.slide-promo-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 3.5rem;
  color: #fff;
  max-width: 680px;
}

.promo-tag {
  display: inline-block;
  background: #e8360f;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1.1rem;
  width: fit-content;
  animation: promo-pulse 2.2s infinite;
}

@keyframes promo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 54, 15, 0.55); }
  55%       { box-shadow: 0 0 0 9px rgba(232, 54, 15, 0); }
}

.promo-slide-title {
  font-size: clamp(1.55rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 0.85rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.promo-slide-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  opacity: 0.92;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
}

.promo-slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.8rem;
}

.promo-badge-item {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 22px;
}

.promo-badge-highlight {
  background: rgba(255, 210, 0, 0.22);
  border-color: rgba(255, 210, 0, 0.65);
  color: #ffe84d;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.promo-slide-btn {
  display: inline-block;
  background: var(--emerald);
  color: #fff;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 5px 18px rgba(0, 106, 78, 0.5);
}

.promo-slide-btn:hover {
  background: #005240;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 106, 78, 0.6);
}

/* ── Слайд 2: видео ── */
.slide-video {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-video-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* ── Стрелки навигации ── */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s;
  padding: 0;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 1.2rem; }
.slider-next { right: 1.2rem; }

.slider-nav svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Точки-индикаторы ── */
.slider-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, border-color 0.22s;
  padding: 0;
}

.slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* ── Цены и таймер внутри слайдов акций из БД ── */
.promo-slide-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.4rem;
}

.ps-price-new {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #ffe84d;
  line-height: 1;
}

.ps-price-unit {
  font-size: 0.75em;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.ps-price-old {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}

.ps-timer-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.ps-timer-lbl {
  font-size: 0.82rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* Таймер .pb-timer переиспользуется из имеющихся стилей */

/* ── Адаптив слайдера ── */
@media (max-width: 768px) {
  .main-slider {
    height: 60vw;
    min-height: 280px;
    max-height: 480px;
  }
  .slide-promo-content {
    padding: 1.4rem 1.4rem;
    max-width: 100%;
  }
  .promo-slide-badges {
    gap: 7px;
  }
  .slider-nav {
    width: 38px;
    height: 38px;
  }
  .slider-prev { left: 0.6rem; }
  .slider-next { right: 0.6rem; }
}

@media (max-width: 480px) {
  .main-slider {
    height: 72vw;
    min-height: 240px;
    max-height: 380px;
  }
  .promo-slide-badges {
    display: none;
  }
  .promo-slide-sub {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promo-tag {
    margin-bottom: 0.6rem;
  }
  .promo-slide-title {
    margin-bottom: 0.7rem;
  }
  .hero-slide-title {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }
}

/* ---------- CATALOG ---------- */
.catalog {
  padding: 0rem 0;
}

.catalog .container {
  /* max-width: var(--max); */
  margin: 0 auto;
  padding: 0 1rem;
}

.catalog h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--emerald);
  font-size: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
  justify-items: center;
}

/* ---------- CARD ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--emerald-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  max-width: 340px;
  width: 100%;
  height: 100%;
}

.card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card-body {
  padding: 1.2rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.color-option {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--emerald-light);
  cursor: pointer;
  transition: 0.2s;
}

.color-option.selected {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px var(--emerald);
}

.color-label {
  font-size: 0.7rem;
  color: var(--chocolate);
}

.processing-select {
  width: 50%;
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E")
    no-repeat right 0.5rem center/18px 18px;
  background-color: var(--white);
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.processing-select:focus {
  border-color: var(--emerald);
  outline: none;
}

.price-info {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.price-value {
  font-weight: 700;
  color: var(--emerald);
}

.order-btn {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--emerald);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: 0.2s;
}

.order-btn:hover {
  background: #005240;
}

/* ---------- О КОМПАНИИ ---------- */
.about {
  width: 100%;
  background: var(--emerald-light);
}

.about-container {
  display: flex;
  margin: 0 auto;
  /* max-width: 1200px; */
}

.about-left,
.about-right {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 3-D эффект для левого блока */
.about-left {
  background: var(--white);
  position: relative;
  z-index: 2;
}

.about-right {
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow-light);
  position: relative;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  flex-grow: 1;
}

.about-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-benefits {
  position: relative;
  width: 100%;
  max-width: 320px; /* ограничиваем «цветок» */
  margin: 0 auto;
}

/* SVG-цветок показываем только на десктопе */
.flower {
  width: 100%;
  height: auto;
  display: block;
}

/* список скрыт на десктопе */
.benefit-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  color: #fff;
}

.benefit-list li {
  margin: 0.75rem 0;
}

/* на малых экранах «распрямляем» в список */
@media (max-width: 600px) {
  .flower {
    display: none;
  }
  .benefit-list {
    display: block;
  }
}
/* Дипломы */
.about-certificates {
  max-width: var(--max);
  margin: 3rem auto 0;
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin-top: 1.5rem;
}

.cert-grid img {
  width: 100%;
  height: auto;
  /* max-height: 300px; */
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-light);
  background: #fff;
  padding: 0.5rem;
  margin-bottom: 30px;
}

/* Адаптив */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-benefits svg {
    display: none; /* на мобилках убираем дугу */
  }

  .about-dots {
    display: none;
  }

  .about-benefits li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .about-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  position: relative;
  background: #023326;
  color: #d4ead9;
  padding: 56px 20px 0;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
}



/* фон-логотип */
.footer-bg {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-bg-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* контент */
.container.footer-content {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  z-index: 1;
  padding-bottom: 40px;
}

.footer-info,
.footer-discount {
  flex: 1 1 200px;
}

.footer-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-discount h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-info p {
  font-size: 0.88rem;
  color: #88b094;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-info a {
  color: #b0d4ba;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-info a:hover {
  color: #ffffff;
}

.footer-discount ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-discount li {
  font-size: 0.9rem;
  color: #88b094;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border-left: 3px solid #2e7d4f;
  transition: background 0.2s;
}

.footer-discount li:hover {
  background: rgba(255,255,255,0.08);
}

.footer-discount li strong {
  color: #6ecf87;
  font-size: 1.05rem;
  margin-left: auto;
}

/* Нижняя полоса */
.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 20px;
  margin-top: 0;
  font-size: 0.78rem;
  color: #4e7a5c;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
}

.footer-bottom a {
  color: #6eaa84;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-legal-notice {
  font-size: 0.75rem;
  color: #3d5e47;
  width: 100%;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

/* адаптив */
@media (max-width: 768px) {
  .footer-bg { display: none; }
  .container.footer-content {
    justify-content: center;
    text-align: center;
    gap: 28px;
  }
  .footer-discount li { justify-content: center; }
  .footer-discount li strong { margin-left: 6px; }
  .footer-info a { justify-content: center; }
}
/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .benefits .grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1rem;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

:root {
  --flower-size: 160px;
  --petal-size: 110px;
}

/* ====== СКИДКИ-ЦВЕТОК ====== */
/* 1. Грид: контакты + скидки рядом */
.contacts-and-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin: 0rem 0;
  align-items: start;
}

/* 2. Контакты */
.contacts h3 {
  margin: 0.3rem 0 0.8rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  text-decoration: none;
  margin: 0.35rem 0;
  transition: color 0.2s;
}
.contact-link:hover {
  color: var(--emerald);
}
.icon {
  width: 18px;
  height: 18px;
  fill: var(--emerald);
  flex-shrink: 0;
}

/* 3. Бейдж скидок */
.discount-badge {
  background: linear-gradient(135deg, #fff 0%, #f1fff9 100%);
  color: var(--emerald);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
  min-width: 200px;
}
.discount-badge h4 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}
.discount-badge p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}
.discount-badge strong {
  font-weight: 700;
}

/* 4. Адаптив: на узких экранах бейдж под контактами */
@media (max-width: 600px) {
  .contacts-and-discount {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .discount-badge {
    margin-top: 0.5rem;
    min-width: 0;
  }
}
/* ====== СПИСОК ПРЕИМУЩЕСТВ ====== */
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 1rem;
}

.benefit-list li {
  position: relative;
  padding-left: 24px;
  color: #fff;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 480px) {
  :root {
    --flower-size: 130px;
    --petal-size: 90px;
  }
  .petal {
    font-size: 0.8rem;
  }
}
/* --- форма --- */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  align-items: center;
}

/* «или» между полями */
.or {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* поля и кнопка */
.order-form input,
.order-form textarea {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: background 0.25s, box-shadow 0.25s;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 2px var(--emerald);
}

button[type="submit"] {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #e7f9f7 100%);
  color: var(--emerald);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* мобильная адаптация */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .or {
    order: -1;
    margin: 0.25rem 0;
  }
}

.order-link .phone-icon {
  background: #ffffff00;
  color: #006a4e;
}


/* ══════════════════════════════════════════════════════════
   СЕКЦИЯ АКЦИЙ — .promos-section
══════════════════════════════════════════════════════════ */

.promos-section {
    padding: 50px 0px 30px;
    background: linear-gradient(337deg, #006a4e 0%, #006a4e 100%);
    position: relative;
    overflow: hidden;
}

/* Декоративный фон — деревянные прожилки */
.promos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    88deg,
    transparent 0px,
    rgba(255,255,255,.022) 1px,
    transparent 2px,
    transparent 44px
  );
  pointer-events: none;
}

/* Мягкое зеленоватое свечение посередине */
.promos-section::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 300px;
  background: radial-gradient(ellipse, rgba(0,106,78,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Шапка секции */
.promos-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.promos-fire {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
  animation: firePulse 1.8s ease-in-out infinite;
}
@keyframes firePulse {
  0%, 100% { transform: scale(1);   }
  50%       { transform: scale(1.18); }
}
.promos-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}
.promos-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* Сетка карточек */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

/* ── Карточка акции ── */
.promo-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,.45);
}

/* Картинка / паттерн */
.pc-img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a4a32, #0d2b1f);
  flex-shrink: 0;
}
.pc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.promo-card:hover .pc-img { transform: scale(1.06); }
/* Паттерн досок если нет фото */
.pc-img-pattern {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.055) 0px,
      rgba(255,255,255,.055) 28px,
      rgba(0,0,0,.18) 28px,
      rgba(0,0,0,.18) 30px
    ),
    linear-gradient(170deg, #2a5a3e 0%, #143828 100%);
}

/* Лента скидки */
.pc-ribbon {
  position: absolute;
  top: 16px; right: -8px;
  background: linear-gradient(135deg, #e8a020, #c87010);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 5px 18px 5px 12px;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 3px 14px rgba(232,160,32,.55);
  z-index: 2;
  animation: ribbonGlow 2.5s ease-in-out infinite;
}
@keyframes ribbonGlow {
  0%, 100% { box-shadow: 0 3px 14px rgba(232,160,32,.55); }
  50%       { box-shadow: 0 4px 24px rgba(232,160,32,.85); }
}
.pc-ribbon::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 0;
  border: 6px solid transparent;
  border-top-color: #8a4808;
  border-right-color: #8a4808;
}

/* Тело карточки */
.pc-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

/* Бейдж товара */
.pc-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,106,78,.35);
  border: 1px solid rgba(0,180,130,.2);
  color: #6dddb0;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

/* Заголовок */
.pc-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

/* Описание */
.pc-sub {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Цены */
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.pc-old {
  font-size: .9rem;
  color: rgba(255,255,255,.3);
  text-decoration: line-through;
  font-weight: 500;
}
.pc-new {
  font-size: 2rem;
  font-weight: 900;
  color: #f5c842;
  line-height: 1;
  letter-spacing: -.03em;
  text-shadow: 0 0 24px rgba(245,200,66,.35);
}
.pc-unit {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* Таймер */
.pc-timer-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.pc-timer-lbl {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin: 0 0 8px;
}
.pc-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pt-val {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 5px 8px 3px;
  min-width: 38px;
  text-align: center;
  display: block;
}
.pt-lbl {
  font-size: .58rem;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
  font-weight: 600;
}
.pt-sep {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,.2);
  margin-bottom: 14px;
}

/* CTA */
.pc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8a020, #d08010);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(232,160,32,.35);
  margin-top: auto;
}
.pc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,.55);
  color: #fff;
}
.pc-cta i { transition: transform .2s; }
.pc-cta:hover i { transform: translateX(4px); }

/* Адаптив */
@media (max-width: 640px) {
  .promos-section { padding: 48px 0 56px; }
  .promos-grid { grid-template-columns: 1fr; }
  .pc-new { font-size: 1.7rem; }
}

/* ══════════════════════════════════════════════════════════
   БАННЕР АКЦИИ — v3 (яркий, компактный)
══════════════════════════════════════════════════════════ */

.promos-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-banner {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.13);
  transition: transform .25s, box-shadow .25s;
  background: #fff;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}
.promo-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
}

/* ── Фото ── */
.pb-left {
  position: relative;
  background: #dde8d8;
  overflow: hidden;
  min-height: 260px;
}
.pb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.promo-banner:hover .pb-img { transform: scale(1.05); }
.pb-img-placeholder {
  width: 100%; height: 100%; min-height: 260px;
  background: repeating-linear-gradient(
    90deg, rgba(255,255,255,.12) 0 26px, rgba(0,0,0,.06) 26px 28px
  ), linear-gradient(160deg, #c8d8c0, #a8bca0);
}

/* Бейдж */
.pb-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #d63031;
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(214,48,49,.45);
}

/* ── Правая панель ── */
.pb-right {
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-top: 3px solid #1a6b38;
}

/* Заголовок */
.pb-title {
  font-size: 1rem;
  font-weight: 900;
  color: #0f2414;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
}
.pb-sub {
  font-size: .76rem;
  color: #6a8a6a;
  margin: -6px 0 0;
  font-weight: 400;
  line-height: 1.4;
}

/* ── Цены ── */
.pb-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #f2f8f2;
  border-radius: 9px;
  padding: 10px 14px;
  border-left: 3px solid #1a6b38;
}
.pb-price-main {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.pb-price-new {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f2414;
  letter-spacing: -.03em;
}
.pb-ruble {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2414;
}
.pb-price-main .pb-price-unit {
  font-size: .7rem;
  color: #6a8a6a;
  font-weight: 500;
  margin-left: 4px;
  align-self: flex-end;
  padding-bottom: 2px;
}
.pb-price-old {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.pb-old-val {
  font-size: .82rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}
.pb-price-old .pb-price-unit { font-size: .68rem; color: #ccc; }

.pb-savings {
  background: #d63031;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Таймер ── */
.pb-timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.pb-timer-lbl {
  font-size: .62rem;
  font-weight: 700;
  color: #5a7a5a;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.pb-timer { display: flex; align-items: center; gap: 3px; }

.promo-banner .pt-unit { display: flex; flex-direction: column; align-items: center; }
.promo-banner .pt-val {
  background: #1a6b38;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  min-width: 26px;
  padding: 2px 4px 1px;
  border-radius: 4px;
  text-align: center;
  display: block;
  font-variant-numeric: tabular-nums;
}
.promo-banner .pt-lbl {
  font-size: .5rem;
  color: #8aaa8a;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
  display: block;
  text-align: center;
}
.promo-banner .pt-sep {
  color: #c0d8c0;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ── Иконки характеристик — яркие пилюли ── */
.pb-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pb-icon-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 7px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.pb-icon-item i { font-size: .78rem; flex-shrink: 0; }

/* Каждая пилюля — свой цвет */
.pb-icon-item:nth-child(1) { background: #e8f4ec; color: #1a5c2e; }
.pb-icon-item:nth-child(1) i { color: #1a8c46; }

.pb-icon-item:nth-child(2) { background: #e3f2fb; color: #0d4f7a; }
.pb-icon-item:nth-child(2) i { color: #1976d2; }

.pb-icon-item:nth-child(3) { background: #fff8e1; color: #7a5200; }
.pb-icon-item:nth-child(3) i { color: #f5a623; }

.pb-icon-item:nth-child(4) { background: #f3e8ff; color: #5c1a8c; }
.pb-icon-item:nth-child(4) i { color: #9c27b0; }

/* ── CTA ── */
.pb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #1a6b38;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .18s, transform .18s;
  box-shadow: 0 3px 10px rgba(26,107,56,.3);
  align-self: flex-start;
  margin-top: auto;
}
.pb-cta:hover {
  background: #145228;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Адаптив ── */
@media (max-width: 700px) {
  .promo-banner { grid-template-columns: 180px 1fr; }
  .pb-right { padding: 14px 16px 14px; }
}
@media (max-width: 520px) {
  .promo-banner { grid-template-columns: 1fr; }
  .pb-left { min-height: 180px; max-height: 200px; }
  .pb-right { border-top: 3px solid #1a6b38; padding: 14px 14px 12px; }
  .pb-cta { width: 100%; }
}
/* 1. Настройка контейнера контента внутри слайда */
.slide-db-promo .slide-promo-content {
  display: flex;
  flex-direction: row; /* Текст слева, картинка справа */
  align-items: center;
  justify-content: space-between;
  max-width: 1200px; /* Ограничиваем ширину, чтобы не растягивалось слишком сильно */
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2; /* Поверх затемнения */
}

/* 2. Колонка с текстом */
.promo-text-col {
  flex: 1;
  padding-right: 20px;
  max-width: 60%; /* Текст занимает не более 60% */
}

/* 3. Блок с картинкой товара (СПРАВА) */
.promo-product-img {
  flex: 0 0 350px; /* Фиксированная ширина блока картинки */
  height: 350px;   /* Фиксированная высота */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.promo-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Картинка вписывается полностью, не обрезаясь */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); /* Тень для объема */
  border-radius: 8px;
}

/* 4. Адаптив для мобильных (чтобы не ломалось на телефоне) */
@media (max-width: 768px) {
  .slide-db-promo .slide-promo-content {
    flex-direction: column-reverse; /* Картинка сверху, текст снизу */
    padding: 20px;
    text-align: center;
  }

  .promo-text-col {
    max-width: 100%;
    padding-right: 0;
  }

  .promo-product-img {
    flex: none;
    width: 100%;
    max-width: 250px; /* Меньше размер на телефоне */
    height: 250px;
    margin: 0 auto 20px auto;
  }
  
  .promo-slide-title {
    font-size: 1.5rem !important; /* Чуть меньше шрифт на мобильном */
  }
}
/* ══ УЛУЧШЕНИЯ СЛАЙДОВ АКЦИЙ (добавлено) ══ */

/* Яркий фон для слайдов акций из БД */
.slide-db-promo .slide-promo-bg {
  background: linear-gradient(135deg, #082818 0%, #145228 50%, #0a3d20 100%);
}
.slide-db-promo .slide-promo-overlay {
  background: linear-gradient(130deg, rgba(8,60,30,0.88) 0%, rgba(15,80,42,0.60) 55%, rgba(5,25,12,0.80) 100%);
}

/* Декоративный блик */
.slide-db-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,220,50,0.07) 0%, transparent 50%),
              radial-gradient(ellipse at 15% 80%, rgba(26,160,80,0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* Тег акции — ярче */
.slide-db-promo .promo-tag {
  font-size: 0.95rem;
  background: linear-gradient(135deg, #ff3a0f, #d42800);
  box-shadow: 0 4px 16px rgba(232,54,15,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Цена — ярко-жёлтая с лёгким свечением */
.ps-price-new {
  color: #ffec00;
  text-shadow: 0 0 16px rgba(255,228,0,0.5);
}

/* Кнопка "Оформить заявку" — оранжевая, выделяется на зелёном */
.slide-db-promo .promo-slide-btn {
  background: linear-gradient(135deg, #ff8c00, #e06600);
  box-shadow: 0 5px 20px rgba(255,110,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.slide-db-promo .promo-slide-btn:hover {
  background: linear-gradient(135deg, #ffa020, #e07800);
  box-shadow: 0 8px 28px rgba(255,110,0,0.7);
}

/* ══ ФИКС: мобильный слайд акции — всё видно ══ */
@media (max-width: 768px) {
  .slide-db-promo .slide-promo-content {
    padding: 12px 16px;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .slide-db-promo .promo-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 6px;
  }

  .slide-db-promo .promo-slide-title {
    font-size: 1.1rem !important;
    margin-bottom: 5px;
    line-height: 1.25;
  }

  .slide-db-promo .promo-slide-sub {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .slide-db-promo .promo-slide-prices {
    margin-bottom: 8px;
    gap: 8px;
  }

  .slide-db-promo .ps-price-new {
    font-size: 1.5rem;
  }

  .slide-db-promo .ps-timer-wrap {
    margin-bottom: 10px;
    gap: 4px;
  }

  .slide-db-promo .promo-slide-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ══ ФИКС v2: увеличиваем высоту слайдера на мобилке для слайдов акций ══ */
@media (max-width: 768px) {
  /* Увеличиваем высоту слайдера чтобы влез весь контент */
  .main-slider {
    height: auto !important;
    min-height: 380px !important;
    max-height: none !important;
  }

  .slider-track,
  .slider-overflow {
    height: auto !important;
  }

  .slide {
    height: auto !important;
    min-height: 380px;
  }

  /* Контент акции — убираем фиксированную высоту, даём padding сверху */
  .slide-db-promo .slide-promo-content {
    height: auto !important;
    padding: 20px 16px 60px !important; /* снизу — место для точек */
    justify-content: center !important;
  }
}

/* ══════════════════════════════════════════
   ОБЩИЕ УЛУЧШЕНИЯ ДИЗАЙНА
══════════════════════════════════════════ */

/* Фон страницы чуть теплее */
body {
  background: #f4f7f5;
}

/* ── ХЕДЕР: чуть более выраженная тень ── */
.header {
  box-shadow: 0 2px 20px rgba(0, 106, 78, 0.1);
  border-bottom: 1px solid rgba(0, 106, 78, 0.08);
}

/* ── BENEFITS: зелёная полоска сверху + иконка крупнее ── */
.benefits {
  background: #fff;
  padding: 5rem 0;
}

.benefit-card {
  border-top: 3px solid transparent;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), #4caf72);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 106, 78, 0.13);
}

.img-benefit {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  padding: 14px;
  background: var(--emerald-light);
  border-radius: 29%;
  object-fit: contain;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
}

/* ── CATALOG: секция с фоном и заголовком ── */
.catalog {
  padding: 2rem 0;
  background: #f4f7f5;
}

.catalog h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2.5rem;
}

.catalog h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--emerald);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* ── КАРТОЧКИ КАТАЛОГА: тень мягче, ховер приятнее ── */
.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.28s, box-shadow 0.28s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 106, 78, 0.14);
}

.card .img-wrap {
  border-radius: 16px 16px 0 0;
}

.order-btn {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  background: var(--emerald);
  transition: background 0.2s, transform 0.2s;
}

.order-btn:hover {
  background: #005240;
  transform: translateY(-1px);
}

/* ── О КОМПАНИИ: плавнее границы ── */
.about-left {
  border-radius: 0;
}

.about-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--emerald);
  border-radius: 2px;
  margin-top: 10px;
}

/* Контакты в about */
.contacts h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  color: var(--black);
  font-size: 0.95rem;
}

.contact-link:hover {
  background: var(--emerald-light);
  color: var(--emerald);
}

/* Форма заявки */
.about-right {
  background: var(--emerald);
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ── ДИПЛОМЫ ── */
.about-certificates {
  padding: 0 1.5rem 3rem;
}

.cert-grid img {
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.28s, box-shadow 0.28s;
}

.cert-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}

/* ── СЕКЦИОННЫЕ ЗАГОЛОВКИ — универсальный стиль ── */
.benefits .container > h2,
.about-certificates h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  position: relative;
}

.about-certificates h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--emerald);
  border-radius: 2px;
  margin: 10px auto 0;
}

