:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-gray: #f5f5f5;
  --color-divider: #f2f2f2;
  --color-text-primary: #000000;
  --color-text-secondary: #6a6a6a;
  --color-text-main: #1e1e1e;
  --color-accent: #e56c1a;
  --color-button-dark: #333333;
  --color-white: #ffffff;
  --color-border: #e5e5e5;

  /* Typography */
  --font-heading: "Geologica", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-button: "Inter", sans-serif;
  /* Spacing */
  --container-width: 1200px;
  --container-padding: 0 360px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 19px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.219;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  min-width: 320px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
select {
  border: none;
  outline: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Button Component */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-button);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  border-radius: var(--radius-md);
  transition: opacity 0.3s ease;
}

.button:hover {
  opacity: 0.9;
}

.button--dark {
  background-color: var(--color-button-dark);
  color: var(--color-white);
  padding: 16px 32px;
}

.button--disabled,
.button:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.7;
}

.button--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 16px 32px;
}

/* Header */
.header {
  display: block;
  position: fixed;
  z-index: 9999;

  width: 100%;
  height: 122px;
  background-color: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-divider);
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-primary);
  letter-spacing: 2px;
}

.header__logo-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: var(--color-text-secondary);
  margin-left: -4px;
  align-self: flex-end;
  margin-bottom: 4px;
}

.header__nav {
  display: flex;
  gap: 42px;
  margin-left: 34px;
  margin-top: 5px;
}

.header__nav-link {
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

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

.header__phone {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-main);
  margin-left: 32px;
  margin-top: 4px;
}

.header__socials {
  margin-left: 16px;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.header__social-link:hover {
  opacity: 0.7;
}

.header__button {
  margin-left: 29px;
  padding: 18px 77px;
}

/* Мобильное меню (бургер) - скрыто на десктопе */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

/* Мобильное меню (popup) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.mobile-menu--active {
  display: block;
}

.mobile-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.mobile-menu__content {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  height: 310px;
  background-color: var(--color-bg);
  padding: 10px;
  /* border-radius: 0 0 12px 12px; */
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.35s ease forwards;
  transition: height 0.3s ease;
}

.mobile-menu__content--form {
  height: 370px;
}

.mobile-menu__content--thanks {
  height: 280px;
}

@keyframes slideDown {
  to {
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(-100%);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.mobile-menu--closing .mobile-menu__content {
  animation: slideUp 0.3s ease forwards;
}

.mobile-menu--closing .mobile-menu__overlay {
  animation: fadeOut 0.3s ease forwards;
}

.mobile-menu__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 10px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text-main);
  padding: 8px 0;
  text-decoration: none;
}

.mobile-menu__link img {
  flex-shrink: 0;
}

.mobile-menu__contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.mobile-menu__phone {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-main);
  text-decoration: none;
}

.mobile-menu__socials {
  display: flex;
  gap: 12px;
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.mobile-menu__social:hover {
  opacity: 0.7;
}

.mobile-menu__hours {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.mobile-menu__hours-label,
.mobile-menu__hours-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.mobile-menu__button {
  margin-top: 30px;
  width: 340px;
  height: 48px;
  align-self: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 16px;
}

/* Основной вид меню */
.mobile-menu__main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Форма обратного звонка в popup */
.mobile-menu__form-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 4px;
}

.mobile-menu__form-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-text-main);
  margin: 45px 0 16px 0;
  padding: 0 20px;
}

.mobile-menu__form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mobile-menu__form-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  margin-bottom: 8px;
}

.mobile-menu__form-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mobile-menu__form-input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  outline: none;
}

.mobile-menu__form-input::placeholder {
  color: var(--color-text-secondary);
}

.mobile-menu__form-consent {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-text-secondary);
  margin: 8px 0 12px 0;
}

.mobile-menu__form .mobile-menu__button {
  margin-top: 12px;
}

/* Спасибо view */
.mobile-menu__thanks-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 50px 10px 50px 10px;
  text-align: center;
}

.mobile-menu__thanks-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.mobile-menu__thanks-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  max-width: 300px;
}

.mobile-menu__thanks-view .mobile-menu__button {
  margin-top: auto;
}

/* ===== CALLBACK POPUP ===== */
.callback-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.callback-popup--active {
  display: block;
}

/* Overlay */
.callback-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

/* Content - Desktop (center) */
.callback-popup__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 400px;
  max-width: calc(100% - 32px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  animation: popupFadeIn 0.3s ease forwards;
}

/* Close button */
.callback-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: url('img/close.svg') center/contain no-repeat;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.callback-popup__close:hover {
  opacity: 1;
}

/* Title */
.callback-popup__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-text-main);
  margin: 0 0 24px 0;
}

/* Form field */
.callback-popup__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  margin-bottom: 12px;
}

.callback-popup__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.callback-popup__input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-main);
  background: transparent;
  border: none;
  outline: none;
}

.callback-popup__input::placeholder {
  color: var(--color-text-secondary);
}

/* Consent text */
.callback-popup__consent {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin: 8px 0 16px 0;
}

/* Button */
.callback-popup__button {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 16px;
}

/* Thanks view */
.callback-popup__thanks-view {
  text-align: center;
}

.callback-popup__thanks-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text-main);
  margin: 0 0 8px 0;
}

.callback-popup__thanks-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0 0 24px 0;
}

/* Closing animation */
.callback-popup--closing .callback-popup__overlay {
  animation: fadeOut 0.3s ease forwards;
}

.callback-popup--closing .callback-popup__content {
  animation: popupFadeOut 0.3s ease forwards;
}

/* Keyframes for popup */
@keyframes popupFadeIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes popupFadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  background-color: transparent;
}

.breadcrumbs-section__container {
  max-width: 1200px;
  margin: 0 auto;
padding: 130px 0px 0 0px;
}

/* Breadcrumbs Nav */
.breadcrumbs {
  padding: 15px 0;
  background-color: transparent;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__link {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-accent);
}

.breadcrumbs__separator {
  color: #999;
}

.breadcrumbs__current {
  color: var(--color-accent);
}

/* Hero Section */
.hero {
  padding: 183px 0 40px;
  background-color: var(--color-bg);
}

.hero__container {
  max-width: 1300px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin: 20px auto 80px auto;
  width: 89%;
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__content {
  position: relative;
  display: flex;
  gap: 42px;
  /* justify-content: space-between; */
  align-items: flex-start;
  margin: 0 auto 90px 50px;
  width: 100%;
}

.hero__slider {
  width: 692px;
  height: 363px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.hero__slide img {
    min-width: 100%;
}
    a.hero__brand img {
   max-width: 18%;
    }
 

.hero__slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero__slide-label {
 position: absolute;
    top: 42px;
    left: 63px;
    background: linear-gradient(90deg, rgba(216, 122, 60, 1) 13%, rgba(255, 226, 207, 1) 108%);
    color: var(--color-white);
    padding: 3px 20px;
    border-radius: 10px;
    z-index: 2;
}

.hero__slide-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
}

.hero__slide-price {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}

.hero__slide-image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slider-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 51px;
  height: 51px;
  background-color: var(--color-button-dark);
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.hero__slider-btn:hover {
  opacity: 0.8;
}

.hero__slider-btn--prev {
  left: -20px;
}

.hero__slider-btn--next {
  right: 586px;
}

.hero__form-wrapper {
  width: 43.5%;
  flex-shrink: 0;
}

.hero__form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 27.5px;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.hero__form-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-main);
  margin: 20px 0 40px 0;
}
.hero__form-title-accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
}

.hero__form-fields {
  display: flex;
  gap: 29px;
  margin-bottom: 16px;
  width: 40%;
}

.hero__form-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
}

.hero__form-field:nth-child(1) {
  padding: 17px 14px;
}
.hero__form-field:nth-child(2) {
  padding: 17px 43px 17px 18px;
}

.hero__form-icon {
  flex-shrink: 0;
}

.hero__form-input {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-main);
  background: transparent;
}

.hero__form-input::placeholder {
  color: var(--color-text-secondary);
}

.hero__form-consent {
  font-family: var(--font-button);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: var(--color-text-secondary);
  margin: 20px 0 20px 0;
  letter-spacing: -0.2px;
}

.hero__form-submit {
  margin: 13px 0 0 88px;
  padding: 18px 78px;
}

/* Brands */
.hero__brands {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 13px;
max-width: 183px;
  min-width: 183px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  transition: border-color 0.3s ease;
  box-shadow: 0px 5px 8px 0.1px rgba(0, 0, 0, 0.2);
}
.hero__brand:nth-child(1) {
    justify-content: center;
    padding: 17px 0 ;
}

.hero__brand:nth-child(2) {
   justify-content: center;
    padding: 17px 0;
}
.hero__brand:nth-child(3) {
   justify-content: center;
    padding: 17px 0;
}
.hero__brand:nth-child(4) {
   justify-content: center;
    padding: 17px 0px;
}
.hero__brand:nth-child(5) {
   justify-content: center;
    padding: 17px 0;
}
.hero__brand:nth-child(6) {
   justify-content: center;
    padding: 17px 0;
}
/* .hero__brand:nth-child(7) {
    padding-right: 20px;
  } */

.hero__brand:hover {
  border-color: var(--color-accent);
}

.hero__brand-name {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-main);
}

/* Filter Section */
.filter {
  padding: 52px 0 80px 0;
  background-color: var(--color-bg);
}

.filter__container {
  max-width: 1200px;
  margin: 0 auto;
}

.filter__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50.9px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.filter__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.filter__fields {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.filter__select-wrapper {
  position: relative;
  width: 184px;
}

.filter__select {
  width: 100%;
  padding: 18px 40px 18px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-main);
  border: 1px solid #0000007a;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  appearance: none;
  cursor: pointer;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.filter__select-arrow {
  display: none;
}

.filter__input {
  width: 185px;

  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  border: 1px solid #0000007a;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
}

.filter__fields input {
  padding: 16px 0 16px 45px;
}
.filter__fields input:last-child {
  padding: 16px 0 16px 71px;
}

.filter__submit {
  padding: 18px 35px;
  border-radius: 12px;
}

/* Offers Section */
.offers {
  padding: 40px 0;
  background-color: var(--color-bg-gray);
}

.offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.offers__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.offers__title-accent {
  color: var(--color-accent);
}

.offers__subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-main);
  margin: 40px 0 46px 0;
}

.offers__slider {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.offers__slider-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: var(--color-button-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.offers__slider-btn--prev {
  left: -2%;
  z-index: 9;
  top: 23%;
}
.offers__slider-btn--next {
  right: -2%;
  top: 23%;
  z-index: 9;
}

.offers__slider-btn:hover {
  opacity: 0.8;
}

.offers__cards {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

/* Card Component */
.card {
  width: 285px;
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card__image-wrapper {
  position: relative;
  width: 100%;
  height: 193px;
  background-color: var(--color-bg-gray);
}

.card__badge {
  position: absolute;
  top: 25px;
  left: 16px;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 1px 8px;
  border-radius: 95px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  z-index: 2;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__content {
  padding: 10px;
}

.card__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-primary);
  margin: 3px 0 8px 0;
}
.available__cards .card .card__content .card__title {
  margin: -4px 0 7px 0;
}
.available__cards .card .card__content .card__edition {
  margin-bottom: 13px;
}
.available__cards .card .card__content .card__specs {
  letter-spacing: -0.1px;
  margin-bottom: 8px;
}
.available__cards .card .card__content .card__price {
  margin-bottom: 12px;
}

.card__edition {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.card__specs {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.card__button {
  width: 100%;
  padding: 18px 26px;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Available Section */
.available {
  padding: 80px 0 0px 0;
  background-color: var(--color-bg);
}

.available__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.available__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.available__slider {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.available__slider-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: var(--color-button-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.available__slider-btn--prev {
  left: -2%;
  z-index: 9;
  top: 23%;
  top: 19%;
}
.available__slider-btn--next {
  right: -2%;
  top: 23%;
  z-index: 9;
  top: 19%;
}

.available__slider-btn:hover {
  opacity: 0.8;
}

.available__cards {
  display: flex;
  gap: 24px;
  overflow: hidden;
}
.available__cards .card {
  width: 291px;
  box-shadow: 0px 3px 4px 3px rgba(0, 0, 0, 0.3);
}

.available__link {
  padding: 19px 78px;
}

.available__show-more {
  display: none;
}

/* Service Section */
.service {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.service__container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__title {
  width: 85%;
  font-size: 32px;
  margin-bottom: 12px;
}

.service__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

/* Service Card */
.service-card {
  width: 285px;
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card__image-wrapper {
  width: 100%;
  height: 244px;
  background-color: var(--color-bg-gray);
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__content {
  padding: 9px;
}

.service-card__title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-primary);
  margin: 11px 0px 19px 8px;
}

.service-card__description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.28;
  color: var(--color-text-secondary);
  margin: 20px 0px 26px 8px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-accent);
  margin: 5px 0 20px 9px;
}

.service-card__button {
  width: 100%;
  padding: 19px 24px;
  font-size: 16px;
}

.service__link {
  padding: 18px 48px;
  font-size: 18px;
}

/* Why Section */
.why {
  padding: 39px 0 37px 0;
  background-color: #f2f2f2;
}

.why__container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 120px; */
}

.why__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

.why__cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 19px;
  row-gap: 40px;
  justify-content: center;
}

.why__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 387px;
  height: 137px;
  padding: 30px 25px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
}

.why__card-text {
  font-family: var(--font-body);
  width: 87%;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-main);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.cta__content {
  flex: 1;
}

.cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.cta__text {
  width: 470px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 38px;
}

.cta__form-fields {
  display: flex;
  gap: 31px;
  margin-bottom: 16px;
}
.cta__form-field:last-child {
  width: 236px;
}

.cta__form-field {
  width: 206px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border: 1px solid black;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
}

.cta__form-icon {
  flex-shrink: 0;
}

.cta__form-input {
  flex: 1;
  width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-main);
  background: transparent;
}

.cta__form-input::placeholder {
  color: var(--color-text-secondary);
}

.cta__form-consent {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin: 19px 0 20px 5px;
}

.cta__form-submit {
  width: 283px;
  margin: 0 0 0 104px;
  border-radius: 7px;
  padding: 18px 32px;
}

.cta__images {
  position: relative;
  width: 500px;
  height: 350px;
  flex-shrink: 0;
}

.cta__image {
  position: absolute;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.cta__image--top {
  top: 6px;
  right: 280px;
  width: 434px;
  height: 210px;
}

.cta__image--bottom {
  bottom: -10px;
  left: 76px;
  width: 426px;
  height: 230px;
}

/* Contacts Section */
.contacts {
  padding: 0px 0 80px 0;
  background-color: var(--color-bg);
}

.contacts__container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 120px; */
}

.contacts__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.25;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 40px;
}

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

.contacts__info {
  width: 300px;
}

.contacts__text {
  font-family: var(--font-button);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-main);
}

.contacts__map {
  width: 692px;
  height: 354px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* Footer */
.footer {
  background-color: var(--color-divider);
  padding: 29px 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 120px; */
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 37px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-text-primary);
  letter-spacing: 2px;
}

.footer__logo-subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: var(--color-text-secondary);
  margin-left: -4px;
  align-self: flex-end;
  margin-bottom: 4px;
}

.footer__nav {
  display: flex;
gap: 34px;
  margin: 7px 0 0 25px;
}

.footer__nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text-main);
  transition: color 0.3s ease;
}

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

.footer__phone {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-main);
  margin: 7px 0 0 0;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__button {
  padding: 18px 78px;
  background-color: var(--color-button-dark);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.footer__policy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.footer__policy:hover {
  color: var(--color-accent);
}
.related__slider.swiper.related-swiper {
  display: none;
}

/* ============================================
     TABLET STYLES (768px - 1199px)
     ============================================ */
@media (min-width: 901px) and (max-width: 1199px) {
  /* Header */
  .header__container {
    padding: 0 40px;
    gap: 24px;
  }

  .header__nav {
    gap: 20px;
  }

  .header__phone {
    margin-left: 20px;
  }

  .header__button {
    margin-left: 16px;
    padding: 12px 20px;
  }

  /* Hero */
  .hero__container {
    padding: 0 40px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__content {
    gap: 40px;
  }

  .hero__slider {
    width: 500px;
    height: 280px;
  }

  .hero__form-wrapper {
    width: 340px;
  }

  .hero__brands {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__brand {
    padding: 12px 16px;
  }

  /* Filter */
  .filter__container {
    padding: 0 40px;
  }

  .filter__title {
    font-size: 32px;
  }

  .filter__fields {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Sections */
  .offers__container,
  .available__container,
  .service__container,
  .why__container,
  .contacts__container,
  .footer__container {
    padding: 0 40px;
  }

  .offers__title,
  .available__title,
  .service__title,
  .why__title,
  .contacts__title {
    font-size: 32px;
  }

  .offers__subtitle {
    font-size: 20px;
  }

  /* Cards - hide extra cards on tablet */
  .offers__cards,
  .available__cards,
  .service__cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    justify-content: flex-start;
  }

  .card,
  .service-card {
    scroll-snap-align: start;
  }

  /* Why cards */
  .why__card {
    width: 320px;
  }

  /* CTA */
  .cta__container {
    padding: 0 40px;
    flex-direction: column;
    align-items: center;
  }

  .cta__content {
    text-align: center;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__form-fields {
    justify-content: center;
  }

  .cta__form-submit {
    margin: 0 auto;
  }

  .cta__images {
    display: none;
  }

  /* Contacts */
  .contacts__content {
    flex-direction: column;
    align-items: center;
  }

  .contacts__info {
    order: 2;
    text-align: center;
  }

  .contacts__map {
    order: 1;
    width: 100%;
    max-width: 600px;
  }

  /* Footer */
  .footer__top {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer__nav {
    margin-left: 0;
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .related__slider.swiper.related-swiper {
    display: block;
  }
}

/* ============================================
     MOBILE STYLES (max-width: 767px)
     ============================================ */
@media (max-width: 900px) {
  .breadcrumbs-section__container {
    padding: 30px 16px 0 16px;
  }

  .breadcrumbs {
    padding: 12px 0;
  }

  .breadcrumbs__list {
    font-size: 13px;
    gap: 6px;
  }
  /* Header */
  .header {
    height: 25px;
  }

  .header__container {
    padding: 0px 37px 0 12px;
    justify-content: space-between;
    gap: 23px;
  }

  .header__logo-text {
    font-size: 20px;
  }

  .header__nav,
  .header__socials,
  .header__button {
    display: none;
  }

  .header__phone {
    margin-left: auto;
    font-size: 14px;
  }

  .header__burger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 24px 0;
  }

  .hero__container {
    padding: 0 10px;
  }

  .hero__title {
    font-size: 19px;
    width: 100%;
    margin: 45px 0 24px 0;
    line-height: 1.3;
  }

  .hero__content {
    flex-direction: column;
    gap: 0px;
    margin-bottom: 32px;
    margin: 0;
  }

  .hero__slider {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
  }

  .hero__slide-label {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
  }

  .hero__slide-name {
    font-size: 14px;
  }

  .hero__slide-price {
    font-size: 12px;
  }

  .hero__slider-btn {
    width: 32px;
    height: 32px;
    top: 16%;
    border: none;
  }
  .hero__slider-btn svg {
    width: 8px;
    height: 13px;
  }

  .hero__slider-btn--prev {
    left: 0px;
  }

  .hero__slider-btn--next {
    right: 0px;
  }

  .hero__form-wrapper {
    width: 100%;
    margin-top: 26px;
  }

  .hero__form-title {
    font-size: 20px;
  }
  .hero__form-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-text-main);
    margin: 0px 0 19px 0;
  }

  .hero__form-fields {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__form-consent {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.15;
    color: var(--color-text-secondary);
    margin: 13px 0 10px 0;
    letter-spacing: -0.2px;
  }
  .hero__form-submit {
    padding: 14px 78px;
    border-radius: var(--radius-sm);
  }

  .hero__form-field {
    width: 100%;
  }
  .hero__form-field:nth-child(1),
  .hero__form-field:nth-child(2) {
    padding: 13px 14px;
  }
  .hero__brand:nth-child(1) {
    padding: 0;
    width: 79px;
    height: 56px;
  }
  .hero__brand:nth-child(2) {
    padding: 0;
    width: 79px;
    height: 56px;
  }
  .hero__brand:nth-child(3) {
    padding: 0;
    width: 118px;
    height: 56px;
  }
  .hero__brand:nth-child(4) {
    padding: 0;
    width: 79px;
    height: 56px;
  }
  .hero__brand:nth-child(5) {
    padding: 0;
    width: 79px;
    height: 56px;
  }
  .hero__brand:nth-child(6) {
    padding: 0;
    width: 79px;
    height: 56px;
  }

  .hero__brand:nth-child(4) {
    padding: 17px 23px;
  }

  .hero__form-submit {
    margin: 0;
    width: 100%;
  }

  .header__logo {
    width: 120px;
  }

  /* Brands - flex wrap */
  .hero__brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 8px;
    margin: 41px 0 0 0;
  }

  .hero__brand {
    flex-direction: column;
    padding: 12px 8px;
    gap: 0px;
    justify-content: center;
    min-width: unset;
  }

  .hero__brand-name {
    font-size: 12px;
    text-align: center;
  }

  .hero__brand-icon {
    width: 15px;
    height: 15px;
  }

  /* Reorder brands */
  .hero__brand:nth-child(3) {
    order: 4;
  } /* Volkswagen → position 4 */
  .hero__brand:nth-child(4) {
    order: 3;
  } /* KIA → position 3 */
  .hero__brand:nth-child(5) {
    order: 5;
  } /* Honda → position 5 */

  /* Filter */
  .filter {
    display: none;
  }

  /* Offers */
  .offers {
    padding: 28px 0;
  }

  .offers__container {
    padding: 0 10px;
  }

  .offers__title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .offers__subtitle {
    font-size: 20px;
    margin: 33px 0 13px 0;
  }

  .offers__slider {
    flex-direction: column;
    gap: 0;
  }

  .offers__slider-btn {
    display: none;
  }

  .offers__cards {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 330px;
    
  }
  
  .offers__cards::-webkit-scrollbar {
    display: none;
  }

  .offers__cards .card {
    min-width: 247px;
    height: 317px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0px 3px 4px 3px rgba(0, 0, 0, 0.3);
  }

  .offers__cards .card:first-child {
    margin-left: 0;
  }
  .card {
    width: 254px;
  }
  .card__content {
    padding: 5px;
  }
  .card__title {
    font-weight: 400;
    font-size: 16px;
    margin: 3px 0 6px 0 !important;
  }
  .card__price {
    margin-bottom: 10px;
  }

  .card__button {
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius-sm);
  }

  .card__image-wrapper {
    height: 166px;
  }

  .card__specs {
    display: none;
  }

  /* Available */
  .available {
    padding: 29px 0;
  }

  .available__container {
    padding: 0 10px;
  }

  .available__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .available__slider {
    flex-direction: column;
    gap: 0;
  }

  .available__slider-btn {
    display: none;
  }

  .available__cards {
    width: 100%;
    display: flex;
    gap: 16px;
    padding: 8px 0 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .available__cards::-webkit-scrollbar {
    display: none;
  }

  .available__cards .card {
    min-width: 247px;
    width: 247px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .available__cards .card.hidden {
    display: none !important;
  }

  .available__show-more {
    display: none;
  }

  .available__link {
    width: 100%;
    text-align: center;
  }

  /* Service */
  .service {
    padding: 10px 0;
  }

  .service__container {
    padding: 0 10px;
  }

  .service__title {
    width: 85%;
    font-size: 32px;
    margin-bottom: 12px;
  }

  .service__cards {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 0 16px;
    margin-bottom: 24px;
  }

  .service-card {
    width: 252px;
    min-width: 215px;
    scroll-snap-align: start;
  }
  .service-card__content {
    padding: 0;
  }
  .service-card__title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    margin: 9px 0 0px 8px;
  }
  .service-card__description {
    width: 95%;
    font-weight: 400;
    font-size: 14px;
    margin: 6px 0px 14px 8px;
    line-height: 1.2;
  }
  .service-card__price {
    margin: 5px 0 11px 9px;
  }
  .service-card__button {
    display: block;
    margin: 0 auto;
    padding: 17px 17px;
    border-radius: var(--radius-sm);
    width: 95%;
  }
  .service__link {
    width: 100%;
    text-align: center;
    margin: -9px 0 0 0;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-body);
  }

  /* Why */
  .why {
    padding: 44px 0 11px 0;
  }

  .why__container {
    padding: 0 16px;
    overflow: visible;
  }

  .why__title {
    display: block;
    margin: 0 auto;
    width: 90%;
    font-size: 32px;
    margin-bottom: 24px;
  }

  .why__cards {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 0 16px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .why__card {
    display: block;
    min-width: 260px;
    width: 265px;
    padding: 33px 16px;
    scroll-snap-align: start;
    text-align: center;
    flex-shrink: 0;
    height: 126px;
  }
  .why__card-text {
    width: 101%;
    font-weight: 400;
    font-size: 16px;
  }

  /* CTA */
  .cta {
    padding: 41px 0;
  }

  .cta__container {
    padding: 0 10px;
    flex-direction: column;
  }

  .cta__content {
    width: 100%;
    text-align: center;
  }

  .cta__title {
    font-size: 22px;
    font-weight: 600;
  }

  .cta__text {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .cta__form-fields {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .cta__form-field {
    width: 100%;
  }
  .cta__form-field:last-child {
    width: 100%;
  }

  .cta__form-consent {
    text-align: start;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-body);
    margin: 0 0 21px 0;

    line-height: 1.2;
  }

  .cta__form-submit {
    width: 100%;
    margin: 0;
  }

  .cta__images {
    display: none;
  }

  /* Contacts */
  .contacts {
    padding: 0px 0 20px 0;
  }

  .contacts__container {
    padding: 0 10px;
  }

  .contacts__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .contacts__content {
    flex-direction: column;
    gap: 24px;
  }

  .contacts__map {
    width: 100%;
    height: 171px;
    order: 1;
  }

  .contacts__info {
    width: 100%;
    order: 2;
  }

  /* Footer */
  .footer {
    padding: 0 0;
  }

  .footer__container {
    padding: 0 10px;
  }

  .footer__top {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 0;
    column-gap: 47px;
  }

  .footer__logo {
    order: 1;
    width: 166px;
    margin-right: 10px;
  }

  .footer__phone {
    order: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
  }

  .footer__socials {
    order: 2;
    margin-left: auto;
  }

  .footer__nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14%;
    margin: 50px 0 40px 0;
  }
  .footer__nav-link {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
  }

  .footer__button {
    order: 4;
    width: 100%;
    margin-left: 0;
  }

  .footer__bottom {
    gap: 12px;
    padding: 0 0 42px 0;
  }
  .related__slider.swiper.related-swiper {
    display: block;
  }

  /* Callback Popup - Mobile */
  .callback-popup__content {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    animation: slideDown 0.35s ease forwards;
    opacity: 1;
  }

  .callback-popup--closing .callback-popup__content {
    animation: slideUp 0.3s ease forwards;
  }
}

/* ============================================
   SMALL MOBILE (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {
  /* Slider layout inherited from 900px breakpoint */
}

/* ============================================
     EXTRA SMALL MOBILE (max-width: 374px)
     ============================================ */
/* @media (max-width: 374px) {
    .hero__brands {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .hero__brand:nth-child(5),
    .hero__brand:nth-child(6) {
      grid-column: auto;
    }
  
    .hero__title {
      font-size: 20px;
    }
  
    .offers__title,
    .available__title,
    .service__title,
    .why__title,
    .cta__title,
    .contacts__title {
      font-size: 24px;
    }
  } */

/* Custom Select Styles */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
}

.custom-select-wrapper select {
  display: none; /* Hide native select */
}

/* Trigger (Closed State) */
.custom-select__trigger {
  position: relative;
  width: 100%;
  padding: 18px 20px;
  font-weight: 400;
  color: var(--color-text-main);
  border: 1px solid #0000007a;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  cursor: pointer;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.custom-select__trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

/* Dropdown (Open State) */
.custom-select__dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #0000007a;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.custom-select-wrapper.is-open .custom-select__trigger {
  opacity: 0;
  pointer-events: none;
}

.custom-select-wrapper.is-open .custom-select__dropdown {
  display: flex;
}

/* Dropdown Header (matches Trigger visual) */
.custom-select__header {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid transparent; /* invisible border to match spacing */
}

/* List Items */
.custom-select__items {
  max-height: 300px;
  overflow-y: auto;
  padding-bottom: 10px;
}

/* Scrollbar styling for webkit */
.custom-select__items::-webkit-scrollbar {
  width: 6px;
}
.custom-select__items::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.custom-select__items::-webkit-scrollbar-thumb {
  background: #ccc; 
  border-radius: 3px;
}

.custom-select__item {
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  color: var(--color-text-main);
}

.custom-select__item:hover {
  background-color: var(--color-bg-gray); /* or any hover color */
}

.custom-select__item.selected {
  /* font-weight: 600; */
  background-color: var(--color-bg-gray);
}

/* Arrows */
.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  width: 16px;
  height: 16px;
}

.custom-select__arrow svg {
    width: 12px;
    height: 8px;
    display: block;
}

/* Rotate arrow in header */
.custom-select__header .custom-select__arrow {
  transform: rotate(180deg);
}