@font-face {
    font-family: "Nunito-Light";
    src: url(../fonts/Nunito/Nunito-Light.ttf)
}
@font-face {
    font-family: "Nunito-Regular";
    src: url(../fonts/Nunito/Nunito-Regular.ttf)
}
@font-face {
    font-family: "Nunito-Semi";
    src: url(../fonts/Nunito/Nunito-SemiBold.ttf)
}

@font-face {
    font-family: "Nunito-Bold";
    src: url(../fonts/Nunito/Nunito-Bold.ttf)
}

@font-face {
    font-family: "Nunito-Black";
    src: url(../fonts/Nunito/Nunito-Black.ttf)
}

body {
    margin: 0;
    font-family: "Nunito-Bold";
    background: #bab7bc;
    color: #222;
    transition: filter 0.3s ease;
}



/* затемнение страницы */
body.menu-open {
    overflow: hidden;
}

.page-overlay {
    /* position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 998; */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 900;
}

.page-overlay.active {
    /* opacity: 1;
    pointer-events: all; */
    opacity: 1;
    visibility: visible;
}

/* Main container для автоматического ограничения */
.main-container {
    max-width: 1200px;
    margin: auto;
}


/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    border-radius: 50px;
    z-index: 1100;
    transition: all 0.4s ease;
}

.header.glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.header__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* десктоп */
.header__nav {
    display: flex;
    align-items: center;
}

.header__right {
    display: none;
}

@media (max-width: 768px) {

    /* скрываем десктоп меню */
    .header__nav {
        display: none;
    }

    /* показываем бургер */
    .header__right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.header__list {
    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.header__link {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    position: relative;
}

/* underline анимация */
.header__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0%;
    height: 2px;

    background: #ff6493;
    transition: 0.3s;
}

.header__link:hover::after {
    width: 100%;
}

/* кнопка */
.header__btn {
    background: linear-gradient(135deg, #ff6493, #ff2d6f);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

/* ===== BURGER ===== */
.burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.burger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

/* анимация в крест */
.burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .header__btn {
    font-size: 12px;
}
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: url('https://i.ibb.co/cWb73zy/Chat-GPT-Image-4-2026-12-38-12.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.35);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 50px;
    font-family: 'Nunito-Semi';
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    transition: 0.4s;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__content {
    padding: 200px 30px;
}

.mobile-menu a {
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}

/* соц */
.mobile-menu__social {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

/* адрес */
.mobile-menu__address {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

/* ===== SERVICES ===== */
.services {
    padding: 20px 20px;
    text-align: center;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;
    border-radius: 20px;

    background: rgba(255,255,255,0.6);

    text-decoration: none;
    color: #222;
    font-size: 16px;

    transition: 0.3s;
}

.service-card:hover {
        transform: translateY(-5px);
    background: linear-gradient(135deg, #ffffff, #f0edf3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* cta-main */

.cta-main {
    text-align: center;
    padding: 40px 20px;
}

/* кнопки */
.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6493, #ff2d6f);
    color: white;
}

.btn-secondary {
    border: 2px solid #ff6493;
    color: #ff6493;
}


 /* ===== GLASS FOOTER ===== */
.footer {
    margin: 0px auto 30px;
    width: 95%;
    max-width: 1200px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
     box-shadow:
        0 10px 40px rgba(0,0,0,0.1),
        0 0 30px rgba(255,255,255,0.3);
}

.footer a {
    color: #ff6493;
    text-decoration: none;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 колонки */
    padding: 40px;
    align-items: start;
    position: relative;
}

/* линия */
.footer__content::after {
    content: '';
    position: absolute;

    top: 10%;
    bottom: 10%;
    left: 50%;

    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0,0,0,0.2),
        transparent
    );
}
@media (max-width: 768px) {
    .footer__content::after {
        display: none;
    }
}

.footer__info {
    text-align: left;
    color: #222;
}

.footer__social {
    text-align: right;
}

.footer__info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer__info a {
    text-decoration: none;
    color: #000;
}

/* соцсети */
.footer__social p {
    margin-bottom: 15px;
}

.footer__social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* прижать вправо */
    gap: 10px;
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr; /* одна колонка */
        text-align: center;
    }

    .footer__social {
        text-align: center;
    }

    .footer__social-links {
        align-items: center;
    }
}

/* ссылки */
.footer__social-links a {
    text-decoration: none;
    color: #444;
    font-size: 16px;

    position: relative;
    width: fit-content;

    transition: 0.3s;
}

/* underline эффект */
.footer__social-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 0%;
    height: 2px;
    background: #ff6493;

    transition: 0.3s;
}

.footer__social-links a:hover {
    color: #ff6493;
}

.footer__social-links a:hover::after {
    width: 100%;
}

/* hover эффект */
.footer__social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* цвета */
.fa-instagram { color: #e1306c; }
.fa-vk { color: #0077ff; }
.fa-telegram { color: #2aabee; }
.fa-whatsapp { color: #25d366; }

/* адаптив */
@media (max-width: 768px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
    }

    .footer__social-links {
        justify-content: center;
    }
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}


/* ===== HERO ===== */
.service-hero {
    text-align: center;
    padding: 140px 20px 1px;
}

.service-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-hero p {
    color: #666;
    margin-bottom: 20px;
}

.btn {
    background: linear-gradient(135deg, #ff6493, #ff2d6f);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

/* ===== SECTION ===== */
.services-epilation {
    padding: 5px 20px;
    max-width: 1200px;
    margin: auto;
}

.services-epilation h2 {
    color: #e5004e;
    /* text-shadow: 2px 2px 4px #e91e63; */

}

/* ===== GRID ===== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.price-grid h3 {
    color: #00672b;
}


.zones {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zone-block {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff14;
}

.zone-block h3 {
    margin-bottom: 10px;
    color: #00672b;
}

.zone-block p {
    font-family: "Nunito-Regular";
}

/* ===== CARD ===== */
.price-card {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff14;
}

.price-card p ,.zone-block ul, .sub-card ul {
    font-family: "Nunito-Regular";
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.price-card.highlight {
    border: 2px solid #ff6493;
}

/* ===== ABONEMENT ===== */
.subs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sub-card {
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff14;
}

.sub-card ul {
    padding-left: 20px;
    line-height: 1.8;
}

.sub-card h3 {
    color: #00672b;
}

/* .sub-card.highlight {
    border: 2px solid #ff6493;
} */

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 2px 20px;
    text-align: center;
}
    
.advantages ul {
    padding-left: 20px;
    line-height: 1.8;
    display: inline-block;
}

/* ===== CTA ===== */
.cta {
    text-align: center;
}

.description-epilation {
    padding: 0px 20px;
    text-align: center;
}

.seo-text {
    text-align: center;
    padding: 0px 20px;
    color: #555;
}

.seo-text h2 {
    margin: 0;
    font-size: 18px;
    color: #000;
}

/* ===== MASSAGE ===== */



.service-massage {
    padding: 30px 20px;
    max-width: 1200px;
    margin: auto;
}

.service-massage h2 {
    color: #e5004e;
}

.seo-text-massage {
    text-align: left;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.seo-text-massage ul {
    display: inline-block;
}

.seo-text-massage a {
    text-decoration: none;
    color: #222;
}

.cta-massage { 
    text-align: center;
    padding-top: 40px;
}

/* ===== FAQ ===== */

.faq {
    max-width: 800px;
    margin: 40px auto;
    padding: 0px 20px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: #000;
    font-family: 'Nunito-Bold';
}

/* .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 22px;
    transition: 0.3s;
} */

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #858484;
}


/* ===== SOLARIUM ===== */

.advantages-solarium {
    padding: 2px 20px;
    text-align: center;
}

.advantages-solarium ul {
    padding-left: 20px;
    line-height: 1.8;
    display: inline-block;
    text-align: left;
}

.price-solarium {
    text-align: center;
    padding: 40px;
}
.price-highlight {
    text-align: center;
    font-size: 24px;
    margin: 20px 0;
}

.price-highlight span {
    font-weight: bold;
    font-size: 32px;
}

.solarium-abonement {
    padding: 0px 20px;
}

.solarium-abonement h2 {
    color: #e5004e;
}

.solarium-unlime {
    padding: 20px;
}

.solarium-unlime h2 {
    color: #e5004e;
}

/* ===== ELECTROEPILATION ===== */

.sale {
    padding: 0px 20px;
    text-align: center;
}

.price-electro {
    padding: 20px 20px;
}


/* ===== CONSULTATION ===== */

.consult-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.consult__box {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: 20px;

    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.6);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);

    text-align: center;
}

.consult__box h1 {
    margin-bottom: 10px;
}

.consult__box p {
    margin-bottom: 30px;
    color: #555;
}

.consult__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consult__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px;
    border-radius: 12px;

    text-decoration: none;
    color: #fff;
    font-weight: 500;

    transition: 0.3s;
}

.consult__links a i {
    font-size: 18px;
}

.consult__links a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* цвета */
.consult-page .consult__links a.vk { background: #4c75a3; }
.consult-page .consult__links a.inst { background: #ff6493; }
.consult-page .consult__links a.tg { background: #2AABEE; }
.consult-page .consult__links a.wa { background: #25D366; }
.consult-page .consult__links a.max { background: #0084ff; }

.back {
    margin-top: 25px;
    display: inline-block;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.consult__links a.vk i { color: #fff; }
.consult__links a.inst i { color: #fff; }
.consult__links a.tg i { color: #fff; }
.consult__links a.wa i { color: #fff; }
.consult__links a.max i { color: #fff; }


/* ===== SERVICES ===== */


.services-page {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    padding-top: 80px;
}

.services-subtitle {
    margin-bottom: 40px;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    display: block;
    padding: 30px;
    border-radius: 20px;

    text-decoration: none;
    color: #222;

    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.6);

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    transition: 0.3s;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card-grid {
    margin-bottom: 0px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}        


/* ===== CONTACTS ===== */

.contacts {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
    padding-top: 80px;
}

.contacts-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

/* карточки */
.contact-card {
    padding: 25px;
    border-radius: 16px;

    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.6);

    margin-bottom: 20px;
    text-align: left;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* кнопка */
.contact-btn {
    display: block;
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

/* карта */
.contacts__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 20px;
}

/* мобилка */
@media (max-width: 768px) {
    .contacts__wrapper {
        grid-template-columns: 1fr;
    }
}



/* ================================
   WRAPPER COSMETOLOGY
================================ */

.cosmetology-page {
  max-width: 1200px;
  margin: 0 auto;
  color:#555;
  padding: 100px 30px 60px 30px;
  font-family: "Montserrat";
  line-height: 1.6;
}

/* ================================
   HERO
================================ */

.cosmetology-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 35px;
  padding-bottom: 25px;
  text-align: center;
}

/* ================================
   HEADER
================================ */

.cosmetology-header h1 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  text-indent: 20px;
  font-weight: 600;
  color:#000;
}

.cosmetology-desc {
  color: #555;
  margin-bottom: 20px;
  text-indent: 20px;
  font-weight: 400;
}

.cosmetology-desc p {
  font-weight: 400;
}

/* ================================
   SECTIONS
================================ */

.cosmetology-section {
  margin-bottom: 2.2rem;
}

.cosmetology-section__title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #ecf0f1;
}

/* ================================
   SERVICES (как зоны)
================================ */

.services-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.services-card-grid {
  display: grid;
  gap: 15px;
  
}

.service-card {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-name {
  font-weight: 500;
  color: #2c3e50;
}

.service-price {
  color: #27ae60;
  font-weight: 600;
}

/* ===== COSMETOLOGY INTRO ===== */

.cosmetology-intro .cosmetology-container p {
  text-indent: 13px;
  padding-bottom: 15px;
}

.cosmetology-intro .cosmetology-container h3 {
  color: #e91e63;
  line-height: 25px;
  padding-bottom: 10px;
}

.cosmetology-intro .cosmetology-container ul {
  padding-bottom: 20px;
  font-size: 14px;
}

/* ===== COSMETOLOGY SERVICES ===== */

.cosmetology-services {
  margin-top: 40px;
}

.cosmetology-category {
  margin-bottom: 40px;
}

.cosmetology-category-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #e91e63;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 6px;
}

.cosmetology-category-desc {
  margin-bottom: 20px;
  color: #666;
}

/* список услуг */
.cosmetology-service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* карточка услуги */
.cosmetology-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.cosmetology-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-name {
  font-weight: 500;
  color: #2c3e50;
  flex: 1;
  padding-right: 10px;
}

.service-price {
  font-weight: 700;
  color: #27ae60;
  white-space: nowrap;
  text-align: right;
  min-width: 100px;
}

@media (max-width:768px){

  .cosmetology-service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-price {
    text-align: left;
  }

}

/* ================================
   COMPLEX STYLE (если есть)
================================ */

.cosmetology-complexes {
  display:flex;
  flex-direction:column;
  gap:12px;
}

.cosmetology-complex-card {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:14px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
}

.cosmetology-complex-name {
  font-weight:600;
  margin:0 0 6px 0;
  color:#34495e;
}

.cosmetology-complex-description {
  color:#7f8c8d;
  font-size:.95rem;
}

/* ================================
   FAQ
================================ */

.cosmetology-faq-container {
  margin-top:12px;
}

.cosmetology-faq-item {
  margin-bottom:10px;
  padding:10px;
  border-radius:8px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}

.cosmetology-faq-question {
  font-weight:600;
  margin-bottom:6px;
}

.cosmetology-faq-answer {
  font-size:0.95rem;
  color:#555;
}

/* ===== FAQ COSMETOLOGY ===== */

.cosmetology-faq {
  margin-top: 30px;
}

.cosmetology-faq h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
  padding-bottom: 6px;
  color: #2c3e50;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: #fff;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f9f9f9;
}

/* .faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: #27ae60;
} */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
}

.faq-answer-inner {
  padding: 0 20px 18px 20px;
  color: #555;
  line-height: 1.6;
}

/* активное состояние */
.faq-item.active .faq-answer {
  max-height: 1500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* адаптив */
@media (max-width:768px){
  .faq-question {
    font-size: 0.95rem;
  }
}


/* ================================
   SEO TEXT
================================ */

.cosmetology-seo-text {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.cosmetology-seo-text h2,
.cosmetology-seo-text h3 {
    margin-top: 25px;
}

.cosmetology-seo-text p {
  font-weight: 400;
}

/* ================================
   ADAPTIVE
================================ */

@media (max-width:768px){

  .cosmetology-wrapper {
    padding: 80px 20px 0px 20px;
  }

  .cosmetology-wrapper h1 {
    font-size: 1.1rem;
    text-indent: 15px;
  }

  .cosmetology-desc {
    font-size: 1.1rem;
    text-indent: 20px;
    color:#000;
  }

  .service-card,
  .cosmetology-complex-card {
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill,minmax(140px,1fr));
  }
}

/* ================================
   ABOUT PREPARATE
================================ */
/* верхняя строка */
.service-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}

.service-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* цена справа */
.service-price {
    text-align: right;
    white-space: nowrap;
}

/* кнопка подробнее */
.service-toggle {
    margin-top: 6px;
    font-size: 14px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.service-toggle:hover {
    color: #000;
}

/* текст */
.service-content {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}

.service-content p {
    text-indent: 10px;
    font-size: 14px;
}

.service-content ul {
    font-size: 14px;
}

/* активное состояние */
.cosmetology-service-item.active .service-content {
    display: block;
}

/* меняем текст */
.cosmetology-service-item.active .service-toggle::after {
    content: "Скрыть";
}

.service-toggle::after {
    content: "Подробнее";
}


/* КНОПКА ПЕРЕКЛЮЧЕНИЯ ПРАЙСА */

/* .price-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap; 
}

.toggle-btn {
    padding: 12px 22px;
    border: 1px solid #eee;
    cursor: pointer;
    background: #f7f7f7;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: #ffe4ec;
}

.toggle-btn.active {
    background: #ff6493;
    color: #fff;
    border-color: #ff6493;
    box-shadow: 0 6px 18px rgba(255, 100, 147, 0.3);
}

.price-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.price-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
} */

/* КНОПКИ КАК АЙОС */

.price-toggle-ios {
    position: relative;
    display: flex;
    width: 320px;
    margin: 0 auto 30px;
    background: #f3f3f3;
    border-radius: 50px;
    padding: 4px;
}

/* КНОПКИ */
.toggle-option {
    flex: 1;
    z-index: 2;
    padding: 12px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    border-radius: 50px;
    transition: color 0.3s ease;
}

/* АКТИВНЫЙ ТЕКСТ */
.toggle-option.active {
    color: #fff;
}

/* СЛАЙДЕР */
.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #ff6493;
    border-radius: 50px;
    transition: transform 0.35s ease;
    box-shadow: 0 6px 16px rgba(255, 100, 147, 0.3);
}

/* СДВИГ */
.price-toggle-ios.men .toggle-slider {
    transform: translateX(100%);
}

/* АНИМАЦИЯ КОНТЕНТА */
.price-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
}

.price-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.price-wrapper {
    position: relative;
}