/* Импорты общих стилей */
@import url('common/base.css');
@import url('common/header.css');
@import url('common/navigation.css');
@import url('common/footer.css');

/* Стили только для страницы профиля девушки */

/* Глобальные стили для переноса текста */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0;
    padding: 0;
}

/* Основной контент */
.main {
    padding: 3rem 0;
    min-height: calc(100vh - 400px);
    width: 100%;
    overflow-x: hidden;
}

/* Заголовок профиля */
.profile-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

/* Нижний блок: фото (60%) и описание (40%) */
.profile-content-row {
    display: none; /* Скрываем до завершения рендеринга */
    gap: 2rem;
}

/* Левая колонка: фото (50%) */
.profile-photos-column {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Правая колонка: описание (50%) */
.profile-description-column {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
}

/* Секция описания */
.profile-description-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.profile-description-section .section-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.profile-description-section .section-title i {
    color: #d4af37;
    font-size: 1.3rem;
}

.profile-description-section .about-content {
    color: #f0f0f0; /* Более яркий цвет для лучшей читаемости */
    line-height: 1.8; /* Увеличенный межстрочный интервал */
    font-size: 1.05rem; /* Немного увеличенный размер шрифта */
    font-weight: 400; /* Четкий вес шрифта */
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify; /* Выравнивание по ширине для лучшей читаемости */
    hyphens: auto; /* Автоматическая расстановка переносов */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Тонкая тень для контраста */
}

/* Блок с языками */
.profile-languages-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}


.languages-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.language-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4af37;
}

.language-icon img {
    width: 32px;
    height: 24px;
    border-radius: 2px;
    display: block;
    
}

/* Дополнительные физические данные */
.profile-additional-data-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}


.additional-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.additional-data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.additional-data-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.additional-data-label-item {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.additional-data-value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

/* Услуги */
.profile-services-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.service-item i {
    color: #d4af37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .service-item:hover i {
        transform: scale(1.2);
    }
}

.service-item span {
    color: #f5f5f5; /* Более яркий белый для лучшей читаемости */
    font-weight: 500;
    font-size: 1.02rem; /* Немного увеличенный размер */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.5; /* Улучшенный межстрочный интервал */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Тонкая тень */
}



.profile-image-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.profile-images-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


/* Стили для премиум бейджа в профиле девушки */
.profile-premium-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f0f0f;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.profile-premium-badge i {
    font-size: 0.8rem;
    animation: crown-glow 2s ease-in-out infinite alternate;
}

@keyframes crown-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(244, 208, 63, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(244, 208, 63, 0.8));
    }
}

.profile-quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.profile-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.profile-name {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    margin: 0;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cccccc;
    font-size: 1.1rem;
}

.profile-location i {
    color: #d4af37;
    font-size: 1.2rem;
}

/* Основные данные девушки */
.profile-main-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.data-label {
    color: #e0e0e0; /* Более яркий цвет для лучшей читаемости */
    font-size: 0.95rem; /* Увеличенный размер */
    font-weight: 600; /* Более жирный шрифт */
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Увеличенный межбуквенный интервал */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Тень для контраста */
}

.data-value {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}





/* Слайдер фотографий */
.photo-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    box-sizing: border-box;
    overflow: hidden;
    display: none; /* Скрываем по умолчанию до получения данных */
}

.photo-carousel.loaded {
    opacity: 1;
    transform: translateY(0);
    display: block; /* Показываем когда данные загружены */
}

.main-photo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    max-width: 100%;
}

@media (hover: hover) {
    .main-photo-container:hover {
        border-color: rgba(212, 175, 55, 0.6);
    }
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


/* Навигация по слайдеру */
.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .main-photo-container:hover .carousel-navigation {
        opacity: 1;
    }
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

@media (hover: hover) {
    .carousel-btn:hover {
        background: rgba(212, 175, 55, 0.9);
        border-color: rgba(212, 175, 55, 0.8);
        transform: scale(1.1);
    }
}

/* Скрываем кнопки навигации на мобильных устройствах */
@media (max-width: 768px) {
    .carousel-navigation {
        display: none !important;
    }
}

.carousel-btn i {
    font-size: 1rem;
}

/* Миниатюры фотографий */
.photo-thumbnails {
    margin-top: 1.5rem;
    width: 100%;
}

.thumbnails-container {
    display: flex;
    gap: 0.8rem;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.5) rgba(255, 255, 255, 0.1);
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 3px;
}

.thumbnails-container::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.7);
}

.thumbnail-item {
    position: relative;
    width: 70px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

@media (hover: hover) {
    .thumbnail-item:hover {
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.thumbnail-item.active {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


/* Индикатор для активной миниатюры */
.thumbnail-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item.active::after {
    opacity: 0;
}

.thumbnail-item:not(.active)::after {
    opacity: 1;
}

/* Модальное окно полноэкранного просмотра */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.fullscreen-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

@media (hover: hover) {
    .modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    pointer-events: none;
}

.modal-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

@media (hover: hover) {
    .modal-btn:hover {
        background: rgba(212, 175, 55, 0.8);
        transform: scale(1.1);
    }
}

.modal-btn i {
    font-size: 1.2rem;
}

/* Контактная секция */
.profile-contact-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Кнопка телефона */
.contact-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f0f0f;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    min-width: 160px;
    justify-content: center;
}

@media (hover: hover) {
    .contact-phone-btn:hover {
        background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        color: #0f0f0f;
        text-decoration: none;
    }
}

.contact-phone-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .contact-phone-btn:hover i {
        transform: scale(1.2);
    }
}

.phone-text {
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


/* Круглые социальные кнопки */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-btn.whatsapp {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

@media (hover: hover) {
    .social-btn.whatsapp:hover {
        background: #128C7E;
        border-color: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.social-btn.telegram {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
}

@media (hover: hover) {
    .social-btn.telegram:hover {
        background: #006699;
        border-color: #006699;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    }
}

.social-btn.viber {
    background: #7360f2;
    color: #ffffff;
    border-color: #7360f2;
}

@media (hover: hover) {
    .social-btn.viber:hover {
        background: #5a4fd8;
        border-color: #5a4fd8;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(115, 96, 242, 0.4);
    }
}

.social-btn i {
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .social-btn:hover i {
        transform: scale(1.2);
    }
}

/* Контент профиля */
.profile-content {
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 3rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Секции профиля */
.profile-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(51, 51, 51, 0.6); /* Более заметная граница */
    border-radius: 16px;
    padding: 2.2rem; /* Увеличенные отступы */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Более глубокая тень */
    backdrop-filter: blur(12px); /* Усиленный размытие */
    transition: all 0.3s ease;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative; /* Для декоративного элемента */
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 16px 16px 0 0;
}

.profile-section:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d4af37;
    font-size: 1.6rem; /* Увеличенный размер */
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.8rem; /* Увеличенный отступ */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); /* Более заметная тень */
    letter-spacing: 0.02em; /* Межбуквенный интервал */
    position: relative; /* Для декоративного элемента */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.section-title i {
    font-size: 1.3rem;
    color: #f4d03f;
}

/* О девушке */
.about-content p {
    color: #e8e8e8; /* Более яркий цвет для лучшей читаемости */
    font-size: 1.05rem; /* Увеличенный размер */
    line-height: 1.8; /* Улучшенный межстрочный интервал */
    margin-bottom: 1.2rem; /* Увеличенный отступ */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    text-align: justify; /* Выравнивание по ширине */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Тонкая тень */
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Ссылка на салон */
.about-content .salon-link {
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
    color: #ffffff !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    padding: 0.8rem 1rem !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%) !important;
    border-left: 3px solid #d4af37 !important;
    border-radius: 4px !important;
    word-wrap: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

.about-content .salon-reference {
    color: #d4af37 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.about-content .salon-reference:hover {
    color: #f4d03f !important;
    text-decoration: none !important;
    border-bottom: 1px solid #d4af37;
}

/* Услуги */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Заголовки категорий услуг */
.service-category-header {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    padding: 1rem 0 0.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
    position: relative;
}

.service-category-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

/* Контейнер для услуг в категории */
.service-category-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.service-item i {
    color: #d4af37;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

@media (hover: hover) {
    .service-item:hover i {
        transform: scale(1.2);
    }
}

.service-item span {
    color: #f5f5f5; /* Более яркий белый для лучшей читаемости */
    font-weight: 500;
    font-size: 1.02rem; /* Немного увеличенный размер */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.5; /* Улучшенный межстрочный интервал */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Тонкая тень */
}


.char-label {
    color: #cccccc;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.char-value {
    color: #d4af37;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Языки и локация теперь отдельные блоки */


.lang-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.lang-level {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}


.level-bars {
    display: flex;
    gap: 0.2rem;
}

.level-bar {
    width: 8px;
    height: 20px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.level-bar.active {
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}



/* Рабочие дни */
.profile-working-hours-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}


.working-hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.working-hours-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.working-hours-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.working-hours-day {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
}

.working-hours-time {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}






/* Адаптивный дизайн для страницы профиля */
@media (max-width: 1000px) {
    .profile-header {
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-content-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .profile-photos-column {
        flex: none;
        width: 100%;
    }
    
    .profile-description-column {
        flex: none;
        width: 100%;
        margin-top: 1rem;
    }
    
    .profile-header-info {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .profile-main-data {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        padding: 1rem;
        width: 100%;
        margin-top: 0;
    }
    
    .profile-image-section {
        justify-content: center;
        width: 100%;
    }
    
    
    /* Адаптивность для слайдера */
    .photo-carousel {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-photo-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-image-section {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .profile-images-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .thumbnails-container {
        gap: 0.6rem;
        padding: 0.3rem;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 75px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .left-column,
    .right-column {
        gap: 2rem;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-header {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .profile-content-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .profile-photos-column {
        width: 100%;
    }

    .thumbnails-container{
        justify-content: flex-start;
    }
    
    .profile-description-column {
        width: 100%;
    }
    
    .profile-description-section {
        padding: 1.5rem;
    }
    
    .profile-languages-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .languages-header {
        gap: 0.8rem;
    }
    
    .languages-icons {
        gap: 0.6rem;
    }
    
    .language-icon {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .language-icon img {
        width: 36px;
        height: 27px;
    }
    
    .profile-additional-data-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .additional-data-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .additional-data-item {
        padding: 0.6rem;
    }
    
    .additional-data-label-item {
        font-size: 0.8rem;
    }
    
    .additional-data-value {
        font-size: 0.9rem;
    }
    
    .profile-services-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .service-item {
        padding: 0.8rem;
    }
    
    .service-item i {
        font-size: 1.1rem;
    }
    
    .service-item span {
        font-size: 0.9rem;
    }
    
    .profile-working-hours-section {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    
    .working-hours-item {
        padding: 0.8rem;
    }
    
    .working-hours-day {
        font-size: 0.9rem;
    }
    
    .working-hours-time {
        font-size: 0.9rem;
    }
    
    .profile-main-data {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0.8rem;
        width: 100%;
    }
    
    .data-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
    
    .data-label {
        font-size: 0.8rem;
    }
    
    .data-value {
        font-size: 1rem;
    }
    
    .profile-image-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .profile-images-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Адаптивность для слайдера на планшетах */
    .photo-carousel {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-photo-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-header-info {
        /* flex-direction: column; */
        gap: 1rem;
        text-align: center;
    }
    
    
    .thumbnail-item {
        width: 55px;
        height: 70px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
    
    .profile-name {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .profile-contact-section {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-phone-btn {
        min-width: 140px;
        width: auto;
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .social-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-category-header {
        font-size: 1.1rem;
        padding: 0.8rem 0 0.4rem 0;
        margin-bottom: 0.8rem;
    }
    
    .service-category-group {
        /* grid-template-columns: 1fr; */
        gap: 0.8rem;
    }
    
    .profile-section {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    
    .lang-name {
        font-size: 1rem;
    }
    
    .level-bar {
        width: 6px;
        height: 16px;
    }
    
    /* Изменение порядка блоков в мобильной версии */
    .content-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .left-column {
        order: 1;
        width: 100%;
    }
    
    .right-column {
        order: 2;
        width: 100%;
    }
    
    /* Порядок секций внутри левого столбца */
    .left-column .profile-section:nth-child(1) {
        order: 1; /* О девушке */
    }
    
    .left-column .profile-section:nth-child(2) {
        order: 3; /* Услуги */
    }
    
    .left-column .profile-section:nth-child(3) {
        order: 5; /* Языки */
    }
    
    .left-column .profile-section:nth-child(4) {
        order: 6; /* Локация */
    }
    
    /* Порядок секций внутри правого столбца */
    .right-column .profile-section:nth-child(1) {
        order: 2; /* Физические параметры */
    }
    
    .right-column .profile-section:nth-child(2) {
        order: 4; /* Рабочие часы */
    }
}

@media (max-width: 480px) {
    .profile-header {
        padding: 1rem;
    }
    
    .profile-content-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .profile-photos-column {
        width: 100%;
    }
    
    .profile-description-column {
        width: 100%;
    }
    
    .profile-description-section {
        padding: 1rem;
    }
    
    .profile-languages-section {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .languages-header {
        gap: 0.6rem;
    }
    
    .languages-icons {
        gap: 0.5rem;
    }
    
    .language-icon {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
    
    .language-icon img {
        width: 28px;
        height: 21px;
    }
    
    .profile-additional-data-section {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .additional-data-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.6rem;
    }
    
    .additional-data-item {
        padding: 0.5rem;
    }
    
    .additional-data-label-item {
        font-size: 0.75rem;
    }
    
    .additional-data-value {
        font-size: 0.85rem;
    }
    
    .profile-services-section {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.6rem;
    }
    
    .service-item {
        padding: 0.6rem;
    }
    
    .service-item i {
        font-size: 1rem;
    }
    
    .service-item span {
        font-size: 0.85rem;
    }
    
    .profile-working-hours-section {
        padding: 0.8rem;
        margin-top: 1rem;
    }
    
    
    .working-hours-item {
        padding: 0.6rem;
    }
    
    .working-hours-day {
        font-size: 0.85rem;
    }
    
    .working-hours-time {
        font-size: 0.85rem;
    }
    
    .profile-image-section {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .profile-images-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Адаптивность для слайдера на мобильных */
    .photo-carousel {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-photo-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    
    .thumbnail-item {
        width: 50px;
        height: 65px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 0.8rem;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-contact-section {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-phone-btn {
        min-width: 140px;
        width: auto;
        max-width: 200px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .social-buttons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 0.8rem;
    }
    
    .service-category-header {
        font-size: 1rem;
        padding: 0.6rem 0 0.3rem 0;
        margin-bottom: 0.6rem;
    }
    
    .service-category-group {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    
}

@media (max-width: 400px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .main {
        width: 100%;
        overflow-x: hidden;
        padding: 2rem 0;
    }
    
    .container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .profile-header {
        padding: 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .profile-content-row {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .profile-photos-column {
        width: 100%;
    }
    
    .profile-description-column {
        width: 100%;
    }
    
    .profile-description-section {
        padding: 0.8rem;
    }
    
    .profile-image-section {
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .profile-images-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    /* Адаптивность для слайдера на очень маленьких экранах */
    .photo-carousel {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .main-photo-container {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    
    .profile-name {
        font-size: 1.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .profile-section {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-content p {
        font-size: 1rem; /* Увеличенный размер для мобильных */
        line-height: 1.7; /* Улучшенный межстрочный интервал */
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        text-align: left; /* Левый край для мобильных */
    }
    
    
    .lang-name {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .level-bar {
        width: 5px;
        height: 14px;
    }
    
    
    
    .service-item span {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .char-label,
    .char-value {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Стили для сообщения "inzerát nenalezen" */
.not-found-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(51, 51, 51, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.not-found-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.not-found-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    border-radius: 16px 16px 0 0;
}

.not-found-container .error-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #d4af37;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

.not-found-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.not-found-container p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.not-found-container .error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.not-found-container .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 140px;
    justify-content: center;
}

.not-found-container .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f0f0f;
    border-color: #d4af37;
    font-weight: 700;
}

@media (hover: hover) {
    .not-found-container .btn-primary:hover {
        background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        border-color: #f4d03f;
    }
}

.not-found-container .btn-secondary {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.3);
}

@media (hover: hover) {
    .not-found-container .btn-secondary:hover {
        background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        border-color: #d4af37;
    }
}

/* Анимация плавания для иконки */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .not-found-container {
        min-height: 50vh;
        padding: 30px 15px;
        margin: 1rem 0;
    }
    
    .not-found-container .error-icon {
        font-size: 3rem;
    }
    
    .not-found-container h1 {
        font-size: 2rem;
    }
    
    .not-found-container p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .not-found-container .error-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .not-found-container .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .not-found-container {
        padding: 20px 10px;
    }
    
    .not-found-container .error-icon {
        font-size: 2.5rem;
    }
    
    .not-found-container h1 {
        font-size: 1.8rem;
    }
    
    .not-found-container p {
        font-size: 1rem;
    }
}

