/**
 * Légère Beauté — стили темы (перенесено из lb_10 + референс legere-beaute.ru)
 */
 
@font-face {
    font-family: "Muller";
    src: url("../../fonts/mullerregular.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
} 
@font-face {
    font-family: "Corporate A Pro";
    src: url("../../fonts/corporateapro-medium.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
} 

/* ========== Variables ========== */
:root {
   --font-family-base: "Muller", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
   --font-family-heading: "Corporate A Pro", var(--font-family-base);
   --font-size-base: 14px;
   --font-size-small: 0.8rem;
   --line-height-base: 24px;
   --gap: 5px;
   --color-bg: #ffffff;
   --color-link: #1d1d1b;
   --color-link-hover: #d4a869;
   --color-secondary-h: 210;
   --color-secondary-s: 64%;
   --color-secondary-l: 14%;
   --color-secondary: hsl(var(--color-secondary-h), var(--color-secondary-s), var(--color-secondary-l));
   --color-secondary-hover: hsl(var(--color-secondary-h), var(--color-secondary-s), calc(var(--color-secondary-l) + 5%));
   --color-text: #1d1d1b;
   --color-primary: #d4a869;
   --color-primary-light: #f1e2cd;
   --color-text-light: #e1e1e0;
   --color-dark-blue: #0f253d;
   --color-light-white: rgba(254, 254, 254, 0.5);
   --max-width: 100%;
   --social-icon-size: 18px;
   --social-item-size: calc(var(--social-icon-size) + 14px);
   --header-height: 40px;
   --border-color: #e1e1e0;
   --border-radius: 18px;
   --sydney-text-color: #1d1d1b;
}

@media (min-width: 768px) {
   :root {
      --font-size-base: 16px;
      --font-size-small: 0.9rem;
      --gap: 20px;
      --max-width: 1360px;
      --social-icon-size: 24px;
      --social-item-size: calc(var(--social-icon-size) + 18px);
      --border-radius: 35px;
      --header-height: 80px;
   }
}

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

html {
   -webkit-text-size-adjust: 100%;
   scroll-behavior: smooth;
   overflow-y: scroll;
}

body {
   font-family: var(--font-family-base);
   font-size: var(--font-size-base);
   line-height: var(--line-height-base);
   color: var(--color-text);
   background-color: var(--color-bg);
   min-height: 100vh;
   font-weight: 400;
   margin: 0;
   -webkit-font-smoothing: antialiased;
}

*:focus:not(:focus-visible) {
   outline: none;
}

a {
   color: var(--color-link) !important;
   text-decoration: none;
}
a:hover {
   color: var(--color-link-hover) !important;
}

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

img.round-card__img,
img.about__image-src {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

button,
input,
optgroup,
select,
textarea {
   font-family: inherit;
   font-size: 100%;
   line-height: 1.15;
   margin: 0;
}

p { padding-bottom: 0.5rem; }
ul, ol { padding-left: 2rem; list-style: none;}
blockquote { padding: 0.5rem; margin: 0.5rem; }
table { border-collapse: collapse; width: 100%; }

.page .shfb-mobile_offcanvas {
    background-color: #fff !important;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h4 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h5 { font-size: clamp(1.4rem, 3vw, 2rem); }
h6 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ========== Layout: containers & main ========== */
.container {
   position: relative;
   max-width: 1360px;
   margin-inline: auto;
}

@media (min-width: 768px) {
   .container {
       
   }
}

main.site-main {
   padding: 0;
}

@media (min-width: 768px) {
   main.site-main { padding: 0; }
}

section.section { margin-bottom: 10%; }

.site #content {
    padding: 0;
}

/* ========== Header ========== */
.site-header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background-color: #fff;
}

.header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0.5rem 0;
   gap: var(--gap);
}

.custom-logo-link {
   width: 200px;
   display: block;
}

.custom-logo-link img {
   max-height: 40px;
   width: auto;
}

.header-right {
   display: none;
   align-items: center;
   gap: var(--gap);
}

.header-contacts {
   display: flex;
   flex-direction: column;
   min-width: 142px;
}

.header-contacts__item { color: var(--color-secondary); }
.header-contacts__link { color: var(--color-secondary); }

.main-navigation { position: relative; }

.main-navigation .main-menu,
ul.main-menu {
   display: flex;
   list-style: none;
   margin: 0;
   padding: 0;
   gap: var(--gap);
   height: 24px;
   line-height: 24px;
}

ul.main-menu li { padding: 0 15px; }

.shfb-column-3 .header-html {
    display: flex;
}

.shfb-column-3 .header-html .header-contacts {
    
}

.shfb-column-3 .header-html .social-icons {
    margin-left: 30px;
}

.shfb-column-3 .header-html .social-icons img {
    height: 24px;
}

.mobile-menu-toggle {
   width: 30px;
   height: 24px;
   background: transparent;
   border: none;
   cursor: pointer;
}

@media (min-width: 1024px) {
   .header-right { display: flex; width: auto; }
   .mobile-menu-toggle { display: none; }
}

/* ========== Main / Hero ========== */
.hero {
   position: relative;
}

.hero .hero__bg {
   width: 100%;
   object-fit: cover;
   position: relative;
}

.hero .hero__heading {
   position: absolute;
   top: -12px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
}

.hero .hero__title {
   font-size: 26px;
   margin-bottom: 0;
}

.hero .hero__subtitle {
   font-size: 26px;
   margin-bottom: 0;
}

.hero .hero__description {
   margin: var(--gap) 0;
   line-height: 1.5;
}

.hero .hero__booking {
   position: absolute;
   bottom: 2%;
   left: 5%;
}

.hero .hero__btn-booking-modal {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-decoration: none;
   width: fit-content;
   margin: 0 auto;
   color: white;
}

.hero .hero__booking-icon-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 70%;
   aspect-ratio: 1 / 1;
   border: 1px solid #fff;
   border-radius: 50%;
   padding: 8px;
}

.hero .hero__booking-icon {
   width: 36px;
   height: auto;
   font-size: 36px;
   fill: none;
}

.hero .hero__booking-text {
   margin-top: 8px;
   font-size: 1rem;
   line-height: 1.2;
   text-align: center;
   color: #fff;
}

@media (min-width: 768px) {
   .hero .hero__title {
      font-size: 60px;
   }

   .hero .hero__subtitle {
      font-size: 60px;
   }

   .hero .hero__description {
        position: absolute;
        padding: 0 10px;
        bottom: 110px;
        right: 0;
        width: 420px;
        font-size: 18px;
        line-height: 1.5;
   }

   .hero .hero__booking {
        bottom: 9rem;
        left: 2rem;
   }
}

@media (min-width: 1360px) {
   .hero .hero__title {
      font-size: 74px;
   }

   .hero .hero__subtitle {
      font-size: 74px;
   }

   .hero .hero__description {
      bottom: 110px;
      font-size: 23px;
      line-height: 1.1;
   }

   .hero .hero__booking {
      bottom: 9rem;
      left: 3rem;
   }
}
/* ========== Main / Service ========== */
.section.services .cards-grid .entry-title a {
    color: #fff !important;
    font-size: 24px;
}

.services .single__info {
    display: block;
}

.services .entry-title a {
    font-size: 24px;
    display: flex;
    justify-content: space-between
}

.services .entry-title a .circle {
    background: var(--color-primary);
    padding: 8px;
    border-radius: 50%;
    width: 29px;
    height: 29px;
}

.services .entry-title a .circle svg {
    width: 13px;
}

.mainabout button {
    padding: 0.5rem 1rem;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

/* ========== Single service ========== */
.single {
   max-width: var(--max-width);
   margin: 0 auto;
}

.single__header,
.single__body,
   .third {
   margin-bottom: 20px;
   display: flex;
   flex-direction: column;
   gap: var(--gap);
}

.single__info,
.single__image-container,
.single__image-container-2,
.single__content,
.button-container {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   order: 1;
}

.single__header button.btn {
    color: var(--color-text);
}

.third .single__info {
    background: url("/uploads/bg-dotty2.jpg");
    background-size: cover;
}

.single__image-container {
   overflow: hidden;
   border-radius: var(--border-radius);
   background-color: var(--color-primary);
   align-items: flex-start;
   min-height: 290px;
}

.single__image-container-2 {
   border-radius: var(--border-radius);
   justify-content: flex-end;
   align-items: flex-start;
   min-height: 290px;
   order: 2;
}

.single__sub-description {
   background-color: white;
   margin: var(--gap) var(--gap) 0;
   padding: 5px 10px;
   border-radius: var(--border-radius);
}

.button-container a {
    padding: 50px;
    border: 1px solid #0F253D;
    border-radius: 50%;
    width: max-content;
    margin: 0 auto;
}

.button-container svg path {
    fill: #0F253D;
}

/* .single__sub-description::before,
.single__sub-description::after {
   content: "";
   display: block;
   position: absolute;
   width: 36px;
   height: 36px;
} */

/* .single__sub-description::before {
   left: 0;
   bottom: -35px;
   background-image: radial-gradient(circle at 100% 100%, transparent 36px, #fefefe 36px);
} */

/* .single__sub-description::after {
   right: -35px;
   top: 0;
   background-image: radial-gradient(circle at 100% 100%, transparent 36px, #fefefe 36px);
} */

.single__title {
    display: inline-block;
    margin-bottom: 20px;
}
.single__title span {
    background-color: var(--color-primary);
    border-radius: var(--border-radius);
    color: #fff;
    margin-top: 10px;
    display: inline-block;
    padding: 5px 20px;
}

.single__short-description {
   font-size: 23px;
   line-height: 28px;
   margin-bottom: 20px;
}

.single__short-description2 {
   font-size: 16px;
   line-height: 20px;
}

.single__short-description3 {
   font-size: 16px;
   line-height: 20px;
}

.recomendations {
    display: flex;
}

.recomendations .rec1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    order: 1;
    padding: 0 10px 0 0;
}

.recomendations .rec2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    order: 2;
    padding: 0 0 0 10px;
}

.effects-in-text-list {
   display: flex;
}

.effect-in-text-item {
   position: relative;
   border-top: solid 1px var(--color-text-light);
   width: 100%;
}

.effect-in-text-dot {
   position: absolute;
   top: -4px;
   background-color: var(--color-text-light);
   width: 7px;
   height: 7px;
   border-radius: var(--border-radius);
   border: 3px solid var(--color-primary-light);
}

.effect-in-text-item:first-child .effect-in-text-dot {
   background-color: var(--color-primary);
   top: -7px;
   width: 13px;
   height: 13px;
}

.effect-in-text-data {
   font-size: var(--font-size-small);
   padding: 18px 8px 10px 0;
   overflow-wrap: anywhere;
}

.effects-in-img-block {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 10px;
   margin: 10px;
}

.effect-in-img-item {
   font-size: var(--font-size-small);
   background-color: var(--color-light-white);
   color: var(--color-text);
   border-radius: var(--border-radius);
   padding: 5px 10px;
}

.effect-in-img-item:first-child {
   background-color: var(--color-dark-blue);
   color: white;
}

.single__content ul {
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius);
    padding: 10px;
    height: 100%;
}

.single__content ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.single__content ul li::marker {
   color: white;
   font-size: 2rem;
}

.program .single__content ul {
    background-color: white;
    border-radius: 0;
}

.service-single__price {
   max-width: 100%;
   background-color: var(--color-primary-light);
   border-radius: var(--border-radius);
   margin: auto;
   padding: 10px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   align-items: center;
}

@media (min-width: 768px) {
   .single__header,
   .single__body,
   .third {
      margin-bottom: 60px;
      flex-direction: row;
   }

   .single__content {
      order: 2;
   }

   .single__image-container-2 {
      order: 1;
   }

   .single__sub-description {
      padding: 10px 20px;
   }

   .single__title {
      /* margin-bottom: 20px; */
      /* padding: 5px 30px; */
   }

   .single__short-description {
      /* font-size: 20px; */
      /* line-height: 24px; */
      /* margin-bottom: 2rem; */
   }

   .effects-in-text-list {
      /* flex-wrap: nowrap; */
      /* margin-bottom: 1rem; */
   }

   .effect-in-text-data {
      /* padding: 20px 10px 10px 0; */
   }

   .effects-in-img-block {
      margin: 1rem;
   }

   .effect-in-img-item {
      padding: 5px 20px;
   }

   .single__content ul {
      padding: 2rem;
   }

   .service-single__price {
      /* max-width: 80%; */
      /* padding: 1rem; */
   }
}




/* ========== Forms ========== */
.wpcf7-form {
   display: flex;
   flex-direction: column;
   gap: var(--gap);
}

/* Поля ввода */
.wpcf7-form .form-control {
   width: 100%;
   padding: 0.75rem 1rem;
   font-size: 1rem;
   font-family: inherit;
   background-color: #fff;
   border: 1px solid #e0e0e0;
   border-radius: 4px;
   transition:
      border-color 0.3s ease,
      box-shadow 0.3s ease;
   box-sizing: border-box;
}

.wpcf7-form .form-control:focus {
   outline: none;
   border-color: var(--color-primary);
}

/* Стили для поля даты */
.wpcf7-form input[type="date"] {
   cursor: pointer;
}

.wpcf7-form input[type="date"]::-webkit-calendar-picker-indicator {
   cursor: pointer;
   filter: invert(0.5);
}

.service-date {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
}

.wpcf7-form .btn:disabled {
   background-color: #ccc;
   cursor: not-allowed;
   transform: none;
}

/* Чекбокс согласия */
.wpcf7-form [acceptance] {
   display: flex;
   align-items: flex-start;
   gap: 0.5rem;
   margin: 0;
   padding: 0;
   font-size: 0.875rem;
   color: #666;
   line-height: 1.5;
}

.wpcf7-form [acceptance] input[type="checkbox"] {
   margin-top: 0.25rem;
   width: 18px;
   height: 18px;
   cursor: pointer;
}

.wpcf7-form [acceptance] label {
   display: inline;
   margin: 0;
   padding: 0;
   cursor: pointer;
}

.wpcf7-form [acceptance] a {
   color: var(--color-primary);
   text-decoration: underline;
   transition: color 0.3s ease;
}

.wpcf7-form [acceptance] a:hover {
   color: var(--color-primary);
}

/* Сообщения об ошибках */

/* Скрыть стандартные сообщения CF7 */
.wpcf7-response-output {
   display: none !important;
}

.wpcf7-response-output {
   margin: 0;
   padding: 1rem;
   border-radius: 4px;
   font-size: 0.875rem;
   line-height: 1.5;
}

.wpcf7-response-output.wpcf7-validation-errors {
   background-color: #fff3cd;
   border: 1px solid #ffc107;
   color: #856404;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
   background-color: #d4edda;
   border: 1px solid #c3e6cb;
   color: #155724;
}

.wpcf7-response-output.wpcf7-mail-sent-ng {
   background-color: #f8d7da;
   border: 1px solid #f5c6cb;
   color: #721c24;
}

/* Подсказки валидации */
.wpcf7-not-valid-tip {
   margin-top: 0.25rem;
   font-size: 0.75rem;
   color: #dc3545;
   display: block;
}

/* Поля с ошибками */
.wpcf7-not-valid {
   border-color: #dc3545 !important;
}

/* Спиннер загрузки */
.wpcf7-spinner {
   display: inline-block;
   width: 20px;
   height: 20px;
   border: 3px solid var(--color-secondary);
   border-top-color: var(--color-secondary-hover);
   border-radius: 50%;
   animation: spin 0.8s linear infinite;
   margin-left: 0.5rem;
   vertical-align: middle;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

@media (max-width: 768px) {
   /* Блок выбора даты и времени - вертикально на мобильных */
   .service-date {
      grid-template-columns: 1fr;
      gap: 0.75rem;
   }

   /* Дропдаун времени */
   .dropdown__content {
      max-height: 250px;
   }

   /* Кнопка */
   .wpcf7-form .btn {
      padding: 0.875rem 1.5rem;
      font-size: 0.9375rem;
   }
}

@media (max-width: 480px) {
   /* Поля ввода */
   .wpcf7-form .form-control {
      padding: 0.625rem 0.75rem;
      font-size: 0.9375rem;
   }

   /* Кнопка */
   .wpcf7-form .btn {
      padding: 0.75rem 1.25rem;
      font-size: 0.875rem;
   }
}

/* ========================================
   Дополнительные улучшения
   ======================================== */

/* Стили для поля телефона с маской */
.wpcf7-form input[type="tel"] {
   font-family: "Courier New", monospace;
}

/* Плавные переходы для всех элементов */
.wpcf7-form * {
   transition: all 0.2s ease;
}
.wpcf7-form p {
   margin: 0;
}

/* Фокус для всех интерактивных элементов */
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
   outline: none;
   border-color: var(--color-primary);
}

/* Стили для плейсхолдера */
.wpcf7-form .form-control::placeholder {
   color: #aaa;
   opacity: 1;
}

.wpcf7-form .form-control:-ms-input-placeholder {
   color: #aaa;
}

.wpcf7-form .form-control::-ms-input-placeholder {
   color: #aaa;
}


/* ========== Another ========== */
.schlaki {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
    gap: var(--gap);
    margin-bottom: 60px;
}
.schlaki .card {
    background-color: var(--color-primary);
    color: #fff;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 240px;
    display: block;
    padding: 30px 20px;
    align-items: flex-end;
}
.schlaki .card .title {
    font-size: 23px;
    margin-bottom: 20px;
}
.schlaki .card .description {

}

.docs .round-card {
    background: #F1E2CD;
    align-items: start;
    position: relative;
}

.docs .round-card .round-card__content {
    padding: 1rem;
    position: initial;
}

.docs .round-card .circle {
    background: #d4a869;
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    margin-bottom: 20px;
}

.docs .round-card .entry-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}

.docs .round-card .nomer {
    color: #000;
    font-family: 'Corporate A Pro';
    font-weight: 600;
    font-size: 36px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.blockcard {
    display: block;
    position: relative;
}

.blockcard .card__image {
    height: 300px;
    position: relative;
}

.blockcard .card__image img {
    border-radius: var(--border-radius);
    object-fit: cover;
    height: 100%;
}

.blockcard .card__image a {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.blockcard .card__image a.btn-more {
    padding: 0.1rem 0.5rem;
}

.blockcard .card__image .corner {
    background: #fff;
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    border-radius: 50% 0 0;
}

.blockcard .card__image .corner a {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    padding: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.blockcard .programname {
    font-size: 26px;
    margin: 15px 0;
    font-weight: 600;
}

.servicecard {
    background-image: url(/uploads/bg-line-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
}


/* ========== Footer ========== */
.site-footer {
    background-color: inherit;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.footer-row {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: var(--gap);
   margin-bottom: 30px;
}

.footer-column {
   display: flex;
   flex-direction: column;
   gap: 10px;
   overflow-wrap: anywhere;
}

.footer-menu { padding: 0; list-style: none; }
.footer-menu .menu-item { margin-bottom: 5px; }

footer ul.menu li {
    margin-bottom: 10px;
}

.work-hours { font-weight: 500; }
.footer-column .social-icons { justify-content: left; }
.contact-info a { display: block;  margin-bottom: 8px; }
.location-map {
   grid-column: span 2;
   position: relative;
   overflow: hidden;
   border-radius: var(--border-radius);
}
.location-address {
    grid-column: span 2;
    grid-row-start: 2;
    font-size: 23px;
    font-weight: 400;
    height: 54px;
    line-height: 27.6px;
}
.med-info {  overflow-wrap: anywhere; }

@media (min-width: 768px) {
   .footer-row {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(1, 1fr);
   }
   .location-map { grid-column: span 2; }
   .location-address { grid-column-start: 3; grid-row-start: auto; }
}

/* ========== Social icons ========== */
.social-icons {
   display: flex;
   gap: 1rem;
   align-items: center;
   justify-content: center;
}

.social-icons__item {
   display: flex;
   align-items: center;
   justify-content: center;
   width: var(--social-item-size);
   height: var(--social-item-size);
   border-radius: 50%;
   background-color: var(--color-secondary);
   transition: all 0.2s ease;
}

.social-icons__item:hover,
.social-icons__item:focus {
   background-color: var(--color-secondary-hover);
   color: #fff;
   outline: none;
}

.social-icons__item svg {
   width: var(--social-icon-size);
   height: var(--social-icon-size);
   fill: #fff;
}

/* ========== Hero ========== */
.hero { position: relative; }

.hero__bg {
   width: 100%;
   object-fit: cover;
   position: relative;
}

.hero__heading {
   position: absolute;
   top: -12px;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
}

.hero__title { font-size: 26px; margin-bottom: 0; }
.hero__subtitle { font-size: 26px; margin-bottom: 0; }
.hero__description { margin: var(--gap) 0; line-height: 1.5; }

.hero__booking { position: absolute; bottom: 2%; left: 5%; }

.hero__btn-booking-modal {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-decoration: none;
   width: fit-content;
   margin: 0 auto;
   color: #fff;
}

.hero__booking-icon-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 70%;
   aspect-ratio: 1 / 1;
   border: 1px solid currentColor;
   border-radius: 50%;
   padding: 8px;
}

.hero__booking-icon {
   width: 36px;
   height: auto;
   fill: none;
}

.hero__booking-text { margin-top: 8px; font-size: 1rem; line-height: 1.2;  }

@media (min-width: 768px) {
   .hero__title { font-size: 36px; }
   .hero__subtitle { font-size: 36px; }
   .hero__description {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 45%;
      font-size: 18px;
      line-height: 1;
   }
   .hero__booking { bottom: 5rem; left: 1rem; }
}

@media (min-width: 1360px) {
   .hero__title { font-size: 74px; }
   .hero__subtitle { font-size: 74px; }
   .hero__description { bottom: 130px; font-size: 23px; line-height: 1.1; }
   .hero__booking { bottom: 9rem; left: 3rem; }
}

/* ========== Cards grid & cards ========== */
.simple-grid,
.cards-grid,
.detox-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: var(--gap);
}

.detox-grid { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }
.simple-grid { grid-template-columns: repeat(auto-fill, minmax(50%, 1fr)); }

.simple-card,
.round-card,
.detox-card {
   background-color: var(--color-primary);
   position: relative;
   border-radius: var(--border-radius);
   overflow: hidden;
   min-height: 240px;
   display: flex;
   align-items: flex-end;
}

.simple-card {
   background-color: var(--color-primary-light);
   min-height: auto;
}

.round-card__image,
.detox-card__image {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}

.round-card__content,
.detox-card__content {
    position: relative;
    padding: 1rem 1rem 0;
    border-radius: 35px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: space-between;
    height: 100%;
}

.round-card__content p {
    font-size: 14px;
    margin: 0;
}

.round-card__content .btn {
    border: none;
    margin: 15px 0;
}

.simple-card__content {
   display: flex;
   align-items: center;
   gap: var(--gap);
   padding: 2rem;
   width: 100%;
}

.entry-title {
   font-size: clamp(1.6rem, 3vw, 2rem);
   padding: 0;
   flex-grow: 1;
}

.entry-title a { color: #fff; }

.pagination-dots { display: flex; gap: var(--gap); margin-bottom: var(--gap); }
.pagination-dot {
   display: inline-block;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background-color: var(--color-light-white);
}
.pagination-dot.active { background-color: #fff; }

.detox-card__content p { margin-bottom: var(--gap); padding: 0; }

/* ========== Buttons ========== */
.btn {
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50px;
   transition: all 0.2s ease;
   width: fit-content;
   gap: 0.5rem;
   background-color: #fff;
   margin-top: auto;
   border: 1px solid var(--color-text);
}

.btn-more { padding: 0.5rem 1rem; }
.btn-more:hover {
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   transform: translateY(-2px);
}

.btn--primary {
   background-color: var(--color-primary);
   color: #fff;
   border-color: var(--color-primary);
}

.btn-icon {
   display: inline-block;
   width: 1em;
   height: 1em;
   background-color: var(--color-primary);
   border-radius: 50%;
   flex-shrink: 0;
}

/* ========== About section ========== */
.about__grid { display: grid; gap: var(--gap); }
.about__col { display: flex; flex-direction: column; gap: var(--gap); }
.about__col--primary { order: 1; }
.about__col--secondary { order: 2; }
.about__image { overflow: hidden; position: relative; }
.about__image--2 { border-radius: var(--border-radius); }
.about__actions { display: flex; justify-content: center; }
.about__btn {
   padding: 16px 40px;
   font-size: 1.125rem;
   font-weight: 600;
   width: 100%;
   max-width: 320px;
   
}

@media (min-width: 768px) {
   .about__grid { grid-template-columns: 1fr 1fr; }
   .about__actions { justify-content: flex-start; }
   .about__btn { max-width: none; width: auto; }
}

.slider-container {
    width: 100%;       /* Ширина видимой области */
    overflow-x: auto;  /* Включает скролл, если контент не влезает */
    white-space: nowrap; /* Запрещает перенос слайдов на новую строку */
    padding: 10px 0;
    margin-bottom: 60px
}

.slider-container .slider-wrapper {
  display: inline-flex; /* Используем flex для удобного расположения */
  gap: 20px;            /* Расстояние между слайдами */
}

.slider-container .slider-wrapper .slide {
  width: 320px;
  display: inline;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-radius: 10px;
}

.slider-container .slider-wrapper .slide .image img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.slider-container .slider-wrapper .slide .fio {
    margin-top: 15px;
    font-weight: 600;
}

.slider-container .slider-wrapper .slide .speczializacziya {
    font-size: 18px;color: #d4a869;margin: 10px 0;
}

.slider-container .slider-wrapper .slide .descr {
    font-size: 15px;
    white-space: normal;
}
    

/* ========== Reviews ========== */
.reviews-section { padding: 2rem 0; }
.reviews-section .section-header { margin-bottom: 1.5rem;  }

.review-card {
   background: var(--color-primary-light);
   border-radius: var(--border-radius);
   padding: 1.5rem;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.review-card__rating {
   font-weight: 700;
   color: var(--color-secondary);
   margin-bottom: 0.5rem;
}

.review-card__text { flex: 1; margin: 0 0 1rem; font-style: italic; }
.review-card__text p:last-child { margin-bottom: 0; }
.review-card__meta { margin-top: auto; font-size: var(--font-size-small); color: var(--color-text); }
.review-card__author { font-style: normal; font-weight: 600; }
.review-card__date { display: block; opacity: 0.8; }
.reviews-swiper { overflow: hidden; padding-bottom: 2rem; }

/* ========== Contacts block ========== */
.contacts-block { padding: 2rem 0; }
.contacts-block__title { margin-bottom: 1.5rem;  }
.contacts-block--full .contacts-block__grid { display: grid; gap: 2rem; }
.contacts-block__work-hours { font-weight: 600; margin-bottom: 1rem; }
.contacts-block__socials { margin-bottom: 1rem; }
.contacts-block__contact-info a { display: block; margin-bottom: 0.5rem; }
.contacts-block__address { margin-top: 1rem; margin-bottom: 0.5rem; }
.contacts-block__map-inner {
   position: relative;
   width: 100%;
   overflow: hidden;
   border-radius: var(--border-radius);
}
.contacts-block__map-inner iframe { display: block; width: 100%; height: 400px; border: 0; }

@media (min-width: 768px) {
   .contacts-block--full .contacts-block__grid {
      grid-template-columns: 1fr 1.5fr;
      align-items: start;
   }
   .contacts-block__map-inner iframe { height: 450px; }
}

/* ========== Accordion ========== */
.lb-accordeon { width: 100%; }
.accordeon-item {
   width: 100%;
   margin-bottom: 1rem;
   padding: 1rem;
   background-color: var(--color-primary-light);
   border: none;
   border-radius: var(--border-radius);
}

.lb-accordeon-trigger {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   cursor: pointer;
   background-color: inherit;
   border: none;
}

.accordeon-title { font-size: 1.2rem; }
.accordeon-icon {
   width: 30px;
   height: 30px;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: transform 0.3s ease;
   background-color: var(--color-link);
   color: #fff;
   border-radius: 50%;
}

.accordeon-icon::before,
.accordeon-icon::after {
   content: "";
   position: absolute;
   background-color: currentColor;
   transition: transform 0.3s ease;
}
.accordeon-icon::before { width: 50%; height: 2px; }
.accordeon-icon::after { width: 2px; height: 50%; }
.lb-accordeon-trigger.is-active .accordeon-icon::after { transform: rotate(90deg); }

.accordeon-content {
   overflow: hidden;
   background-color: #fff;
   border-radius: var(--border-radius);
}

.accordeon-inner { display: flex; justify-content: space-between; gap: 40px; padding: 1rem; }
.accordeon-card__grid { flex: 1; padding: 1rem; }
.accordeon-card {
   border-bottom: 1px solid var(--border-color);
   margin-bottom: 2rem;
}
.accordeon-card:last-child { border-bottom: none; margin-bottom: 0; }
.accordeon-card__item {
   display: flex;
   justify-content: space-between;
   gap: var(--gap);
   align-items: center;
   margin-bottom: 1rem;
}
.accordeon-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    width: 50%;
}
.accordeon-card__title {
   font-family: var(--font-family-base);
   font-size: var(--font-size-base);
   text-transform: none;
   margin: 0;
}

.service-card__description svg {
    width: 20px;
}

.accordeon-card__price {
    width: 30%;
}

.accordeon-card__button {
    width: 20%;
    text-align: right;
}

.accordeon-card__button button {
    color: #000;
    font-size: 14px;
}

.accordeon-card__button button .btn-icon {
    background-color: #000;
    width: 10px;
    height: 10px;
}

/* ========== Modal ========== */
.lb-modal,
.modal {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 10000;
   display: none;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: all 0.3s ease;
}

.modal__overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6);
   backdrop-filter: blur(4px);
   cursor: pointer;
}

.modal__container {
   position: relative;
   max-width: 500px;
   width: 100%;
   background: #fff;
   border-radius: var(--border-radius);
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
   padding: 40px;
   margin: 20px;
   transform: translateY(20px);
   transition: transform 0.3s ease;
   overflow: auto;
}

.modal__close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   width: 32px;
   height: 32px;
   font-size: 24px;
   line-height: 1;
   color: #1d1d1b;
   background: none;
   border: none;
   cursor: pointer;
   padding: 0;
}

.lb-modal.is-open,
.modal.is-open {
   display: flex;
   opacity: 1;
}

/* ========== Page intro ========== */
.page-intro { padding: 2rem 0;  }
.page-intro__title { margin: 0 0 0.25rem; font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-intro__subtitle { margin: 0 0 1rem; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 400; opacity: 0.9; }
.page-intro__text { max-width: 720px; margin: 0 auto 1.5rem; line-height: 1.6; }
.page-intro__text p:last-child { margin-bottom: 0; }

/* ========== Values / features slider ========== */
.features { margin-bottom: 20px;  }
.features__slide-inner {
   display: grid;
   grid-template-columns: 1fr;
   gap: 10px;
   width: 100%;
}

.features__item--slide {
   padding: 1rem;
   background-color: var(--color-primary);
}

.features-title { font-family: var(--font-family-base); font-size: 35px; text-transform: none; color: #fff; }
.features-short-description { color: #fff; }

@media (min-width: 768px) {
   .features { margin-bottom: 80px; }
   .features__slide-inner { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr; }
   .features__slide-inner > .features__item--slide:nth-child(1) { grid-area: 1/1/3/2; }
   .features__slide-inner > .features__item--slide:nth-child(2) { grid-area: 1/2/2/3; height: 200px; }
   .features__slide-inner > .features__item--slide:nth-child(3) { grid-area: 2/2/3/3; height: 200px; }
   
   .interior { margin-bottom: 80px; }
   .interior .features__slide-inner { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
   .interior .features__slide-inner > .features__item--slide:nth-child(1) { grid-area: 1/1/3/2; }
   .interior .features__slide-inner > .features__item--slide:nth-child(2) { grid-area: 1/2/2/3; height: 200px; }
   .interior .features__slide-inner > .features__item--slide:nth-child(3) { grid-area: 2/2/3/3; height: 200px; }
}

/* ========== Single (service/program) ========== */
.single { max-width: var(--max-width); margin: 0 auto; }
.single__header,
.single__body,
   .third {
   margin-bottom: 20px;
   display: flex;
   flex-direction: column;
   gap: var(--gap);
}

.single__image-container-2 {
   border-radius: var(--border-radius);
   justify-content: flex-end;
   align-items: flex-start;
   min-height: 290px;
   order: 2;
}

.single__sub-description {
    background-color: #fff;
    margin: 0;
    border-radius: 0 0 var(--border-radius);
}

.program .single__sub-description {
    background-color: #0F253D;
    color: #fff;
    margin: 0 20px;
    border-radius: var(--border-radius);
}

.third .single__sub-description {
    border-radius: var(--border-radius);
    bottom: 0;
    right: 0;
    position: absolute;
    margin: 20px;
    text-align: right;
    font-size: 14px;
    max-width: 220px;
}

.third .single__sub-description p {
    margin-bottom: 0;
}

.effects-in-text-list { display: flex; }
.effect-in-text-item { position: relative; border-top: solid 1px var(--color-text-light); width: 100%; }
.effect-in-text-dot {
   position: absolute;
   top: -4px;
   background-color: var(--color-text-light);
   width: 7px;
   height: 7px;
   border-radius: var(--border-radius);
   border: 3px solid var(--color-primary-light);
}
.effect-in-text-item:first-child .effect-in-text-dot {
   background-color: var(--color-primary);
   top: -7px;
   width: 13px;
   height: 13px;
}
.effect-in-text-data { font-size: var(--font-size-small); padding: 18px 8px 10px 0; }
.effects-in-img-block { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 20px 15px; }
.effect-in-img-item {
   font-size: var(--font-size-small);
   background-color: var(--color-light-white);
   color: var(--color-text);
   border-radius: var(--border-radius);
   padding: 5px 10px;
}
.effect-in-img-item:first-child { background-color: var(--color-dark-blue); color: #fff; }

@media (min-width: 768px) {
   .single__header,
   .single__body,
   .third { margin-bottom: 80px; flex-direction: row; }
   .single__content { order: 2; }
   .single__image-container-2 { order: 1; }
}

/* ========== Detox test block ========== */
.detox-test-block { padding: 2rem 0; }
.detox-test-block .section-header { margin-bottom: 1.5rem; }

/* ========== Interior section ========== */
.interior-section { padding: 2rem 0; }
.interior-section .section-header { margin-bottom: 1.5rem; }

/* ========== Section about (home) ========== */
.section-about { padding: 2rem 0; }

/* ========== Links in sections ========== */
.section a.btn-more,
a.btn-more {
   color: inherit;
}

.section a.btn-more:hover {
   color: var(--color-primary);
}
