@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Стили футера */
.footer {
  background-color: rgba(241, 241, 238, 0.5);
  color: #333;
  padding: 40px 20px 20px;
  /* Контейнер внутри футера */
  /* Левая колонка (информация о клинике) */
  /* Средняя колонка (Навигация) */
  /* Правая колонка (Социальные сети) */
  /* Нижняя полоса копирайта */
  /* Адаптивность */
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__info {
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: 16px;
}
.footer__logo {
  width: 150px;
  height: auto;
  display: block;
}
.footer__clinic-name {
  font-weight: bold;
  margin-bottom: 8px;
}
.footer__address, .footer__contact {
  margin-bottom: 8px;
}
.footer__address a, .footer__contact a {
  text-decoration: none;
  color: #333;
}
.footer__button {
  width: 180px;
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #2e2e2e;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
}
.footer__button:hover, .footer__button:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
@media (max-width: 767.98px) {
  .footer__button {
    font-size: 10px;
  }
}
.footer__nav {
  flex: 1 1 160px;
  margin-bottom: 20px;
  /* Если хотите скрыть заголовок, используйте класс .visually-hidden */
}
.footer__nav-title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 16px;
}
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-item {
  margin-bottom: 8px;
}
.footer__nav-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #d39f45;
}
.footer__social {
  flex: 1 1 160px;
  margin-bottom: 20px;
}
.footer__social-title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 16px;
}
.footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__social-item {
  margin-bottom: 8px;
}
.footer__social-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__social-link:hover {
  color: #d39f45;
}
.footer__copyright {
  border-top: 1px solid #e2e2e2;
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__info, .footer__nav, .footer__social {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 30px;
  }
}

header {
  background-color: #fff;
  /* ───── полоса прогресса прокрутки ───── */
  /* ───── верхняя строка ───── */
  /* ───── нижняя панель (десктоп) ───── */
  /* ───── мобильное меню ───── */
  /* ───── бургер ───── */
  /* ───── Адаптив ───── */
  /* 1. Десктоп-версия (hover) */
  /* 2. Мобильная версия (клик/тап) */
}
header .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background-color: #DFA45A;
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}
header .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  transition: transform 0.3s ease;
  max-width: 1200px;
}
header .top-header a img.logo-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  transition: max-width 0.3s ease;
}
@media (max-width: 767.98px) {
  header .top-header a img.logo-img {
    max-width: 140px;
  }
}
header .top-header .btn-custom {
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
}
header .top-header .btn-custom:hover, header .top-header .btn-custom:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
header .top-header .btn-custom .rotate-image {
  width: 25px;
  margin-left: 0;
  transition: transform 0.4s ease;
}
header .top-header .btn-custom:hover .rotate-image {
  transform: rotate(360deg);
}
@media (max-width: 767.98px) {
  header .top-header .btn-custom {
    font-size: 10px;
  }
}
header .header-contact {
  display: flex;
  align-items: center;
}
header .header-contact .contact-info {
  text-align: right;
  margin-right: 1rem;
}
header .header-contact .contact-info .phone-number {
  font-size: 16px;
  font-weight: bold;
}
header .header-contact .contact-info .working-hours {
  font-size: 14px;
}
header .header-bottom {
  border-top: 1px solid #e5e5e5;
  background-color: #fff;
  transition: transform 0.3s ease, top 0.3s ease;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  /* ═════ ОСНОВНОЕ МЕНЮ ═════ */
  /* ═════ переключатель языков ═════ */
}
header .header-bottom .social-icons a {
  margin-right: 1rem;
}
header .header-bottom .social-icons a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #3A3A22;
}
header .header-bottom .social-icons a svg:hover {
  color: #DFA45A;
}
header .header-bottom .menu-links {
  display: flex;
  gap: 0.5rem;
}
header .header-bottom .menu-links a,
header .header-bottom .menu-links .parent-link { /* ссылка + заголовок с подменю */
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #000;
  margin: 0 0.5rem;
  transition: color 0.2s, font-weight 0.2s;
}
header .header-bottom .menu-links a:hover, header .header-bottom .menu-links a.active,
header .header-bottom .menu-links .parent-link:hover,
header .header-bottom .menu-links .parent-link.active {
  text-decoration: underline;
}
header .header-bottom .language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
header .header-bottom .language-switch .language-link {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
header .header-bottom .language-switch .language-link:hover {
  text-decoration: underline;
}
header .header-bottom .language-switch .separator {
  color: #888;
}
header .mobile-menu {
  display: none;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 1rem;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
header .mobile-menu.open {
  display: block;
}
header .mobile-menu .mobile-social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
header .mobile-menu .mobile-social-icons a {
  margin: 0 0.5rem;
}
header .mobile-menu .mobile-social-icons a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: #3A3A22;
}
header .mobile-menu .mobile-social-icons a svg:hover {
  color: #DFA45A;
}
header .mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
}
header .mobile-menu .mobile-nav a {
  padding: 0.5rem 0;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.2s, font-weight 0.2s;
}
header .mobile-menu .mobile-nav a:hover, header .mobile-menu .mobile-nav a.active {
  color: #3A3A22;
  font-weight: 600;
}
header .mobile-menu .language-switch-mobile {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
header .mobile-menu .language-switch-mobile .language-link {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
header .mobile-menu .language-switch-mobile .language-link:hover {
  text-decoration: underline;
}
header .mobile-menu .language-switch-mobile .separator {
  color: #888;
}
header .burger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #4A4A32;
  transition: all 0.3s;
}
@media (max-width: 991.98px) {
  header .header-bottom {
    display: none;
  }
}
@media (max-width: 767.98px) {
  header .btn-custom {
    padding: 10px 20px;
    font-size: 14px;
  }
  header .contact-info {
    display: none;
  }
}
header .menu-item.has-submenu {
  position: relative;
}
header .menu-item.has-submenu .parent-link {
  position: relative;
  padding-right: 14px; /* место под стрелку */
}
header .menu-item.has-submenu .parent-link::after {
  content: "▼";
  font-size: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .menu-item.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: -15%;
  min-width: 165px;
  padding: 0.55rem 0 0.6rem;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  z-index: 10000;
}
header .menu-item.has-submenu .submenu a {
  display: block;
  padding: 0.45rem 1rem;
  white-space: nowrap;
  font-size: 15px;
  color: #000;
}
header .menu-item.has-submenu .submenu a:hover {
  background: #F8F8F8;
  color: #3A3A22;
}
header .menu-item.has-submenu:hover .submenu {
  display: block;
}
@media (max-width: 991.98px) {
  header .mobile-item .submenu-toggle {
    width: 100%;
    padding: 0.6rem 0;
    text-align: left;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #000;
  }
  header .mobile-item .submenu {
    display: none;
    padding-left: 1rem;
    /* визуальный «уровень» */
  }
  header .mobile-item .submenu a {
    padding: 0.45rem 0;
  }
  header .mobile-item .submenu.open {
    display: flex;
    flex-direction: column;
  }
}

/* --------------- END of header --------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: "Montserrat Alternates", sans-serif;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 74, 50, 0.7);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 0.5rem rgba(74, 74, 50, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 74, 50, 0);
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: #4A4A32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-out infinite;
}
.whatsapp-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.scroll-top-button {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(74, 74, 50, 0.4549019608);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 10000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.scroll-top-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}
.scroll-top-button:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.about-header {
  padding: 1rem 1rem 0 0rem;
  /* Адаптивные стили для мобильных устройств */
}
.about-header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-header .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}
.about-header .clinic-header h2 {
  font-size: 2rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .about-header .clinic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .about-header .clinic-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }
}

.section-mission {
  padding: 1rem 1rem;
}
.section-mission .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section-mission .about-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.section-mission .about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0 0 1rem 0;
}
.section-mission__title {
  font-size: 1rem;
  font-weight: 700;
  color: #191919;
}
.section-mission__lead {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
}
.section-mission__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #DFA45A;
}
.section-mission__text {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.clinic-stats-about {
  padding: 1rem 1rem;
  /* Адаптивные стили для мобильных устройств */
}
.clinic-stats-about .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.clinic-stats-about .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  /* Десктоп-версия ссылки */
}
.clinic-stats-about .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.clinic-stats-about .clinic-header .details-link--desktop {
  font-size: 1.1rem;
  color: #4a4a32;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.clinic-stats-about .clinic-header .details-link--desktop svg {
  margin-left: 0.5rem;
}
.clinic-stats-about .clinic-header .details-link--desktop:hover {
  color: #3a3a22;
  text-decoration: underline;
}
.clinic-stats-about .stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.clinic-stats-about .stats-cards .stats-card {
  text-align: center;
  padding: 2rem;
  border-radius: 25px;
}
.clinic-stats-about .stats-cards .stats-card .icon {
  margin-bottom: 1rem;
}
.clinic-stats-about .stats-cards .stats-card .icon svg {
  width: 40px;
  height: 40px;
  fill: #4A4A32;
}
.clinic-stats-about .stats-cards .stats-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #191919;
}
.clinic-stats-about .stats-cards .stats-card p {
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.4;
}
.clinic-stats-about .stats-cards .one {
  background: rgba(207, 207, 201, 0.5);
}
.clinic-stats-about .stats-cards .two {
  background: rgba(223, 163, 90, 0.8);
}
.clinic-stats-about .stats-cards .three {
  background: rgba(207, 207, 201, 0.5);
}
@media (max-width: 768px) {
  .clinic-stats-about .clinic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .clinic-stats-about .clinic-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }
  .clinic-stats-about .stats-cards {
    grid-template-columns: 1fr;
  }
  .clinic-stats-about .details-link--mobile {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 1rem;
  }
  .clinic-stats-about .details-link--mobile svg {
    margin-left: 0.5rem;
  }
  .clinic-stats-about .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.faq {
  padding: 1rem 1rem;
  background: #fff;
}
.faq .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.faq .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq__item {
  border-bottom: 1px solid #E0D6C8;
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item--open .faq__answer {
  max-height: 1000px;
  padding: 1rem 0;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #191919;
}
.faq__question:focus {
  outline: 2px solid #DFA45A;
  outline-offset: 2px;
}
.faq__icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
  padding: 0 0;
}
.faq__answer p {
  margin: 0 0 0.5rem;
}
.faq__answer ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}
.faq__answer ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .faq {
    padding: 3rem 2rem;
  }
  .faq__title {
    font-size: 2rem;
  }
  .faq__question {
    font-size: 1.125rem;
    padding: 1.25rem 0;
  }
  .faq__answer {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .faq__inner {
    max-width: 1000px;
  }
}

.appointment2-section {
  padding: 0 1rem 2rem 1rem;
}
.appointment2-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.appointment2-section .appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.appointment2-section .appointment-content .left-image {
  overflow: hidden;
  border-radius: 8px;
}
.appointment2-section .appointment-content .left-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.appointment2-section .appointment-content .form-wrapper {
  background-color: #fff;
  padding: 2rem;
}
.appointment2-section .appointment-content .form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #191919;
  border-bottom: 1px solid #DFA45A;
  padding: 5px 0;
}
.appointment2-section .appointment-content .form-wrapper p {
  margin-bottom: 1rem;
  color: #5c5c5c;
}
.appointment2-section .appointment-content .form-wrapper form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.appointment2-section .appointment-content .form-wrapper form .form-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.appointment2-section .appointment-content .form-wrapper form .form-group input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper {
  position: relative;
  width: 100px;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 25px;
  background-color: #fff;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger .flag-icon {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 25%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  z-index: 999;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select.open .custom-options {
  max-height: 200px;
  overflow-y: auto;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option:hover {
  background-color: #f2f2f2;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option .flag-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
.appointment2-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper input[type=tel] {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1rem;
  outline: none;
}
.appointment2-section .appointment-content .form-wrapper form .btn-submit {
  width: 100%;
  background-color: #4A4A32;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}
.appointment2-section .appointment-content .form-wrapper form .btn-submit:hover {
  background-color: #DFA45A;
}
.appointment2-section .appointment-content .form-wrapper small {
  display: block;
  margin-top: 1rem;
  color: #888;
}
@media (max-width: 768px) {
  .appointment2-section .appointment-content {
    grid-template-columns: 1fr;
  }
  .appointment2-section .appointment-content .left-image {
    margin-bottom: 2rem;
  }
}

.article-section {
  padding: 2rem 1rem;
  background: #fff;
}
.article-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.article-section .article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #DFA45A;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.article-section .article-header .article-title h2 {
  font-size: 1.75rem;
  color: #191919;
  font-weight: 700;
  line-height: 1.2;
}
.article-section .article-header .article-meta {
  text-align: right;
}
.article-section .article-header .article-meta .meta-date,
.article-section .article-header .article-meta .meta-author {
  font-size: 0.9rem;
  color: #4A4A32;
  margin: 0;
  line-height: 1.4;
}
.article-section .article-header .article-meta .meta-author {
  margin-top: 0.25rem;
}
.article-section .article-content {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.article-section .article-content .article-image {
  flex: 1;
}
.article-section .article-content .article-image img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-section .article-content .article-text {
  flex: 1;
}
.article-section .article-content .article-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #424242;
  margin-bottom: 1.5rem;
}
.article-section .article-content .article-text h3 {
  font-size: 1.25rem;
  color: #191919;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.article-section .article-content .article-text ul {
  list-style: disc inside;
  padding: 0;
}
.article-section .article-content .article-text ul li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #424242;
}
@media (max-width: 768px) {
  .article-section .article-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-section .article-header .article-meta {
    text-align: left;
    margin-top: 0.75rem;
  }
  .article-section .article-content {
    flex-direction: column;
    gap: 1rem;
  }
  .article-section .article-content .article-image,
  .article-section .article-content .article-text {
    margin-bottom: 1rem;
  }
}

.blogs {
  padding: 1rem 1rem;
}
.blogs .container {
  max-width: 1200px;
  margin: 0 auto;
}
.blogs .blog-header {
  position: relative;
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.blogs .blog-header .blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #191919;
}
.blogs .blog-header .filter-toggle2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4A4A32;
}
.blogs .blog-header .filter-toggle2.open svg {
  transform: rotate(180deg);
}
.blogs .blog-header .filter-toggle2 svg {
  transition: transform 0.3s ease;
}
.blogs .blog-header .filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 10;
  min-width: 200px;
}
.blogs .blog-header .filter-dropdown .filter-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 0.75rem;
  width: 100%;
  cursor: pointer;
  color: #000;
}
.blogs .blog-header .filter-dropdown .filter-btn:hover, .blogs .blog-header .filter-dropdown .filter-btn.active {
  background: #f5f5f5;
}
.blogs .blog-header .filter-dropdown.show {
  display: flex;
}
.blogs .blog-header .blog-filter-nav {
  display: flex;
  gap: 10px;
}
.blogs .blog-header .blog-filter-nav .filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.blogs .blog-header .blog-filter-nav .filter-btn.active, .blogs .blog-header .blog-filter-nav .filter-btn:hover {
  color: #DFA45A;
}
.blogs .blog-header .blog-filter-nav .separator {
  color: #aaa;
}
.blogs .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .blogs .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blogs .blog-card {
  display: block;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
.blogs .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blogs .blog-card .blog-card-image {
  position: relative;
  width: 100%;
  padding-top: 66.6%;
  overflow: hidden;
  border-radius: 8px;
}
.blogs .blog-card .blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs .blog-card .blog-card-meta {
  padding: 10px;
}
.blogs .blog-card .blog-card-meta .blog-date {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-bottom: 0.25rem;
}
.blogs .blog-card .blog-card-meta .blog-card-title {
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .blogs .blog-filter-nav {
    display: none !important;
  }
  .blogs .filter-toggle2 {
    display: block !important;
  }
}

/* SCSS */
.contact-map {
  padding: 2rem 0;
}
.contact-map .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2 1rem;
}
.contact-map .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  /* Десктоп-версия ссылки, показывается по умолчанию */
}
.contact-map .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.contact-map .clinic-header .details-link--desktop {
  font-size: 1.1rem;
  color: #4a4a32;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.contact-map .clinic-header .details-link--desktop svg {
  margin-left: 0.5rem;
}
.contact-map .clinic-header .details-link--desktop:hover {
  color: #3a3a22;
  text-decoration: underline;
}
.contact-map__grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  padding: 1rem 0;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-map__grid {
    grid-template-columns: 1fr;
  }
}
.contact-map__title {
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
}
.contact-map__list {
  list-style: none;
  padding: 0;
}
.contact-map__list li {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
}
.contact-map__list li a {
  color: inherit;
  text-decoration: none;
}
.contact-map__list li a:hover {
  text-decoration: underline;
}
.contact-map__frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding-bottom: 56.25%;
}
.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(10%) contrast(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.beauty-section {
  padding: 2rem 1rem;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(252, 176, 69, 0.24) 50%, rgb(255, 255, 255) 100%);
}
.beauty-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.beauty-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.beauty-section .content .text-wrapper {
  flex: 1;
  max-width: 560px;
  margin-right: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.beauty-section .content .text-wrapper.animate-in {
  animation: fadeInUp 0.5s ease-out forwards;
}
.beauty-section .content .text-wrapper h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #191919;
}
@media (max-width: 768px) {
  .beauty-section .content .text-wrapper h1 {
    font-size: 3rem;
  }
}
.beauty-section .content .text-wrapper .subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #616161;
  margin-bottom: 2rem;
}
.beauty-section .content .text-wrapper .consult-button {
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #2e2e2e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
  text-decoration: none;
}
.beauty-section .content .text-wrapper .consult-button:hover, .beauty-section .content .text-wrapper .consult-button:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
.beauty-section .content .image-wrapper {
  flex: 1;
  text-align: center;
}
.beauty-section .content .image-wrapper img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .beauty-section .content {
    flex-direction: column;
    text-align: center;
  }
  .beauty-section .content .text-wrapper {
    margin: 0 0 2rem;
  }
  .beauty-section .content .image-wrapper {
    margin: 0 auto;
  }
}

.promo-ticker {
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  overflow: hidden;
}
.promo-ticker .ticker-wrap {
  display: block;
  width: 100%;
}
.promo-ticker .ticker {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 20s linear infinite;
}
.promo-ticker .ticker span {
  display: inline-block;
  padding: 0.5rem;
  font-size: 1rem;
  color: #161616;
  line-height: 1.5;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.clinic-section {
  padding: 1rem 1rem 3rem;
  /* По умолчанию мобильная версия ссылки скрыта */
  /* Адаптивные стили для мобильных устройств */
}
.clinic-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.clinic-section .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  /* Десктоп-версия ссылки, показывается по умолчанию */
}
.clinic-section .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.clinic-section .clinic-header .details-link--desktop {
  font-size: 1.1rem;
  color: #4a4a32;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.clinic-section .clinic-header .details-link--desktop svg {
  margin-left: 0.5rem;
}
.clinic-section .clinic-header .details-link--desktop:hover {
  color: #3a3a22;
  text-decoration: underline;
}
.clinic-section .clinic-content {
  display: flex;
  align-items: flex-start;
}
.clinic-section .clinic-content .clinic-image {
  flex: 0 0 50%;
}
.clinic-section .clinic-content .clinic-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1; /* Квадрат */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
.clinic-section .clinic-content .clinic-text {
  flex: 0 0 50%;
  margin-left: 2rem;
}
.clinic-section .clinic-content .clinic-text p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #424242;
}
.clinic-section .clinic-content .clinic-text p strong {
  color: #000;
}
.clinic-section .details-link--mobile {
  display: none;
}
@media (max-width: 768px) {
  .clinic-section .clinic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    /* На мобильных устройств скрываем десктопную версию ссылки */
  }
  .clinic-section .clinic-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }
  .clinic-section .clinic-header .details-link--desktop {
    display: none;
  }
  .clinic-section .clinic-content {
    flex-direction: column;
  }
  .clinic-section .clinic-content .clinic-image {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .clinic-section .clinic-content .clinic-text {
    margin-left: 0;
  }
  .clinic-section .details-link--mobile {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 1rem;
  }
  .clinic-section .details-link--mobile svg {
    margin-left: 0.5rem;
  }
  .clinic-section .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.clinic-stats {
  padding: 2rem 1rem;
  /* Адаптивные стили для мобильных устройств */
}
.clinic-stats .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.clinic-stats .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  /* Десктоп-версия ссылки */
}
.clinic-stats .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.clinic-stats .clinic-header .details-link--desktop {
  font-size: 1.1rem;
  color: #4a4a32;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.clinic-stats .clinic-header .details-link--desktop svg {
  margin-left: 0.5rem;
}
.clinic-stats .clinic-header .details-link--desktop:hover {
  color: #3a3a22;
  text-decoration: underline;
}
.clinic-stats .stats-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.clinic-stats .stats-cards .stats-card {
  text-align: center;
  padding: 2rem;
  border-radius: 25px;
}
.clinic-stats .stats-cards .stats-card .icon {
  margin-bottom: 1rem;
}
.clinic-stats .stats-cards .stats-card .icon svg {
  width: 40px;
  height: 40px;
  fill: #4A4A32;
}
.clinic-stats .stats-cards .stats-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #191919;
}
.clinic-stats .stats-cards .stats-card p {
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.4;
}
.clinic-stats .stats-cards .one {
  background: rgba(207, 207, 201, 0.5);
}
.clinic-stats .stats-cards .two {
  background: rgba(223, 163, 90, 0.8);
}
.clinic-stats .stats-cards .three {
  background: rgba(207, 207, 201, 0.5);
}
@media (max-width: 768px) {
  .clinic-stats .clinic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .clinic-stats .clinic-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }
  .clinic-stats .stats-cards {
    grid-template-columns: 1fr;
  }
  .clinic-stats .details-link--mobile {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 1rem;
  }
  .clinic-stats .details-link--mobile svg {
    margin-left: 0.5rem;
  }
  .clinic-stats .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.consult-section {
  padding: 1rem;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(252, 176, 69, 0.11) 50%, rgb(255, 255, 255) 100%);
  /* Адаптивность для мобильных */
}
.consult-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.consult-section .consult-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Текстовый блок */
  /* Кнопка */
}
.consult-section .consult-wrapper .consult-image {
  margin-right: 1rem;
}
.consult-section .consult-wrapper .consult-image img {
  display: block;
  max-width: 120px;
  height: auto;
}
.consult-section .consult-wrapper .consult-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #191919;
  margin-right: 1rem;
}
.consult-section .consult-wrapper .consult-text strong {
  font-weight: 700;
}
.consult-section .consult-wrapper .consult-button {
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #ffffff;
  color: #2e2e2e;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
  text-decoration: none;
}
.consult-section .consult-wrapper .consult-button:hover, .consult-section .consult-wrapper .consult-button:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
@media (max-width: 768px) {
  .consult-section .consult-wrapper {
    flex-direction: column;
    text-align: center;
    /* Промежуточные отступы между элементами */
  }
  .consult-section .consult-wrapper .consult-image,
  .consult-section .consult-wrapper .consult-text,
  .consult-section .consult-wrapper .consult-button {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.procedures-section {
  padding: 2rem 1rem;
}
.procedures-section .details-link--mobile {
  display: none;
}
.procedures-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.procedures-section .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.procedures-section .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.procedures-section .clinic-header .details-link {
  font-size: 1.1rem;
  color: #4a4a32;
  transition: color 0.2s ease;
  text-decoration: none;
}
.procedures-section .clinic-header .details-link:hover {
  color: #3a3a22;
  text-decoration: underline;
}
.procedures-section .procedures-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.procedures-section .procedures-grid .procedure-item {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.procedures-section .procedures-grid .procedure-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/index/service_item.png") center center no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
  will-change: transform;
  z-index: 0;
}
.procedures-section .procedures-grid .procedure-item:hover::before {
  transform: scale(1.1);
}
.procedures-section .procedures-grid .procedure-item h3,
.procedures-section .procedures-grid .procedure-item p,
.procedures-section .procedures-grid .procedure-item .details-link {
  position: relative;
  z-index: 1;
}
.procedures-section .procedures-grid .procedure-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #191919;
}
.procedures-section .procedures-grid .procedure-item p {
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.procedures-section .procedures-grid .procedure-item .details-link {
  font-size: 0.9rem;
  color: #4a4a32;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #4a4a32;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.procedures-section .procedures-grid .procedure-item .details-link:hover {
  color: #fff;
  background-color: #3a3a22;
}
@media (max-width: 768px) {
  .procedures-section .clinic-header .details-link {
    display: none;
  }
  .procedures-section .procedures-grid {
    grid-template-columns: 1fr;
  }
  .procedures-section .details-link--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .procedures-section .details-link--mobile svg {
    margin-left: 0.3rem;
  }
  .procedures-section .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.blog-section {
  padding: 2rem 1rem;
}
.blog-section .details-link--mobile {
  display: none;
}
.blog-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.blog-section .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.blog-section .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.blog-section .clinic-header .details-link {
  font-size: 1.1rem;
  color: #4a4a32;
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-section .clinic-header .details-link:hover {
  color: #3a3a22;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog-section .clinic-header .details-link--desktop {
    display: none;
  }
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-section .blog-grid .blog-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-grid .blog-card .blog-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-section .blog-grid .blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog-section .blog-grid .blog-card .blog-card-image:hover img {
  transform: scale(1.05);
}
.blog-section .blog-grid .blog-card .blog-card-meta {
  padding: 1rem;
}
.blog-grid a{
  text-decoration: none;
}
.blog-section .blog-grid .blog-card .blog-card-meta .blog-date {
  font-size: 0.9rem;
  color: #9b9b9b;
  display: block;
  margin-bottom: 0.5rem;
}
.blog-section .blog-grid .blog-card .blog-card-meta .blog-title {
  font-size: 1rem;
  color: #191919;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .blog-section .details-link--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
    gap: 0.3rem;
  }
  .blog-section .details-link--mobile svg {
    margin-left: 0.3rem;
  }
  .blog-section .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.gallery-section {
  padding: 2rem 1rem;
}
.gallery-section .details-link--mobile {
  display: none;
}
.gallery-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.gallery-section .container .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.gallery-section .container .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.gallery-section .container .clinic-header .details-link {
  font-size: 1.1rem;
  color: #4a4a32;
  transition: color 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.gallery-section .container .clinic-header .details-link:hover {
  color: #3a3a22;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .gallery-section .container .clinic-header .details-link--desktop {
    display: none;
  }
}
.gallery-section .gallery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gallery-section .gallery-content .big-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-section .gallery-content .big-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-section .gallery-content .big-image:hover img {
  transform: scale(1.05);
}
.gallery-section .gallery-content .thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-section .gallery-content .thumbnails-grid .thumbnail {
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-section .gallery-content .thumbnails-grid .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-section .gallery-content .thumbnails-grid .thumbnail:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .gallery-section .gallery-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-section .details-link--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
    gap: 0.3rem;
  }
  .gallery-section .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
  .gallery-section .details-link--mobile svg {
    margin-left: 0.3rem;
  }
}

.fortuna-section {
  padding: 1rem;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(252, 176, 69, 0.11) 50%, rgb(255, 255, 255) 100%);
  /* Адаптивность для мобильных */
}
.fortuna-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.fortuna-section .fortuna-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Текстовый блок */
  /* Кнопка */
}
.fortuna-section .fortuna-wrapper .fortuna-image {
  margin-right: 1rem;
}
.fortuna-section .fortuna-wrapper .fortuna-image img {
  display: block;
  max-width: 120px;
  height: auto;
}
.fortuna-section .fortuna-wrapper .fortuna-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #191919;
  margin-right: 1rem;
  text-align: center;
}
.fortuna-section .fortuna-wrapper .fortuna-text strong {
  font-weight: 700;
}
.fortuna-section .fortuna-wrapper .fortuna-button {
  background-color: #3A3A22;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 3rem;
  border-radius: 25px;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}
.fortuna-section .fortuna-wrapper .fortuna-button:hover {
  background-color: #DFA45A;
}
@media (max-width: 768px) {
  .fortuna-section .fortuna-wrapper {
    flex-direction: column;
    text-align: center;
    /* Промежуточные отступы между элементами */
  }
  .fortuna-section .fortuna-wrapper .consult-image,
  .fortuna-section .fortuna-wrapper .consult-text,
  .fortuna-section .fortuna-wrapper .consult-button {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.video-gallery-section {
  padding: 2rem 1rem;
}
.video-gallery-section .details-link--mobile {
  display: none;
}
.video-gallery-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.video-gallery-section .container .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.video-gallery-section .container .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.video-gallery-section .container .clinic-header .details-link {
  font-size: 1.1rem;
  color: #4a4a32;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.video-gallery-section .container .clinic-header .details-link:hover {
  color: #3a3a22;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .video-gallery-section .container .clinic-header .details-link--desktop {
    display: none;
  }
}
.video-gallery-section .video-gallery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.video-gallery-section .video-gallery-content .big-image,
.video-gallery-section .video-gallery-content .thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-color: #000;
}
.video-gallery-section .video-gallery-content .thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.video-gallery-section .video-gallery-content .video-placeholder {
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-gallery-section .video-gallery-content .video-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.video-gallery-section .video-gallery-content .video-placeholder .play-icon {
  position: relative;
  z-index: 1;
}
.video-gallery-section .video-gallery-content .video-placeholder .play-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}
@media (max-width: 768px) {
  .video-gallery-section .video-gallery-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .video-gallery-section .details-link--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    gap: 0.3rem;
    transition: color 0.2s ease;
  }
  .video-gallery-section .details-link--mobile svg {
    margin-left: 0.3rem;
  }
  .video-gallery-section .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}
.video-gallery-section .video-close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
}

.appointment-section {
  padding: 2rem 1rem;
}
.appointment-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.appointment-section .appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.appointment-section .appointment-content .left-image {
  overflow: hidden;
  border-radius: 8px;
}
.appointment-section .appointment-content .left-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.appointment-section .appointment-content .form-wrapper {
  background-color: #fff;
  padding: 2rem;
}
.appointment-section .appointment-content .form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #191919;
  border-bottom: 1px solid #DFA45A;
  padding: 5px 0;
}
.appointment-section .appointment-content .form-wrapper p {
  margin-bottom: 1rem;
  color: #5c5c5c;
}
.appointment-section .appointment-content .form-wrapper form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.appointment-section .appointment-content .form-wrapper form .form-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.appointment-section .appointment-content .form-wrapper form .form-group input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.appointment-section .appointment-content .form-wrapper form .phone-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.appointment-section .appointment-content .form-wrapper form .phone-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper {
  position: relative;
  width: 100px;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger .flag-icon {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  z-index: 999;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select.open .custom-options {
  max-height: 200px;
  overflow-y: auto;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option:hover {
  background-color: #f2f2f2;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option .flag-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
.appointment-section .appointment-content .form-wrapper form .phone-group .phone-input-wrapper input[type=tel] {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.appointment-section .appointment-content .form-wrapper form .btn-submit {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #2e2e2e;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
}
.appointment-section .appointment-content .form-wrapper form .btn-submit:hover, .appointment-section .appointment-content .form-wrapper form .btn-submit:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
.appointment-section .appointment-content .form-wrapper small {
  display: block;
  margin-top: 1rem;
  color: #888;
}
@media (max-width: 768px) {
  .appointment-section .appointment-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .appointment-section .appointment-content .left-image {
    margin-bottom: 2rem;
  }
  .appointment-section .appointment-content .form-wrapper {
    padding: 0;
  }
}

.category-header {
  padding: 1rem 1rem 0 1rem;
}
.category-header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.category-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #97846C;
  text-align: end;
  margin: 0;
}
.category-header__label {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #DFA45A;
}
.category-header__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #4A4A32;
  margin: 0;
  line-height: 1.2;
  gap: 20px;
}
.category-header__icon {
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-header__divider {
  border: none;
  height: 1px;
  background: #E0E0E0;
  margin: 1rem auto 0;
  width: 100%;
  max-width: 900px;
}
@media (max-width: 768px) {
  .category-header {
    padding: 2rem 1rem;
  }
  .category-header__inner {
    padding-bottom: 0;
  }
  .category-header__icon {
    position: static;
    display: block;
    margin: 1rem auto 0;
    transform: none;
  }
  .category-header__title {
    font-size: 1.75rem;
  }
  .category-header__label {
    font-size: 0.9rem;
  }
}

.procedure-img {
  padding: 1rem 0;
}
.procedure-img .container {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1200px;
}
.procedure-img .image {
  width: 100%;
}
.procedure-img .image img {
  width: 100%;
  height: 300px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}

.laser-removal {
  padding: 1rem 1rem;
}
.laser-removal .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.laser-removal__welcome {
  font-size: 1.25rem;
  font-weight: 500;
  color: #4A4A32;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.laser-removal__title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #4A4A32;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.laser-removal__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A4A32;
  margin: 2rem 0 1rem;
}
.laser-removal__text {
  font-size: 1rem;
  color: #4A4A32;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.laser-removal__list, .laser-removal__areas {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.laser-removal__list li, .laser-removal__areas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.laser-removal__list li::before, .laser-removal__areas li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #DFA45A;
  font-size: 1.1rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .laser-removal {
    padding: 2rem 1rem;
  }
  .laser-removal__title {
    font-size: 1.75rem;
  }
  .laser-removal__subtitle {
    font-size: 1.25rem;
  }
}

.similars-procedures {
  padding: 2rem 1rem;
}
.similars-procedures .details-link--mobile {
  display: none;
}
.similars-procedures .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.similars-procedures .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.similars-procedures .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.similars-procedures .procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.similars-procedures .procedures-grid .procedure-item {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.similars-procedures .procedures-grid .procedure-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/index/service_item.png") center center no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
  will-change: transform;
  z-index: 0;
}
.similars-procedures .procedures-grid .procedure-item:hover::before {
  transform: scale(1.1);
}
.similars-procedures .procedures-grid .procedure-item h3,
.similars-procedures .procedures-grid .procedure-item p,
.similars-procedures .procedures-grid .procedure-item .details-link {
  position: relative;
  z-index: 1;
}
.similars-procedures .procedures-grid .procedure-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #191919;
}
.similars-procedures .procedures-grid .procedure-item p {
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.similars-procedures .procedures-grid .procedure-item .details-link {
  font-size: 0.9rem;
  color: #4a4a32;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #4a4a32;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.similars-procedures .procedures-grid .procedure-item .details-link:hover {
  color: #fff;
  background-color: #3a3a22;
}
@media (max-width: 768px) {
  .similars-procedures .clinic-header .details-link {
    display: none;
  }
  .similars-procedures .procedures-grid {
    grid-template-columns: 1fr;
  }
  .similars-procedures .details-link--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0 0;
    font-size: 1rem;
    color: #4a4a32;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .similars-procedures .details-link--mobile svg {
    margin-left: 0.3rem;
  }
  .similars-procedures .details-link--mobile:hover {
    color: #3a3a22;
    text-decoration: underline;
  }
}

.procedures {
  padding: 1rem 1rem;
}
.procedures .container {
  margin: 0 auto;
  max-width: 1200px;
}
.procedures .clinic-header {
  position: relative;
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.procedures .clinic-header .filter-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4A4A32;
}
.procedures .clinic-header .filter-toggle:hover {
  color: #DFA45A;
}
.procedures .clinic-header .filter-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem;
  z-index: 10;
  flex-direction: column;
}
.procedures .clinic-header .filter-dropdown .filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem;
  border: none;
  background: none;
  font-size: 15px;
}
.procedures .clinic-header .filter-dropdown .filter-btn:hover {
  background: #f5f5f5;
}
.procedures .clinic-header .filter-dropdown.show {
  display: flex;
}
.procedures .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.procedures .clinic-header .procedures-filter {
  display: flex;
  gap: 15px;
}
.procedures .clinic-header .procedures-filter .filter-btn {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  transition: color 0.2s ease;
  text-decoration: none;
  border: none;
  background: none;
}
.procedures .clinic-header .procedures-filter .filter-btn:hover {
  color: #DFA45A;
}
.procedures .clinic-header .procedures-filter .filter-btn.active {
  color: #DFA45A;
}
.procedures .procedures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.procedures .procedures-grid .procedure-item {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.procedures .procedures-grid .procedure-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/index/service_item.png") center center no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.4s ease-out;
  will-change: transform;
  z-index: 0;
}
.procedures .procedures-grid .procedure-item:hover::before {
  transform: scale(1.1);
}
.procedures .procedures-grid .procedure-item h3,
.procedures .procedures-grid .procedure-item p,
.procedures .procedures-grid .procedure-item .details-link {
  position: relative;
  z-index: 1;
}
.procedures .procedures-grid .procedure-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #191919;
}
.procedures .procedures-grid .procedure-item p {
  font-size: 0.95rem;
  color: #424242;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.procedures .procedures-grid .procedure-item .details-link {
  font-size: 0.9rem;
  color: #4a4a32;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #4a4a32;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.procedures .procedures-grid .procedure-item .details-link:hover {
  color: #fff;
  background-color: #3a3a22;
}
@media (max-width: 768px) {
  .procedures .procedures-grid {
    grid-template-columns: 1fr;
  }
  .procedures .clinic-header .filter-toggle {
    display: block;
  }
  .procedures .clinic-header .procedures-filter {
    display: none;
  }
}

/* Общие стили */
.gallery {
  padding: 1rem 1rem;
  position: relative;
}

.gallery .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  position: relative;
}

.clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}

/* Мобильная кнопка */
.filter-toggle3 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4A4A32;
}

.filter-toggle3.open svg {
  transform: rotate(180deg);
}

.filter-toggle3 svg {
  transition: transform 0.3s ease;
}

/* Dropdown */
.filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 10;
  min-width: 200px;
}

.filter-dropdown.show {
  display: flex;
}

.filter-dropdown .filter-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 0.75rem;
  width: 100%;
  cursor: pointer;
  color: #000;
}

.filter-dropdown .filter-btn:hover,
.filter-dropdown .filter-btn.active {
  background: #f5f5f5;
}

/* Десктоп-фильтры */
.gallery-filter-nav {
  display: flex;
  gap: 10px;
}

.gallery-filter-nav .filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

.gallery-filter-nav .filter-btn.active,
.gallery-filter-nav .filter-btn:hover {
  color: #DFA45A;
}

.gallery-filter-nav .separator {
  color: #aaa;
}

/* Контент галереи */
.gallery-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-content .thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-content .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-content .thumbnail:hover img {
  transform: scale(1.05);
}

.gallery-content .thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Мобильные стили */
@media (max-width: 768px) {
  .gallery-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-filter-nav {
    display: none;
  }
  .filter-toggle3 {
    display: block;
  }
}
.video-gallery {
  padding: 1rem;
  position: relative;
}
.video-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.video-gallery .container .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  position: relative;
}
.video-gallery .container .clinic-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
}
.video-gallery .container .clinic-header .filter-toggle4 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4A4A32;
}
.video-gallery .container .clinic-header .filter-toggle4.open svg {
  transform: rotate(180deg);
}
.video-gallery .container .clinic-header .filter-toggle4 svg {
  transition: transform 0.3s ease;
}
.video-gallery .container .clinic-header .filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 10;
  min-width: 200px;
}
.video-gallery .container .clinic-header .filter-dropdown.show {
  display: flex;
}
.video-gallery .container .clinic-header .filter-dropdown .filter-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 0.75rem;
  width: 100%;
  cursor: pointer;
  color: #000;
}
.video-gallery .container .clinic-header .filter-dropdown .filter-btn:hover, .video-gallery .container .clinic-header .filter-dropdown .filter-btn.active {
  background: #f5f5f5;
}
.video-gallery .container .clinic-header .gallery-filter-nav {
  display: flex;
  gap: 10px;
}
.video-gallery .container .clinic-header .gallery-filter-nav .filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.video-gallery .container .clinic-header .gallery-filter-nav .filter-btn.active, .video-gallery .container .clinic-header .gallery-filter-nav .filter-btn:hover {
  color: #DFA45A;
}
.video-gallery .container .clinic-header .gallery-filter-nav .separator {
  color: #aaa;
}
.video-gallery .container .video-gallery-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-gallery .container .video-gallery-content .thumbnail {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.video-gallery .container .video-gallery-content .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.video-gallery .container .video-gallery-content .thumbnail:hover img {
  transform: scale(1.05);
}
.video-gallery .container .video-gallery-content .play-icon {
  position: relative;
  z-index: 1;
}
.video-gallery .container .video-gallery-content .play-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}
@media (max-width: 768px) {
  .video-gallery .container .clinic-header .filter-toggle4 {
    display: block;
  }
  .video-gallery .container .clinic-header .gallery-filter-nav {
    display: none;
  }
  .video-gallery .container .video-gallery-content {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------------
   styles.scss  —  компактный, читаемый SCSS без переменных
   и миксинов; структура повторяет итоговый CSS из примера.
------------------------------------------------------------ */
/* ======= базовые настройки ======= */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #ffffff;
  color: #191919;
}

/* ======= кнопка-триггер ======= */
.wheel-open-btn {
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
}
.wheel-open-btn:hover, .wheel-open-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}

/* ======= оверлей ======= */
.wheel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 25, 25, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
  z-index: 11000;
}
.wheel-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ======= модальное окно ======= */
.wheel-modal {
  position: relative;
  display: flex;
  width: 700px;
  max-width: 100%;
  height: 420px;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  /* мобильная колонка */
  /* вертикальный сепаратор */
  /* кнопка-крестик */
}
@media (max-width: 640px) {
  .wheel-modal {
    flex-direction: column;
    height: auto;
  }
}
.wheel-modal::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #DFA45A;
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .wheel-modal::before {
    display: none;
  }
}
.wheel-modal .wheel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  color: #191919;
  transition: transform 0.2s;
}
.wheel-modal .wheel-close:hover {
  transform: rotate(90deg);
}

/* ======= колесо ======= */
.wheel-wrapper {
  background-image: url("../img/about/empire.jpg");
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  background: #ffffff;
  /* треугольник-указатель */
}
@media (max-width: 640px) {
  .wheel-wrapper {
    width: 100%;
  }
}
.wheel-wrapper svg {
  border-radius: 50%;
  border: 2px solid #191919;
  /* адаптив: меньше диаметр на очень узких экранах */
}
@media (max-width: 480px) {
  .wheel-wrapper svg {
    width: 220px;
    height: 220px;
  }
}
.wheel-wrapper .pointer {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 28px solid #191919;
}

/* ======= форма ======= */
.wheel-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 12px;
  padding: 32px;
  /* кнопка «Крутить» */
}
@media (max-width: 640px) {
  .wheel-form {
    width: 100%;
    padding: 24px;
  }
}
.wheel-form h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.15;
}
.wheel-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wheel-form input {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #C8953F;
  border-radius: 6px;
}
.wheel-form input:focus {
  outline: 2px solid #DFA45A;
}
.wheel-form button[type=submit] {
  border: 0;
  background: #DFA45A;
  color: #ffffff;
  width: 100%;
  padding: 14px 0;
  margin-top: 8px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font: inherit;
}
.wheel-form button[type=submit]:disabled {
  background: #F4DAB6;
  cursor: not-allowed;
}
.wheel-form button[type=submit]:not(:disabled):hover {
  background: #C8953F;
}

/* ======= toast-уведомление ======= */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #191919;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  z-index: 12000;
  opacity: 0;
  animation: fadein 0.4s forwards, fadeout 0.4s 3.6s forwards;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  to {
    opacity: 0;
  }
}
/* ======= поддержка reduced-motion ======= */
@media (prefers-reduced-motion: reduce) {
  .wheel-wrapper svg {
    transition-duration: 1s !important;
  }
}
/* style.scss */
.doctors {
  padding: 2rem 0;
}
.doctors .container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}
.doctors__header {
  position: relative;
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.doctors .filter-toggle2 {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #4A4A32;
}
.doctors .filter-toggle2.open svg {
  transform: rotate(180deg);
}
.doctors .filter-toggle2 svg {
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .doctors .filter-toggle2 {
    display: block !important;
  }
}
.doctors .filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  z-index: 10;
  min-width: 200px;
}
.doctors .filter-dropdown .filter-btn {
  background: none;
  border: none;
  text-align: left;
  padding: 0.5rem 0.75rem;
  width: 100%;
  cursor: pointer;
  color: #000;
}
.doctors .filter-dropdown .filter-btn:hover, .doctors .filter-dropdown .filter-btn.active {
  background: #f5f5f5;
}
.doctors .filter-dropdown.show {
  display: flex;
}
.doctors .doctors-filter-nav {
  display: flex;
  gap: 10px;
}
.doctors .doctors-filter-nav .filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.doctors .doctors-filter-nav .filter-btn.active, .doctors .doctors-filter-nav .filter-btn:hover {
  color: #DFA45A;
}
.doctors .doctors-filter-nav .separator {
  color: #aaa;
}
@media (max-width: 768px) {
  .doctors .doctors-filter-nav {
    display: none !important;
  }
}
.doctors__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #191919;
}
.doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .doctors__grid {
    grid-template-columns: 1fr;
  }
}

.doctor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.doctor-card__img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 274px;
}
.doctor-card__info {
  padding: 24px 16px;
  text-align: center;
}
.doctor-card__name {
  margin: 0 0 4px;
  font: 600 18px/1.2 "Montserrat", sans-serif;
  color: #191919;
}
.doctor-card__spec {
  margin: 0 0 16px;
  font: 400 14px/1.3 "Montserrat", sans-serif;
  color: #7a7a7a;
}
.doctor-card__btn {
  display: inline-block;
  padding: 10px 24px;
  font: 600 14px/1 "Montserrat", sans-serif;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.doctor-card__btn:hover {
  background-color: #7ab237; /* чуть темнее */
}
.doctor-card__icon {
  display: none;
}

.vacancy {
  padding: 1rem 1rem;
  background: #fff;
}
.vacancy .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.vacancy__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vacancy .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.vacancy .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 700;
  margin: 0;
}
.vacancy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vacancy__item {
  border-bottom: 1px solid #E0D6C8;
}
.vacancy__item:last-child {
  border-bottom: none;
}
.vacancy__item--open .faq__answer {
  max-height: 1000px;
  padding: 1rem 0;
}
.vacancy__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #191919;
}
.vacancy__question:focus {
  outline: 2px solid #DFA45A;
  outline-offset: 2px;
}
.vacancy__icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.vacancy__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
  padding: 0 0;
}
.vacancy__answer p {
  margin: 0 0 0.5rem;
}
.vacancy__answer ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}
.vacancy__answer ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .vacancy {
    padding: 3rem 2rem;
  }
  .vacancy__title {
    font-size: 2rem;
  }
  .vacancy__question {
    font-size: 1.125rem;
    padding: 1.25rem 0;
  }
  .vacancy__answer {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .vacancy__inner {
    max-width: 1000px;
  }
}

.tests-header {
  padding: 1rem 1rem 0 0rem;
  /* Адаптивные стили для мобильных устройств */
}
.tests-header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.tests-header .clinic-header {
  border-bottom: 1px solid #DFA45A;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
}
.tests-header .clinic-header h2 {
  font-size: 1.5rem;
  color: #191919;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .tests-header .clinic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .tests-header .clinic-header h2 {
    font-size: 1.3rem;
    text-align: center;
  }
}

.survey-section {
  position: relative;
  overflow: hidden;
  padding: 1rem 1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.survey-section__container {
  position: relative;
  overflow: hidden;
  background-image: url("../img/tests/hair.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  z-index: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.survey-section__container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(214, 156, 83, 0.8);
  z-index: 0;
}
.survey-section__title {
  color: white;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  opacity: 0.9;
}
.survey-section__text {
  margin: 16px auto 0;
  max-width: 600px;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}
.survey-section__btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #ffffff;
  color: #191919;
  border-radius: 24px;
  transition: background-color 0.3s, transform 0.3s;
  opacity: 0.9;
}
.survey-section__btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
}

.custom-modal .modal-dialog {
  max-width: 900px;
  margin: 1.5rem auto;
}
.custom-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}
.custom-modal .modal-body {
  display: flex;
  padding: 0;
  position: relative;
}
.custom-modal .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
}
.custom-modal .modal-image {
  flex: 1;
}
.custom-modal .modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-modal .modal-form {
  flex: 1;
  background: #fff;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-modal .modal-form .logo {
  margin-bottom: 1.5rem;
}
.custom-modal .modal-form .logo img {
  max-width: 180px;
}
.custom-modal .modal-form .modal-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.custom-modal .modal-form .modal-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.custom-modal .modal-form .form-wrapper {
  background-color: #fff;
}
.custom-modal .modal-form .form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #191919;
  border-bottom: 1px solid #DFA45A;
  padding: 5px 0;
}
.custom-modal .modal-form .form-wrapper p {
  margin-bottom: 1rem;
  color: #5c5c5c;
}
.custom-modal .modal-form .form-wrapper form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.custom-modal .modal-form .form-wrapper form .form-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.custom-modal .modal-form .form-wrapper form .form-group input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.custom-modal .modal-form .form-wrapper form .phone-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.custom-modal .modal-form .form-wrapper form .phone-group label {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper {
  position: relative;
  width: 100px;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-select-trigger .flag-icon {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  z-index: 999;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select.open .custom-options {
  max-height: 200px;
  overflow-y: auto;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option:hover {
  background-color: #f2f2f2;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper .custom-select-wrapper .custom-select .custom-option .flag-icon {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
}
.custom-modal .modal-form .form-wrapper form .phone-group .phone-input-wrapper input[type=tel] {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.custom-modal .modal-form .form-wrapper form .btn-submit {
  width: 100%;
  border: 0;
  background: linear-gradient(135deg, #DFA45A 0%, #F4C982 100%);
  padding: 12px 24px;
  color: #2e2e2e;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(25, 25, 25, 0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font: inherit;
}
.custom-modal .modal-form .form-wrapper form .btn-submit:hover, .custom-modal .modal-form .form-wrapper form .btn-submit:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(25, 25, 25, 0.25);
}
.custom-modal .modal-form .form-wrapper small {
  display: block;
  margin-top: 1rem;
  color: #888;
}
.custom-modal .modal-form .modal-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #888;
}/*# sourceMappingURL=style.css.map */


.select-group {
    margin-bottom: 20px;
}

.styled-select {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.error-404{
  text-align: center;
}

.breadcrumb {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
  margin: 15px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
}

.breadcrumb a {
  color: #666666;  /* boz rəng */
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #444444;  /* hover üçün daha tünd boz */
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #999999;
  user-select: none;
  margin: 0 5px;
}

.breadcrumb .current {
  font-weight: 600;
  color: #333333;
  user-select: none;
}