/* Стили для выделенного текста */
::selection {
    background-color: #ffcccb; /* Цвет фона выделенного текста */
    color: #333; /* Цвет текста при выделении */
}

/* Общие стили для всего сайта */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

/* Стили для шапки */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffcccb;
    padding: 10px 20px;
    position: relative;
}

/* Общие стили для кнопок */
.header-buttons {
    display: flex;
    gap: 10px; /* Расстояние между кнопками */
    align-items: center; /* Выравнивание по центру */
}

.header-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: transform 0.2s ease, background-color 0.3s ease; /* Анимация */
}

.header-buttons .btn:hover {
    background-color: #e65a50; /* Изменение цвета */
    transform: scale(1.05); /* Увеличение кнопки */
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.header-btn:hover {
    transform: scale(1.1); /* Увеличение при наведении */
    background-color: #ff6f61;
}

/* Цвета для кнопок */
.header-btn.telegram:hover {
    background-color: #0088cc; /* Цвет Telegram */
}

.header-btn.instagram:hover {
    background-color: #e1306c; /* Цвет Instagram */
}

.header-btn.phone:hover {
    background-color: #25d366; /* Цвет WhatsApp (для звонков) */
}

/* Адаптация для мобильных устройств */
@media (max-width: 780px) {
    .header-buttons {
        gap: 5px; /* Уменьшаем расстояние между кнопками */
        flex-wrap: wrap; /* Перенос кнопок на новую строку */
        justify-content: flex-end; /* Выравнивание кнопок по правому краю */
    }

    .header-buttons .btn {
        order: -1; /* Кнопка "Записаться" будет первой */
        margin-bottom: 10px; /* Отступ снизу */
    }

    .header-btn {
        width: 35px;
        height: 35px;
    }
}

/* Навигационное меню */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1em;
}

nav ul li a:hover {
    color: #ff6f61;
}

/* Секция "Главная" */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: transform 0.2s ease, background-color 0.3s ease; /* Анимация */
}

.hero .btn:hover {
    background-color: #e65a50; /* Изменение цвета */
    transform: scale(1.05); /* Увеличение кнопки */
}

/* Стили для секции "За что выбирают нас" */
.why-us {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff; /* Белый фон для контраста */
}

.why-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.why-us-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Расстояние между элементами */
}

.why-us-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 40px); /* Три элемента в ряд */
    transition: transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px); /* Эффект поднятия при наведении */
}

.why-us-item h3 {
    font-size: 1.5em;
    color: #ff6f61;
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 1em;
    color: #555;
}

.why-us-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Стили для кнопок "За что выбирают нас?" */
.why-us-cta .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: transform 0.2s ease, background-color 0.3s ease; /* Анимация */
}

.why-us-cta .btn:hover {
    background-color: #e65a50; /* Изменение цвета */
    transform: scale(1.05); /* Увеличение кнопки */
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .why-us-item {
        width: calc(50% - 20px); /* Два элемента в ряд на планшетах */
    }
}

@media (max-width: 480px) {
    .why-us-item {
        width: 100%; /* Один элемент в ряд на мобильных устройствах */
    }
}


/* Секция "Услуги" */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%; /* По умолчанию блоки занимают всю ширину */
}

.service-item h3 {
    font-size: 1.5em;
    color: #ff6f61;
}

.service-item p {
    font-size: 1em;
    color: #555;
}

/* Стили для кнопок "Записаться" */
.service-item .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: transform 0.2s ease, background-color 0.3s ease; /* Анимация */
}

.service-item .btn:hover {
    background-color: #e65a50; /* Изменение цвета */
    transform: scale(1.05); /* Увеличение кнопки */
}

/* Секция "Галерея" */
.gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.gallery-images {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.gallery-images img {
    width: 100%; /* По умолчанию изображения занимают всю ширину */
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

/* Стили для секции "Отзывы" */
.reviews {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Легкий фон для выделения секции */
}

.reviews h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.reviews-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.review-item {
    background-color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%; /* Три отзыва в ряд на больших экранах */
}

.review-text {
    font-size: 1em;
    color: #555;
    font-style: italic;
}

.review-author {
    font-size: 0.9em;
    color: #ff6f61;
    margin-top: 10px;
}

/* Стили для фотографий в отзывах */
.review-images {
    display: flex;
    justify-content: center; /* Центрирование по горизонтали */
    flex-wrap: wrap; /* Перенос на новую строку, если не хватает места */
    gap: 10px; /* Расстояние между фотографиями */
    margin-top: 15px;
}

.review-images img {
    width: 30%; /* Три фотографии в ряд */
    border-radius: 5px;
    object-fit: cover; /* Сохраняет пропорции изображения */
    transition: transform 0.3s ease;
    cursor: pointer; /* Курсор в виде указателя */
}

.review-images img:hover {
    transform: scale(1.05); /* Увеличение при наведении */
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .review-images img {
        width: 48%; /* Две фотографии в ряд на мобильных устройствах */
    }
}

@media (max-width: 480px) {
    .review-images img {
        width: 100%; /* Одна фотография в ряд на маленьких экранах */
        margin-bottom: 10px;
    }
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .review-item {
        width: 100%; /* На мобильных устройствах отзывы занимают всю ширину */
    }

    .review-images img {
        width: 48%; /* Две фотографии в ряд на мобильных устройствах */
    }
}

@media (max-width: 480px) {
    .review-images img {
        width: 100%; /* Одна фотография в ряд на маленьких экранах */
        margin-bottom: 10px;
    }
}

/* Секция "Контакты" */
.contact {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.contact p {
    font-size: 1.1em;
    color: #333;
}

.contact a {
    color: #ff6f61;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact form input, .contact form textarea {
    width: 100%; /* По умолчанию поля формы занимают всю ширину */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact form button {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

.contact form button:hover {
    background-color: #e65a50;
}

/* Стили для карты */
.map {
    margin-top: 30px;
    width: 100%;
    height: 400px; /* Уменьшаем высоту для мобильных устройств */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map {
        height: 300px; /* Еще меньше высота для мобильных устройств */
    }
}

/* Подвал сайта */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 1em;
}

/* Медиа-запросы для больших экранов (компьютеры) */
@media (min-width: 768px) {
    .service-item {
        width: calc(33.33% - 40px); /* Три карточки в ряд с отступами */
    }

    .gallery-images img {
        width: calc(33.33% - 20px); /* Три изображения в ряд с отступами */
    }

    .contact form input, .contact form textarea {
        width: 80%; /* Поля формы занимают 80% ширины */
    }
}

/* Медиа-запросы для мобильной версии */
@media (max-width: 767px) {
    header .logo h1 {
        font-size: 2em; /* Уменьшаем размер заголовка */
    }

    nav ul li {
        margin: 5px 10px; /* Уменьшаем отступы в меню */
    }

    .hero h2 {
        font-size: 2em; /* Уменьшаем размер заголовка */
    }

    .hero p {
        font-size: 1.2em; /* Уменьшаем размер текста */
    }

    .services h2, .gallery h2, .contact h2 {
        font-size: 2em; /* Уменьшаем размер заголовков секций */
    }

    .service-item {
        width: 100%; /* Карточки занимают всю ширину */
    }

    .gallery-images img {
        width: 100%; /* Изображения занимают всю ширину */
    }

    .map {
        height: 250px; /* Уменьшаем высоту карты */
    }
}

@media (max-width: 480px) {
    header .logo h1 {
        font-size: 1.5em; /* Еще меньше размер заголовка */
    }

    nav ul li a {
        font-size: 0.9em; /* Уменьшаем размер шрифта в меню */
    }

    .hero h2 {
        font-size: 1.5em; /* Еще меньше размер заголовка */
    }

    .hero p {
        font-size: 1em; /* Еще меньше размер текста */
    }

    .services h2, .gallery h2, .contact h2 {
        font-size: 1.5em; /* Еще меньше размер заголовков секций */
    }

    .map {
        height: 200px; /* Еще меньше высота карты */
    }
}

/* ДОБАВЛЕННЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ С ЦЕНАМИ */
.price-list {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin: 20px 0;
}

.price-list h1 {
    color: #ff6f61;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.price-section {
    margin-bottom: 40px;
}

.price-section h2 {
    color: #ff6f61;
    border-bottom: 2px solid #ffe0e6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover td {
    background-color: #fff9f9;
}

.discounts {
    background-color: #fff0f5;
    border-left: 4px solid #ff6f61;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.discounts h2 {
    color: #ff6f61;
    margin-top: 0;
    font-size: 1.8rem;
}

.discounts ul {
    padding-left: 20px;
}

.discounts li {
    margin-bottom: 8px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.discounts li strong {
    color: #d23369;
}

.breadcrumbs {
    padding: 10px 0;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #ff6f61;
    text-decoration: none;
}

.breadcrumbs span {
    color: #666;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .price-list {
        padding: 20px;
    }
    
    .price-table td {
        padding: 8px 10px;
        font-size: 1rem;
    }
    
    .price-list h1 {
        font-size: 1.8rem;
    }
    
    .price-section h2 {
        font-size: 1.5rem;
    }
}

/* Стили для карты на странице цен */
.map-container {
    margin: 30px 0;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
}

@media (max-width: 768px) {
    .map {
        height: 300px;
    }
}

/* Стили для кнопки "Записаться" на странице цен */
.button-container-center {
    text-align: center;
    margin: 30px 0;
}

.consultation-button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.consultation-button:hover {
    background-color: #e65a50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,107,139,0.3);
}

/* Стили для блока "Поделиться" на странице цен */
.share {
    margin: 40px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.share h2 {
    color: #ff6f61;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.share p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    color: #fff;
    background-color: #ff6f61;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #e65a50;
}

/* Стили для подвала на странице цен */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.home-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
}

.home-button:hover {
    background-color: #e65a50;
    transform: translateY(-2px);
}
.discounts-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff9f9;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.discounts-title {
    text-align: center;
    color: #ff6b9d;
    margin-bottom: 25px;
}

.discounts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.discount-card {
    padding: 15px;
    border-radius: 10px;
}

.discount-card.free {
    background: #f0f9ff;
    border: 1px solid #b8e2ff;
}

.discount-card.sale {
    background: #fff0f6;
    border: 1px solid #ffcce5;
}

.discount-card h3 {
    color: #d23369;
    margin-top: 0;
}

.discount-list {
    padding-left: 20px;
}

.discount-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.discounts-footer {
    text-align: center;
    font-weight: bold;
    color: #ff4d88;
    margin-top: 20px;
    font-size: 1.1em;
}

@media (max-width: 600px) {
    .discounts-grid {
        grid-template-columns: 1fr;
    }
}

/* Стили для формы записи */
.booking-container {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #fff9fa;
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 152, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form h2 {
    color: #ff6b98;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #ffe0e6;
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #555;
}

.form-group label i {
    margin-right: 10px;
    color: #ff6b98;
    width: 20px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #fafafa;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6b98;
    box-shadow: 0 0 0 3px rgba(255, 107, 152, 0.1);
    outline: none;
    background-color: white;
}

/* Стили для выбора услуг */
.services-checklist {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.service-category {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.service-category h4 {
    color: #ff6b98;
    margin: 15px 0 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.service-category h4 i {
    margin-right: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    background: #fafafa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.service-option:hover {
    background: #fff0f5;
    border-color: #ffccd5;
}

.service-option input {
    margin-right: 12px;
    width: auto;
    accent-color: #ff6b98;
}

.service-price {
    margin-left: auto;
    color: #ff6b98;
    font-weight: 600;
    white-space: nowrap;
    padding-left: 15px;
}

.category-header {
    padding: 10px 15px;
    margin: 0;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.category-header:hover {
    background-color: #e9ecef;
}

.category-header i {
    margin-right: 10px;
}

.category-header.active {
    background-color: #ffccd5;
    color: #d23369;
}

.category-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.category-content.show {
    padding: 10px 15px;
    max-height: 1000px; /* Достаточно большое значение для анимации */
}

.total-info {
    margin: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.total-info i {
    margin-right: 10px;
    color: #ff6b98;
}

.total-info span {
    color: #ff6b98;
    font-weight: bold;
}

.total-info span.free {
    color: #25d366; /* Зеленый цвет для бесплатных услуг */
    font-weight: bold;
}

/* Стили для выбора мастера */
.master-select {
    position: relative;
}

.styled-select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    top: 42px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #777;
    pointer-events: none;
}

.master-preview {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 15px;
    background: #fff9fa;
    border-radius: 8px;
    border: 1px dashed #ffccd5;
}

.master-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ff6b98;
}

.master-specialization {
    font-size: 0.9rem;
    color: #666;
}

/* Стили для выбора времени */
.time-slots {
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.time-slots h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: #333;
    text-align: center;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9em;
    text-align: center;
}

.time-slot:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: #ff6b98;
    color: white;
    border-color: #ff6b98;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(255, 107, 152, 0.2);
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
    font-style: italic;
}

/* Кнопка отправки */
.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #ff6b98;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn i {
    margin-right: 10px;
}

.submit-btn:hover {
    background-color: #e0557e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 152, 0.3);
}

/* Скидки и предложения */
.discount-note {
    margin-top: 25px;
    padding: 15px;
    background: #fff0f5;
    border-radius: 8px;
    border-left: 4px solid #ff6b98;
}

.discount-note p {
    margin: 0 0 10px 0;
    font-weight: 600;
    color: #d23369;
    display: flex;
    align-items: center;
}

.discount-note p i {
    margin-right: 10px;
}

.discount-note ul {
    margin: 0;
    padding-left: 20px;
}

.discount-note li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
    }
    
    .slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .service-option {
        flex-wrap: wrap;
    }
    
    .service-price {
        margin-left: 25px;
        width: 100%;
        margin-top: 5px;
    }
    
    .master-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .master-photo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .booking-form h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .service-category h4 {
        font-size: 1rem;
    }
    
    .service-option {
        font-size: 0.9rem;
    }
}