@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/unbounded-v8-cyrillic_cyrillic-ext_latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/unbounded-v8-cyrillic_cyrillic-ext_latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/unbounded-v8-cyrillic_cyrillic-ext_latin-600.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/unbounded-v8-cyrillic_cyrillic-ext_latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/unbounded-v8-cyrillic_cyrillic-ext_latin-800.woff2") format("woff2");
}
:root {
  --color-brand: #259da8;
  --color-white: #ffffff;
  --color-black: black;
  --color-background: #f1f6fb;
  --color-gray: #C5C9CE;
}

/* Global */
* {
  box-sizing: border-box;
}

body {
  position: relative;
  color: var(--color-black);
  background-color: var(--color-background);
  font-family: Unbounded, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

address {
  font-style: normal;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}

.a {
  display: inline-block;
}

.section {
  padding: 32px 0;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
}

.title-opis {
  text-transform: uppercase;
  color: var(--color-black);
}

.visualy-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================
   МОБІЛЬНЕ МЕНЮ ТА АНІМАЦІЯ БУРГЕРА
   ========================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  /* Додано відступ для вмісту */
}

.mobile-menu.open {
  display: block;
  transform: translateX(0);
}

.close-button,
.close-buttonn,
.close-buttonnn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu nav {
  margin-top: 80px;
  /* Відступ для навігації від кнопки закриття */
}

.mobile-menu ul {
  list-style: none;
  padding: 50px 0px;
  margin: 0;
  font-weight: 600;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.link-number-mobile-menu {
  background-image: url(/images/phone.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 30px;
}

.modal-home {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-home-content {
  position: relative;
  background-color: var(--color-background);
  margin: 15% auto;
  padding: 20px;
  border: none;
  border-radius: 15px;
  padding: 40px;
  width: 500px;
  height: 350px;
  animation-name: slideIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}

@keyframes slideIn {
  from {
    transform: translateY(300px);
    /* More intuitive: slide up from below */
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.heading-form {
  text-align: center;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.1s ease-in;
}

.close:hover {
  transform: scale(1.05);
}

.input-home-form {
  padding: 16px 12px;
  font-family: Unbounded, sans-serif;
  font-size: 14px;
  width: 100%;
  border: 2px solid var(--color-gray);
  border-radius: 15px;
  background-color: var(--color-white);
  margin-bottom: 10px;
}

.input-home-form:focus {
  border-color: var(--color-brand);
  outline: none;
}

.select-home-form {
  padding: 16px 12px;
  font-family: Unbounded, sans-serif;
  font-size: 14px;
  width: 100%;
  border: 2px solid var(--color-gray);
  border-radius: 15px;
  background-color: var(--color-white);
}

.select-home-form:focus {
  border-color: var(--color-brand);
  outline: none;
}

.label-home-form {
  display: block;
}

.input-form {
  margin-bottom: 10px;
}

#success-message {
  color: #15803d;
  background-color: #f0fdf4;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 0.375rem;
  border: 1px solid #16a34a;
  display: none;
}

@media screen and (max-width: 520px) {
  .modal-home-content {
    margin: 0;
    /* Забираємо відступи */
    border-radius: 0;
    /* Забираємо заокруглення */
    width: 100%;
    /* Робимо ширину на весь екран */
    height: 100%;
    /* Робимо висоту на весь екран */
    padding: 20px;
    /* Залишаємо невеликі внутрішні відступи */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Центруємо контент по вертикалі */
  }
  .heading-form {
    margin-top: 20px;
    /* Додаємо відступ зверху для заголовка */
  }
}
/* =========================================
   ПОКРОКОВА ФОРМА (WIZARD)
   ========================================= */
.wizard-car-name {
  text-align: center;
  font-family: "Unbounded", sans-serif;
  color: var(--color-brand, #259da8);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: -15px;
}

.wizard-progress {
  width: 100%;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  margin-bottom: 25px;
  overflow: hidden;
}
.wizard-progress .progress-bar {
  height: 100%;
  background-color: var(--color-brand, #259da8);
  width: 25%; /* Початково 1 крок з 4 */
  transition: width 0.3s ease;
}

.wizard-step {
  animation: fadeIn 0.4s ease;
}
.wizard-step.is-hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-title {
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}

/* Красиві радіо-кнопки замість стандартних */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.radio-card {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Unbounded", sans-serif;
}
.radio-card input[type=radio] {
  display: none; /* Ховаємо стандартний кружечок */
}
.radio-card span {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}
.radio-card:hover {
  border-color: #ccc;
}
.radio-card {
  /* Коли вибрано (checked) */
}
.radio-card:has(input[type=radio]:checked) {
  border-color: var(--color-brand, #259da8);
  background-color: rgba(37, 157, 168, 0.05); /* Легкий фон бренду */
}
.radio-card:has(input[type=radio]:checked) span {
  color: var(--color-brand, #259da8);
}

/* Кнопки навігації (Вліво / Вправо) */
.wizard-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.wizard-buttons .button-form {
  flex: 1; /* Змушує обидві кнопки ділити простір порівну */
  width: auto; /* Скидаємо ширину 100% з базового класу */
  margin-bottom: 0;
  /* Зменшуємо розмір спеціально для візарда */
  padding: 12px 20px;
  font-size: 16px;
  font-family: "Unbounded", normal;
}
.wizard-buttons .outline-btn {
  background: transparent;
  border: 2px solid #ccc;
  color: #555;
  box-shadow: none;
}
.wizard-buttons .outline-btn:hover {
  border-color: #999;
  color: #333;
  transform: none; /* Відключаємо збільшення при наведенні для кнопки "Назад" */
}

@media screen and (max-width: 480px) {
  .wizard-buttons {
    gap: 10px; /* Тепер компілятор знає, що це для .wizard-buttons */
  }
  .wizard-buttons .button-form {
    padding: 10px 10px; /* Ще менші відступи для маленьких екранів */
    font-size: 14px; /* Менший шрифт, щоб текст вліз */
  }
}
/* =========================================
   МОДАЛЬНЕ ВІКНО
   ========================================= */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1005;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backdrop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal {
  background-color: var(--color-background, #ffffff);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: transform 0.3s ease;
  font-family: "Unbounded", sans-serif;
}
.backdrop.is-hidden .modal {
  transform: scale(0.9);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close-btn:hover {
  color: var(--color-brand, #259da8);
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.modal-form {
  display: flex;
  flex-direction: column;
}

.input-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label-home-form {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.input-home-form {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 0 15px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.input-home-form:focus {
  border-color: var(--color-brand, #259da8);
}

/* Коригування для бібліотеки intl-tel-input */
.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: 12px 0 0 12px;
}

.text-privacy-police {
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.4;
}
.text-privacy-police .link {
  color: var(--color-brand, #259da8);
  text-decoration: underline;
}

/* =========================================
   ВАЛІДАЦІЯ ТЕЛЕФОНУ
   ========================================= */
.error-msg {
  color: #ff3b30; /* Червоний колір для помилки */
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.error-msg.is-hidden {
  display: none;
}

.input-home-form.error {
  border-color: #ff3b30;
  background-color: #fffaf9; /* Легкий червоний відтінок фону */
}
.input-home-form.error:focus {
  border-color: #ff3b30;
  box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.2);
}

/* =========================================
   ВІКНО ПОДЯКИ
   ========================================= */
.modal-thanks {
  text-align: center;
  max-width: 400px;
}
.modal-thanks .thanks-icon {
  font-size: 60px;
  color: var(--color-brand); /* Твій фірмовий колір */
  margin-bottom: 20px;
}
.modal-thanks .modal-title {
  margin-bottom: 15px;
}
.modal-thanks .modal-subtitle {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* =========================================
   ПЛАВАЮЧА КНОПКА ЗВ'ЯЗКУ (FAB)
   ========================================= */
.floating-contact-wrap {
  display: none; /* За замовчуванням сховано (на десктопах) */
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 995; /* Має бути менше ніж z-index модального вікна (1000+) */
  /* Показуємо тільки на планшетах і телефонах */
}
@media screen and (max-width: 1060px) {
  .floating-contact-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Меню з іконками (виїжджає знизу) */
.floating-contact-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  /* Початковий стан: сховане, зміщене вниз */
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.3s;
  /* Коли додаємо клас active через JS */
}
.floating-contact-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Маленькі кнопки месенджерів */
.floating-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  /* Кольори брендів */
}
.floating-btn.viber {
  background-color: #732ce1;
}
.floating-btn.whatsapp {
  background-color: #25d366;
}
.floating-btn.telegram {
  background-color: #26a5e4;
}
.floating-btn.phone {
  background-color: var(--color-brand, #259da8);
}
.floating-btn:active {
  transform: scale(0.9);
}

/* Головна пульсуюча кнопка */
.floating-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Використовуємо твій фірмовий градієнт */
  background-image: linear-gradient(#7d8f91, var(--color-brand, #259da8) 100%, #fff);
  border: none;
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 157, 168, 0.4);
  cursor: pointer;
  /* Анімація пульсації */
  animation: pulse-animation 2s infinite;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.floating-main-btn i {
  transition: transform 0.3s ease;
}
.floating-main-btn {
  /* Зупиняємо пульсацію при відкритті */
}
.floating-main-btn.active {
  animation: none;
  /* Додатковий ефект прокручування іконки */
}
.floating-main-btn.active i {
  transform: rotate(90deg);
}

/* Сама анімація пульсації */
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 157, 168, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 157, 168, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 157, 168, 0);
  }
}
.button-hero {
  color: var(--color-white);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 15px 70px;
  box-shadow: 3px 3px 10px -2px #3f7a7f;
  transition: transform 0.1s ease-in;
}
@media screen and (max-width: 768px) {
  .button-hero {
    font-size: 20px;
    min-width: auto;
    max-width: 450px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .button-hero {
    font-size: 16px;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 15px 30px;
  }
}

.button-hero:hover {
  transform: scale(1.05);
}

.button-poslugi {
  color: var(--color-white);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-family: Unbounded, sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.1s ease-in;
}
@media screen and (max-width: 768px) {
  .button-poslugi {
    padding: 15px 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .button-poslugi {
    padding: 15px 15px;
    font-size: 14px;
  }
}

.button-poslugi:hover {
  transform: scale(1.05);
}

.button-form {
  color: var(--color-white);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 15px 70px;
  box-shadow: 3px 3px 10px -2px #3f7a7f;
  transition: transform 0.1s ease-in;
  width: 100%;
  margin-bottom: 10px;
}

.button-form:hover {
  transform: scale(1.05);
}

.button-cart {
  color: var(--color-white);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border-radius: 15px;
  border: none;
  cursor: pointer;
  font-family: Unbounded, sans-serif;
  font-size: 22px;
  font-weight: 500;
  padding: 15px 70px;
  max-width: 400px;
  box-shadow: 3px 3px 10px -2px #3f7a7f;
  transition: transform 0.1s ease-in;
}
@media screen and (max-width: 1060px) {
  .button-cart {
    font-size: 20px;
    min-width: auto;
    max-width: 450px;
    text-align: left;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .button-cart {
    font-size: 16px;
    min-width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 15px 30px;
  }
}

.button-cart:hover {
  transform: scale(1.05);
}

.link {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease-in;
}

.link:hover {
  color: var(--color-brand);
}

.link-phone {
  background-image: url(/images/phone.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  position: absolute;
  top: 110px;
  right: 20px;
}
@media screen and (max-width: 1280px) {
  .link-phone {
    display: none;
  }
}

.link-number {
  padding-left: 10px;
  font-weight: 600;
}

.link-privacy-police {
  background-image: url(/images/arow-right.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-bottom: 5px;
}

.link-privacy-police-text {
  padding-left: 40px;
}

.link-offer-agreement {
  background-image: url(/images/arow-right.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-bottom: 5px;
}

.link-offer-agreement-text {
  padding-left: 40px;
}

.footer-link-phone {
  background-image: url(/images/phone.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-bottom: 5px;
}

.footer-link-number {
  padding-left: 40px;
}

.link-mail {
  background-image: url(/images/mail.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  margin-bottom: 5px;
}

.link-mail-adress {
  padding-left: 40px;
}

.footer-link {
  margin-bottom: 5px;
}

/* =========================================
   ШАПКА (ПРОЗОРА З ФІКСАЦІЄЮ)
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 15px 0;
}
.header.scrolled {
  background-color: var(--color-background, #ffffff);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   ЛОГОТИП
   ========================================= */
.logo {
  display: flex;
  align-items: center;
  width: 180px;
}
.logo .image-logo {
  width: 100%;
  height: auto;
}

/* =========================================
   ПРАВА ЧАСТИНА (МЕНЮ + КОНТАКТИ)
   ========================================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1060px) {
  .header-right {
    display: none;
  }
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.header-menu .link {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header-menu .link:hover {
  color: var(--color-brand, #259da8);
}

/* Випадаюче меню */
.dropdown {
  position: relative;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 260px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100;
  list-style: none;
  margin: 0;
}
.dropdown-menu li {
  padding: 0;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333333;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover {
  background-color: transparent;
  color: var(--color-brand, #259da8);
}

.cursor-pointer {
  cursor: pointer;
}

/* =========================================
   БЛОК КОНТАКТІВ
   ========================================= */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Месенджери (Font Awesome 6) */
.socials {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-brand, #259da8); /* Твій фірмовий колір за замовчуванням */
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.socials .social-link i {
  font-size: 26px; /* Оптимальний розмір для Font Awesome 6 */
}
.socials .social-link:hover {
  transform: scale(1.1);
}
.socials .social-link:hover.viber {
  color: #732ce1;
}
.socials .social-link:hover {
  /* Фірмовий фіолетовий Viber */
}
.socials .social-link:hover.whatsapp {
  color: #25d366;
}
.socials .social-link:hover {
  /* Фірмовий зелений WhatsApp */
}
.socials .social-link:hover.telegram {
  color: #26a5e4;
}
.socials .social-link:hover {
  /* Фірмовий блакитний Telegram */
}

/* Телефон */
.link-number {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.link-number:hover {
  opacity: 0.8;
}
.link-number .phone-icon {
  font-size: 18px;
  color: var(--color-brand, #259da8);
}

/* Кнопка «Замовити дзвінок» */
.button-header {
  color: var(--color-white, #ffffff);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  box-shadow: 2px 2px 8px -2px #3f7a7f;
  transition: transform 0.1s ease-in;
}
.button-header:hover {
  transform: scale(1.05);
}

/* =========================================
   ГАМБУРГЕР
   ========================================= */
.hamburger-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
@media screen and (max-width: 1060px) {
  .hamburger-button {
    display: flex;
    position: relative;
  }
}
.hamburger-button.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-button.active .burger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-button.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.burger-line {
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-brand, #259da8);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.section-hero {
  position: relative;
  padding-top: 35vh;
  padding-bottom: 10vh;
  height: 100vh;
  box-sizing: border-box;
}

.hero-container {
  background-image: url(/images/home-fon-2-2.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container-minivan {
  background-image: url(/images/minivan-fon-1.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container-minibus {
  background-image: url(/images/minibus-fon-1.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container-bus {
  background-image: url(/images/bus-fon-1.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container-about {
  background-image: url(/images/about-fon.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-container-fon {
  display: flex;
}

.image-hero-fon {
  display: flex;
  flex-shrink: 0;
}

.hero-title {
  text-transform: uppercase;
  max-width: 900px;
  min-width: 470px;
  font-size: 42px;
  font-weight: 600px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 32px;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }
}

.hero-discription {
  max-width: 470px;
  min-width: 470px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hero-discription {
    font-size: 16px;
    min-width: auto;
    max-width: 450px;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .hero-discription {
    font-size: 14px;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }
}

.diagonal-text {
  position: relative;
  height: auto;
  font-size: 42px;
  font-family: "Unbounded", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-bottom: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .diagonal-text {
    font-size: 32px;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .diagonal-text {
    font-size: 24px;
    min-width: auto;
    max-width: 100%;
    text-align: left;
  }
}

.diagonal-text span {
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 0.5s ease;
  transform: translateX(-20px);
  display: inline-block;
}

.diagonal-text span:nth-child(1) {
  margin-left: 0px;
}

.diagonal-text span:nth-child(2) {
  margin-left: 60px;
}

.diagonal-text span:nth-child(3) {
  margin-left: 120px;
}

.show {
  opacity: 1 !important;
  transform: translateX(0);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
}

.hero-image-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-image-col img {
  /* Робимо малюнок великим і виразним */
  width: 100%;
  max-width: 750px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.carts-pidbir-transportu {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1280px) {
  .carts-pidbir-transportu {
    display: none;
  }
}

.cart-pidbir-transportu {
  flex-basis: calc((100% - 40px) / 3);
  gap: 20px;
}

.section-pidbir-opis {
  text-align: center;
  margin-bottom: 32px;
}

.card-transport {
  text-align: center;
}

.image-bus {
  width: 100%;
}

.image-minivan {
  width: 55%;
}

.image-minibus {
  width: 75%;
}

.image-minivan,
.image-minibus,
.image-bus {
  transition: transform 0.1s ease-in;
}

.image-minivan:hover,
.image-minibus:hover,
.image-bus:hover {
  transform: scale(1.05);
}

.title-opis-auto {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.slider-container {
  display: none;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .slider-container {
    display: block;
  }
}

.slider-wrapper {
  display: flex;
  /* Розміщуємо слайди в ряд */
  transition: transform 0.3s ease-in-out;
  /* Додаємо плавну анімацію при перемиканні */
  width: calc(300% + 40px);
  /* Загальна ширина всіх слайдів + трохи місця для кнопок */
}

.slide {
  flex: 0 0 33.3333333333%;
  /* Кожен слайд займає третину ширини wrapper */
  width: 33.3333333333%;
  /* Додатково задаємо ширину */
  padding: 20px;
  box-sizing: border-box;
  /* Враховуємо padding в ширині */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
}

.slider-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-navigation button {
  padding: 5px 5px;
  margin: 0 10px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .slide {
    padding: 15px;
  }
  .slider-navigation button {
    padding: 5px 5px;
  }
  .title-opis-auto {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .slide {
    padding: 10px;
    font-size: 14px;
  }
  .slider-navigation button {
    padding: 5px 5px;
  }
  .title-opis-auto {
    font-size: 14px;
  }
}
.carts-poslugi {
  display: flex;
  padding-top: 24px;
  gap: 20px;
  align-items: stretch;
  /* Розтягуємо елементи по висоті */
}

.li-carts-poslugi {
  flex-basis: calc((100% - 40px) / 3);
}

.cart-poslugi {
  padding: 20px;
  border: none;
  border-radius: 15px;
  box-shadow: 3px 3px 10px -2px #575b5c;
  height: 100%;
  /* Додаємо, щоб внутрішні картки розтягувалися всередині li */
  display: flex;
  /* Додаємо для гнучкості внутрішнього вмісту, якщо знадобиться */
  flex-direction: column;
  /* Розташовуємо внутрішній вміст вертикально */
}

.cp-1 {
  background-image: linear-gradient(rgba(197, 201, 206, 0.71), rgba(197, 201, 206, 0.71)), url(/images/transfer-posslugi.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cp-2 {
  background-image: linear-gradient(rgba(197, 201, 206, 0.71), rgba(197, 201, 206, 0.71)), url(/images/transport-poslugi.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cp-3 {
  background-image: linear-gradient(rgba(197, 201, 206, 0.71), rgba(197, 201, 206, 0.71)), url(/images/turisst-poslugi.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.title-opis {
  font-size: 20px;
  margin-bottom: 10px;
}

.cart-poslugi p {
  margin-bottom: 20px;
  flex-grow: 1;
  /* Щоб параграфи займали доступний простір і відштовхували кнопку до низу (за потреби) */
}

/* Стилі для планшетів (ширина екрана до 992px) */
@media (max-width: 992px) and (min-width: 610px) {
  .carts-poslugi {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: stretch;
    /* Розтягуємо елементи по висоті */
    justify-content: flex-start;
    /* Початкове вирівнювання по лівому краю */
  }
  .li-carts-poslugi {
    flex-basis: calc((100% - 15px) / 2);
    /* Кожен елемент займає половину ширини */
  }
  /* Спеціальний стиль для третього елемента, щоб він був посередині, якщо він один у рядку */
  .li-carts-poslugi:nth-child(3) {
    /* Вибираємо саме третій елемент */
    flex-basis: 100%;
    /* Займає всю ширину рядка */
    display: flex;
    justify-content: center;
    /* Вирівнюємо вміст по центру */
  }
  .cart-poslugi {
    padding: 20px;
    border: none;
    border-radius: 15px;
    box-shadow: 3px 3px 10px -2px #575b5c;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .title-opis {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .cart-poslugi p {
    font-size: 16px;
    margin-bottom: 15px;
    flex-grow: 1;
  }
}
/* Стилі для мобільних пристроїв (ширина екрана до 768px) */
@media screen and (max-width: 610px) {
  .carts-poslugi {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    /* Розтягуємо по висоті */
  }
  .li-carts-poslugi {
    flex-basis: 100%;
  }
  .cart-poslugi {
    padding: 15px;
    height: auto;
    /* На мобільних висота може бути автоматичною */
    display: flex;
    flex-direction: column;
  }
  .title-opis {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .cart-poslugi p {
    font-size: 14px;
    margin-bottom: 10px;
    flex-grow: 1;
  }
}
.carts-perevagi {
  display: flex;
  padding-top: 24px;
  gap: 20px;
}

.li-carts-perevagi {
  flex-basis: calc((100% - 30px) / 4);
}

.cart-perevagi {
  position: relative;
  padding: 20px;
  border: none;
  border-radius: 15px;
  background-color: var(--color-gray);
  box-shadow: 3px 3px 10px -2px #575b5c;
  width: 100%;
  min-height: 200px;
  max-height: 300px;
}

.perevagi-opis {
  width: 250px;
}

.perevagi-opis-text {
  position: relative;
  z-index: 1;
}

.cart-perevagi-number {
  color: var(--color-brand);
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 170px;
  font-weight: bold;
  line-height: 0;
  margin-bottom: 65px;
}

/* Від 1264px до 480px: два стовпчики */
@media (max-width: 1264px) and (min-width: 610px) {
  .carts-perevagi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .li-carts-perevagi {
    flex-basis: 100%;
  }
  .perevagi-opis {
    width: 100%;
    font-size: 16px;
  }
}
/* Нижче 480px: один стовпчик */
@media (max-width: 610px) {
  .carts-perevagi {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .li-carts-perevagi {
    flex-basis: 100%;
  }
  .perevagi-opis {
    width: 100%;
    font-size: 14px;
  }
}
.tab-container {
  width: 100%;
}

.tab-buttons {
  display: flex;
}

.tab-button {
  padding: 10px 20px;
  border: 1px solid var(--color-gray);
  background-color: var(--color-background);
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-basis: 25%;
  box-shadow: 3px 0px 6px -2px #575b5c;
}

.tab-button.active {
  background-color: var(--color-brand);
  color: var(--color-white);
  border: none;
}

.tab-content {
  border: 1px solid #ccc;
  padding: 20px;
  display: none;
  text-align: justify;
  border: none;
  border-radius: 0 0 15px 15px;
  box-shadow: 3px 3px 10px -2px #575b5c;
}

.tab-content.active {
  display: block;
}

.tab-content-text {
  margin: 0px;
}

/* Вертикальний вигляд для табів при ширині екрана менше 768px */
@media (max-width: 768px) {
  .tab-buttons {
    display: block;
  }
  .tab-button {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 0px;
    padding: 15px;
    font-size: 16px;
  }
  .tab-content {
    display: none;
    border-top: none;
  }
  .tab-content.active {
    display: block;
    margin-top: 0px;
    border-radius: 15px;
  }
}
.text-descriptions {
  text-align: justify;
  margin-bottom: 0px;
}

/* =========================================
   ПІДВАЛ САЙТУ (FOOTER)
   ========================================= */
.footer {
  /* Використовуємо твою змінну для сірого кольору (або ставимо дефолтний світло-сірий) */
  background-color: #c5c9ce;
  padding: 60px 0 30px;
  font-family: "Unbounded", sans-serif;
  color: #000000;
  margin-top: 50px; /* Відступ від основного контенту сторінки */
  /* НОВЕ: Тінь, що падає вгору (-8px) */
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.04);
  /* НОВЕ: Дуже тонка напівпрозора лінія для чіткості */
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* --- ВЕРХНЯ ЧАСТИНА (3 СТОВПЧИКИ) --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Легка лінія-розділювач */
  /* Адаптивність для планшетів та мобільних */
}
@media screen and (max-width: 900px) {
  .footer-top {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-col {
  flex: 1; /* Всі стовпчики займають однакову ширину */
  min-width: 250px;
}

/* 1 стовпчик: Бренд */
.footer-brand .footer-logo {
  display: inline-block;
  width: 180px;
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  width: 100%;
  height: auto;
}
.footer-brand .footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--color-brand, #259da8);
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.footer-socials .social-link:hover {
  transform: translateY(-3px);
  color: #ffffff;
}
.footer-socials .social-link:hover.facebook {
  background-color: #1877f2;
}
.footer-socials .social-link:hover.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

/* Заголовки стовпчиків */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #222222;
}

/* 2 та 3 стовпчик: Списки посилань */
.footer-links ul,
.footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a,
.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a i,
.footer-contacts a i {
  color: var(--color-brand, #259da8);
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.footer-links a:hover,
.footer-contacts a:hover {
  color: var(--color-brand, #259da8);
  transform: translateX(5px); /* Легкий зсув вправо при наведенні */
}

/* --- НИЖНЯ ЧАСТИНА (КОПІРАЙТ ТА ДОКУМЕНТИ) --- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #777777;
}
@media screen and (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-legal {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: var(--color-brand, #259da8);
  text-decoration: underline;
}
.footer-legal {
  /* Кнопка налаштування кукі виглядає як посилання */
}
.footer-legal .cookie-settings-btn {
  cursor: pointer;
}

.form-container-pitannya {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 15px;
  box-shadow: 3px 3px 10px -2px #575b5c;
}

.form-row-pitannya {
  display: flex;
  align-items: center;
  width: 100%;
}

.form-row label {
  margin-right: 10px;
}

.form-element {
  flex-grow: 1;
  margin-right: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  padding: 16px 12px;
  font-family: Unbounded, sans-serif;
  font-size: 14px;
  width: 100%;
  border: 2px solid var(--color-gray);
  border-radius: 15px;
  background-color: var(--color-white);
}

.form-element:focus {
  border-color: var(--color-brand);
  outline: none;
}

.form-row input.form-element {
  min-width: 0;
}

.text-privacy-police {
  text-align: center;
  font-size: 14px;
}

.button-form-pitannya {
  color: var(--color-white);
  background-image: linear-gradient(#7d8f91, #259da8 100%, #fff);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-family: Unbounded, sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 70px;
  box-shadow: 3px 3px 10px -2px #3f7a7f;
  transition: transform 0.1s ease-in;
}

.button-form-pitannya:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .form-row-pitannya {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-element {
    margin-right: 0;
  }
  .button-form-pitannya {
    width: 100%;
    padding: 15px 0;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 10px 0px;
  margin: 20px 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-brand);
}

.breadcrumb-item.active a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #718096;
}

.product-section {
  display: flex;
  padding: 0;
  margin: 40px auto;
  width: 100%;
  background-color: transparent;
  flex-direction: row;
  gap: 20px;
  position: relative;
}

.left-column {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.main-image-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  /* Додано фіксовану висоту */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 10px -2px #575b5c;
}

.main-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail-tabs {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  gap: 10px;
  width: 100%;
}

.thumbnail-tab {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail-tab img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail-tab:hover,
.thumbnail-tab.active {
  box-shadow: 3px 3px 10px -2px #575b5c;
  border: none;
}

.right-column {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 20px 0 0 20px;
  position: relative;
}

.title-opis-cart {
  margin-bottom: 40px;
}

.opis-cart-list {
  margin-bottom: 50px;
}

/* Media query для мобільних пристроїв */
@media (max-width: 1060px) {
  .product-section {
    flex-direction: column;
  }
  .left-column,
  .right-column {
    width: 100%;
    padding: 0;
  }
  .thumbnail-tabs {
    justify-content: flex-start;
  }
  .right-column {
    padding-top: 20px;
  }
  .title-opis-cart {
    margin-bottom: 20px;
  }
  .opis-cart-list {
    margin-bottom: 20px;
  }
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 стовпці на десктопі */
  gap: 10px;
  /* Відступи між зображеннями */
  padding: 10px;
  /* Внутрішні відступи для контейнера */
}

.image-grid img {
  width: 100%;
  /* Зображення займають всю ширину комірки */
  height: auto;
  background: transparent;
}

/* Медіа-запит для мобільних пристроїв (ширина екрану до 768px) */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 стовпці на мобільному */
  }
}
/* Додаткові стилі для маленьких мобільних пристроїв (опціонально) */
@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
    /* 1 стовпець на дуже маленьких екранах */
  }
  .image-grid img {
    border-radius: 0;
    /* Плоскі кути на маленьких екранах */
    box-shadow: none;
  }
}
/* =========================================
   COOKIE CONSENT ВІКНО (Orest Bida v3.0)
   ========================================= */
/* Перевизначення базових змінних бібліотеки */
#cc-main {
  /* Типографіка */
  --cc-font-family: 'Unbounded', sans-serif;
  /* Основні кольори фону та тексту */
  --cc-bg: #ffffff;
  --cc-text: #333333;
  --cc-modal-border-radius: 16px;
  /* Кнопка "Прийняти всі" (Первинна) */
  --cc-btn-primary-bg: var(--color-brand, #259da8);
  --cc-btn-primary-hover-bg: #1c7c85; /* Трохи темніший відтінок */
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border-radius: 8px;
  /* Кнопки "Налаштувати" та "Тільки необхідні" (Вторинні) */
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-hover-bg: #f4f6f7; /* Світло-сірий фон при наведенні */
  --cc-btn-secondary-color: #333333;
  --cc-btn-secondary-border-radius: 8px;
  --cc-btn-secondary-border: 1px solid #cccccc;
  /* Перемикачі (Тогли) у модальному вікні налаштувань */
  --cc-toggle-on-bg: var(--color-brand, #259da8);
  --cc-toggle-off-bg: #cccccc;
  --cc-toggle-readonly-bg: #999999;
  --cc-toggle-knob-bg: #ffffff;
  /* Кольори блоків з описами категорій */
  --cc-cookie-category-block-bg: #f9f9f9;
  --cc-cookie-category-block-border: #eeeeee;
  --cc-cookie-category-block-hover-bg: #f1f1f1;
  /* Тіні та накладання (backdrop) */
  --cc-modal-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  --cc-overlay-bg: rgba(0, 0, 0, 0.4);
}

/* Додаткові точкові налаштування для ідеального вигляду */
#cc-main {
  /* Робимо заголовки більш виразними */
}
#cc-main .cm__title,
#cc-main .pm__title {
  font-weight: 600;
  font-size: 18px;
  color: #222222;
}
#cc-main {
  /* Легший колір для описів */
}
#cc-main .cm__desc,
#cc-main .pm__section-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
}
#cc-main {
  /* Відключаємо стандартні сині аутлайни браузера при кліку (фокусі) */
}
#cc-main button:focus-visible,
#cc-main a:focus-visible,
#cc-main input:focus-visible {
  outline: 2px solid var(--color-brand, #259da8) !important;
  outline-offset: 2px;
}
#cc-main {
  /* Стилізація лінків всередині тексту банера */
}
#cc-main .cc__link {
  color: var(--color-brand, #259da8);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}
#cc-main .cc__link:hover {
  color: #1c7c85;
}/*# sourceMappingURL=main.css.map */