:root {
    --primary: #4463ac;
    --primary-light: #7fb4ff;
    --primary-dark: #3a5bb0;
    --gold: #8a4b06;
    --gold-light: #d4af37;
    --dark: #1e3a5f;
    --dark-light: #2d4a6f;
    --text: #2c3e50;
    --text-muted: #295279;
    --bg: #ffffff;
    --card-bg: #e8f4ff;
    --card-bg-alt: #d4ebff;
    --border: rgba(74, 116, 217, 0.15);
    --shadow: 0 10px 40px rgba(74, 116, 217, 0.12);
    --shadow-hover: 0 15px 50px rgba(74, 116, 217, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

.swiper-button-next, .swiper-button-prev{
    background: transparent;
    border: none;
    outline: none;
}

.profile-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.gallery-section {
    min-width: 0;
    overflow: hidden;
}

.main-slider {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: #1e1e32;
}

.main-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.main-slider .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    height: auto;
    position: relative;
}

.main-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.thumb-slider {
    margin-top: 15px;
}

.thumb-slider .swiper-slide {
    cursor: pointer;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: flex;
    opacity: 0.5;
    transition: opacity 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.thumb-slider .swiper-slide:hover {
    opacity: 0.8;
}

.thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--gold);
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.swiper-slide-video {
    position: relative;
    background: #000;
}

.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.swiper-slide-video.is-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.thumb-slide-video {
    position: relative;
}

.thumb-video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-video-icon svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
    margin-left: 2px;
}

.thumb-video-placeholder {
    width: 100%;
    height: 80px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-video-placeholder svg {
    width: 24px;
    height: 24px;
    color: #fff;
    opacity: 0.7;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-header {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.profile-badges {
    display: flex;
    gap: 10px;
    flex: 1 1 100%;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-vip {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1a1a1a;
}

.badge-verified {
    background: rgba(74, 116, 217, 0.2);
    color: black;
    border: 1px solid var(--primary);
}

.badge-online {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.profile-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    flex: 0 0 fit-content;
}

.profile-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgb(34, 34, 126);
    flex: 1;
}

.profile-location svg {
    width: 18px;
    height: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
}

.price-title {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.price-grid-dual {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.price-header span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
}

.price-header span:first-child {
    text-align: left;
}

.price-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.price-row-dual:last-of-type {
    border-bottom: none;
}

.price-row-dual .price-duration {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.price-row-dual .price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.price-value-outcall {
    color: var(--accent) !important;
}

.price-currency {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 10px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.price-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.price-cell:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.price-cell .price-duration {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-cell .price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.price-type-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    flex: 1;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(89deg, #ff8c42, #00e5a0 25%, #00d4d4 50%, #00b4ff 75%, #5cb8ff);
    background-size: 400% 100%;
    animation: gradientShimmer 15s linear infinite;
    color: white;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 212, 212, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary.tg {
    background: linear-gradient(89deg, #5cb8ff, #00b4ff 25%, #00d4d4 50%, #00e5a0 75%, #ff8c42);
    background-size: 400% 100%;
    animation: gradientShimmer 15s linear infinite;
    color: white;
    font-size: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 212, 212, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 4s ease-in-out infinite;
}

.btn-primary:hover {
    color: #000000;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(0, 229, 160, 0.4),
        0 0 50px rgba(0, 180, 255, 0.3);
}

@keyframes gradientShimmer {

    0%,
    100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
}

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

/* =====================================================
   STATS GRID EXTENDED
   ===================================================== */

.stats-grid-extended {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.stats-row-wide {
    grid-template-columns: 2fr 1fr 1fr;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-card-wide {
    grid-column: span 1;
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
}

.stat-icon-active {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.stat-icon-inactive {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
}

.stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-content-wide {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 10px;
}

.stat-content-wide .stat-value {
    flex-direction: row;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    display: flex;
    gap: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    align-items: center;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

#contact-heading {
    color: white;
}

.about-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text);
}

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



.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-grid .service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    flex: 0 0 auto;
    width: auto;
    min-width: unset;
    max-width: unset;
    padding: 10px 20px;
    white-space: nowrap;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    color: #fff;
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-name {
    font-weight: 600;
    color: var(--text);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

a.service-name {
    color: #ff8c42;
}


.recommended-section {
    margin-bottom: 50px;
}

.recommended-grid {
    display: flex;
    gap: 20px;
}

.recommended-card {
    flex: 1;
    min-width: 200px;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.recommended-card__image {
    position: relative;
    overflow: hidden;
}

.recommended-card__image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.recommended-card:hover .recommended-card__image img {
    transform: scale(1.05);
}

.recommended-card__vip {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 15px;
    text-transform: uppercase;
}

.recommended-card__info {
    padding: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recommended-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.recommended-card__location {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.recommended-card__price {
    flex: 1 1 100%;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}



.recommended-slider .swiper-slide {
    width: 260px;
}

.recommended-slider .recommended-card {
    width: 100%;
}


.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
    text-align: center;
}

.contact-section .section-title {
    display: block;
    border-bottom: none;
    margin-bottom: 15px;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.contact-btn svg {
    width: 22px;
    height: 22px;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: #fff;
}

.contact-btn-telegram {
    background: #0088cc;
    color: #fff;
}

.contact-btn-telegram:hover {
    background: #0077b5;
    transform: translateY(-2px);
    color: #fff;
}

.contact-btn-phone {
    background: var(--gold);
    color: #1a1a1a;
}

.contact-btn-phone:hover {
    background: #c9a227;
    transform: translateY(-2px);
    color: #1a1a1a;
}

.recommended-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.recommended-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    margin: 0 10px !important;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.recommended-pagination .swiper-pagination-bullet-active {
    background: #d4af37;
}

.girl_info_wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section.services {
    flex: 1 0 30%;
}

.section.price {
    flex: 1 0 60%;
}

.review_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.review_modal.active {
    opacity: 1;
    visibility: visible;
}

.review_modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 92, 0.8);
    backdrop-filter: blur(4px);
}

.review_modal__container {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.review_modal.active .review_modal__container {
    transform: translateY(0) scale(1);
}

.review_modal__content {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.review_modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 12px;
    border-bottom: 1px solid #e8f4fc;
}

.review_modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #1a3a5c;
    margin: 0;
}

.review_modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fbff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review_modal__close svg {
    width: 20px;
    height: 20px;
    color: #26415c;
}

.review_modal__close:hover {
    background: #fee2e2;
}

.review_modal__close:hover svg {
    color: #ef4444;
}

.review_modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

.review_modal__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review_modal__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none;
}

.review_modal__label {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.review_modal__input,
.review_modal__textarea {
    padding: 14px 16px;
    font-size: 15px;
    color: #1a3a5c;
    background: #f8fbff;
    border: 2px solid #e8f4fc;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.review_modal__input:focus,
.review_modal__textarea:focus {
    border-color: #1565c0;
    background: #fff;
}

.review_modal__input::placeholder,
.review_modal__textarea::placeholder {
    color: #a0b4c8;
}

.review_modal__textarea {
    resize: vertical;
    min-height: 100px;
}

.review_modal__hint {
    font-size: 12px;
    color: #26415c;
}

.review_modal__hint--counter {
    text-align: right;
}

.review_modal__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review_modal__star {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.review_modal__star:hover {
    transform: scale(1.2);
}

.review_modal__star svg {
    width: 22px;
    height: 22px;
    fill: #e0e7ed;
    transition: fill 0.2s ease;
}

.review_modal__star.active svg,
.review_modal__star.hover svg {
    fill: #f5a623;
}

.review_modal__rating-text {
    margin-left: 12px;
    font-size: 14px;
    color: #26415c;
    font-weight: 500;
}

.review_modal__radio-group {
    display: flex;
    gap: 16px;
}

.review_modal__radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.review_modal__radio input {
    display: none;
}

.review_modal__radio-box {
    width: 22px;
    height: 22px;
    border: 2px solid #d0e0ed;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.review_modal__radio-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #1565c0, #00bfa5);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.review_modal__radio input:checked+.review_modal__radio-box {
    border-color: #1565c0;
}

.review_modal__radio input:checked+.review_modal__radio-box::after {
    transform: translate(-50%, -50%) scale(1);
}

.review_modal__radio-label {
    font-size: 14px;
    color: #3d5a73;
}

.review_modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.review_modal__checkbox input {
    display: none;
}

.review_modal__checkbox-box {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #d0e0ed;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review_modal__checkbox-box svg {
    width: 14px;
    height: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.review_modal__checkbox input:checked+.review_modal__checkbox-box {
    background: linear-gradient(135deg, #1565c0, #00bfa5);
    border-color: transparent;
}

.review_modal__checkbox input:checked+.review_modal__checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.review_modal__checkbox-label {
    font-size: 13px;
    color: #26415c;
    line-height: 1.5;
}

.review_modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid #e8f4fc;
    background: #f8fbff;
    border-radius: 0 0 20px 20px;
}

.review_modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.review_modal__btn svg {
    width: 18px;
    height: 18px;
}

.review_modal__btn--cancel {
    background: transparent;
    color: #26415c;
    border: 2px solid #e0e7ed;
}

.review_modal__btn--cancel:hover {
    background: #f0f4f8;
    border-color: #d0e0ed;
}

.review_modal__btn--submit {
    background: linear-gradient(135deg, #1565c0, #00bfa5);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
}

.review_modal__btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.review_modal__btn--submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.girl-comments {
    margin-top: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(21, 101, 192, 0.08);
}

.girl-comments__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8f4fc;
}

.girl-comments__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a3a5c;
    margin: 0;
}

.girl-comments__stats {
    display: flex;
    align-items: center;
    gap: 16px;
}

.girl-comments__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.girl-comments__rating svg {
    width: 20px;
    height: 20px;
    color: #f5a623;
}

.girl-comments__rating-value {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
}

.girl-comments__rating-count {
    font-size: 14px;
    color: #26415c;
}

/* =============================================
   COMMENTS LIST
   ============================================= */
.girl-comments__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* =============================================
   COMMENT CARD
   ============================================= */
.comment-card {
    padding: 20px;
    background: #f8fbff;
    border-radius: 12px;
    list-style: none;
    border: 1px solid #e8f4fc;
    transition: all 0.3s ease;
}

.comment-card:hover {
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.1);
    border-color: #d0e8f7;
}

.comment-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565c0, #00bfa5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-card__avatar span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.comment-card__info {
    flex: 1;
}

.comment-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a3a5c;
}

.comment-card__date {
    font-size: 13px;
    color: #26415c;
}

.comment-card__rating {
    display: flex;
    gap: 2px;
}

.comment-card__rating svg {
    width: 16px;
    height: 16px;
    color: #f5a623;
}

.comment-card__rating svg.star-half {
    opacity: 0.5;
}

.comment-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: #3d5a73;
    margin-bottom: 12px;
}

.comment-card__tags {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-card__tag {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #1565c0;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   ACTION BUTTONS
   ============================================= */
.girl-comments__action {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.girl-comments__write-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #1565c0;
    background: transparent;
    border: 2px solid #1565c0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.girl-comments__write-btn svg {
    width: 18px;
    height: 18px;
}

.girl-comments__write-btn:hover {
    background: #1565c0;
    color: #fff;
}

.girl-comments__write-btn--primary {
    background: linear-gradient(135deg, #1565c0, #00bfa5);
    color: #fff;
    border: none;
    padding: 16px 32px;
}

.girl-comments__write-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

/* More Button */
.girl-comments__more {
    margin-top: 20px;
    text-align: center;
}

.girl-comments__more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #26415c;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.girl-comments__more-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.girl-comments__more-btn:hover {
    color: #1565c0;
}

.girl-comments__more-btn:hover svg {
    transform: translateY(3px);
}

/* =============================================
   EMPTY STATE
   ============================================= */
.girl-comments--empty .girl-comments__empty {
    text-align: center;
    padding: 48px 24px;
}

.girl-comments__empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(0, 191, 165, 0.1));
    border-radius: 50%;
}

.girl-comments__empty-icon svg {
    width: 40px;
    height: 40px;
    color: #1565c0;
}

.girl-comments__empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a3a5c;
    margin: 0 0 8px;
}

.girl-comments__empty-text {
    font-size: 15px;
    color: #26415c;
    margin: 0 0 24px;
}

/* Error state */
.review_modal__field.error .review_modal__input,
.review_modal__field.error .review_modal__textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

.review_modal__field.error .review_modal__label {
    color: #ef4444;
}

.review_modal__field.error .review_modal__rating {
    padding: 8px;
    background: #fef2f2;
    border-radius: 8px;
    border: 2px solid #ef4444;
}

.review_modal__field.error .review_modal__checkbox-box,
.review_modal__field.error .review_modal__radio-box {
    border-color: #ef4444;
}

.review_modal__field.error .review_modal__checkbox-label {
    color: #ef4444;
}

/* Shake animation */
.review_modal__field.error {
    animation: shake 0.4s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.toast_popup {
    position: fixed;
    top: 24px;
    right: 24px;
    min-width: 320px;
    max-width: 420px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(21, 101, 192, 0.2), 0 0 0 1px rgba(21, 101, 192, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    z-index: 10000;
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.toast_popup.active {
    transform: translateX(0);
    opacity: 1;
}

.toast_popup.hiding {
    transform: translateX(calc(100% + 24px));
    opacity: 0;
}

.toast_popup__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 191, 165, 0.15), rgba(21, 101, 192, 0.15));
    border-radius: 12px;
}

.toast_popup__icon svg {
    width: 24px;
    height: 24px;
    color: #00bfa5;
}

.toast_popup__content {
    flex: 1;
}

.toast_popup__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a5c;
    margin-bottom: 4px;
}

.toast_popup__message {
    font-size: 14px;
    color: #26415c;
    line-height: 1.5;
}

.toast_popup__close {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: -4px -8px 0 0;
}

.toast_popup__close svg {
    width: 18px;
    height: 18px;
    color: #a0b4c8;
}

.toast_popup__close:hover {
    background: #f0f4f8;
}

.toast_popup__close:hover svg {
    color: #26415c;
}

.toast_popup__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #1565c0, #00bfa5);
    border-radius: 0 0 16px 16px;
    width: 100%;
    transform-origin: left;
    transform: scaleX(1);
}

.toast_popup.active .toast_popup__progress {
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* =============================================
   ERROR VARIANT
   ============================================= */
.toast_popup--error .toast_popup__icon {
    background: rgba(239, 68, 68, 0.15);
}

.toast_popup--error .toast_popup__icon svg {
    color: #ef4444;
}

.toast_popup--error .toast_popup__progress {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

/* =============================================
   WARNING VARIANT
   ============================================= */
.toast_popup--warning .toast_popup__icon {
    background: rgba(245, 166, 35, 0.15);
}

.toast_popup--warning .toast_popup__icon svg {
    color: #f5a623;
}

.toast_popup--warning .toast_popup__progress {
    background: linear-gradient(90deg, #f5a623, #fbbf24);
}

.categories-dropdown {
    position: relative;
    display: flex;
    margin: 10px 0;
    justify-content: flex-end;
    z-index: 2;
}

.categories-dropdown__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.2s;
}

.categories-dropdown__btn:hover {
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.4);
}

.categories-dropdown__arrow {
    transition: transform 0.2s;
}

.categories-dropdown.active .categories-dropdown__arrow {
    transform: rotate(180deg);
}

.categories-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    max-width: 280px;
    max-height: 400px;
    overflow-y: auto;
    list-style: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.categories-dropdown.active .categories-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-dropdown__menu li {
    flex: 1 1 calc(50% - 8px);
}

.categories-dropdown__item {
    display: flex;
    padding: 8px 14px;
    background: #f5f7fa;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-main);
    transition: all 0.2s;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.categories-dropdown__item:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

/* Mobile */
@media (max-width: 425px) {
    .categories-dropdown__btn {
        width: 100%;
        justify-content: space-between;
    }

    .categories-dropdown__menu {
        max-width: 100%;
        width: 100%;
        right: 50%;
        transition: none;
    }

    .categories-dropdown.active .categories-dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translate(50%, 0px);
    }
}

@media (max-width: 576px) {
    .toast_popup {
        top: auto;
        bottom: 24px;
        right: 16px;
        left: 16px;
        min-width: auto;
        max-width: none;
        transform: translateY(calc(100% + 24px));
    }

    .toast_popup.active {
        transform: translateY(0);
    }

    .toast_popup.hiding {
        transform: translateY(calc(100% + 24px));
    }
}


@media screen and (max-width: 1200px) {
    .recommended-grid {
        display: none;
    }

    .recommended-slider {
        display: block;
    }
}

@media screen and (max-width: 1100px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .main-slider .swiper-slide img {
        height: 100%;
    }

    .gallery-section {
        min-width: 0;
        overflow: hidden;
        max-width: 350px;
        margin: 0 auto;
    }

    .thumb-slider .swiper-slide img {
        width: 100%;
        object-fit: cover;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-slider .swiper-slide img {
        height: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row-wide {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card-wide {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {

    .girl-comments {
        margin-top: 32px;
        padding: 20px;
        border-radius: 12px;
    }

    .girl-comments__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .girl-comments__title {
        font-size: 20px;
    }

    .comment-card {
        padding: 16px;
    }

    .comment-card__header {
        flex-wrap: wrap;
    }

    .comment-card__rating {
        width: 100%;
        margin-top: 8px;
    }

    .comment-card__text {
        font-size: 13px;
    }

    .girl-comments__write-btn {
        width: 100%;
        justify-content: center;
    }

    .profile-container {
        padding: 20px 15px;
    }

    .thumb-video-placeholder,
    .thumb-slider .swiper-slide img {
        height: 60px;
    }

    .profile-title {
        font-size: 28px;
    }

    .gallery-section {
        min-width: 0;
        overflow: hidden;
        max-width: 250px;
        margin: 0 auto;
    }

    .main-slider .swiper-slide img {
        min-height: 400px;
    }

    .main-slider .swiper-button-next,
    .main-slider .swiper-button-prev {
        display: none;
    }

    .section-title {
        font-size: 22px;
    }


    .contact-section {
        padding: 30px 20px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .review_modal {
        padding: 0;
        align-items: flex-end;
    }

    .review_modal__container {
        max-width: 100%;
        max-height: 95vh;
    }

    .review_modal__content {
        border-radius: 20px 20px 0 0;
    }

    .review_modal__header,
    .review_modal__body,
    .review_modal__footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .review_modal__star svg {
        width: 28px;
        height: 28px;
    }

    .review_modal__footer {
        flex-direction: column;
        border-radius: 0;
    }

    .review_modal__btn {
        width: 100%;
    }

    .review_modal__btn--cancel {
        order: 2;
    }

    .review_modal__btn--submit {
        order: 1;
    }

    .main-slider .swiper-slide img {
        min-height: 350px;
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-header,
    .price-row-dual {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .price-row-dual .price-value {
        font-size: 14px;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stats-row-wide {
        grid-template-columns: 1fr;
    }

    .stat-card-wide {
        grid-column: span 1;
    }

    .stat-card {
        padding: 12px;
        gap: 10px;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
    }

    .stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .stat-value {
        font-size: 14px;
    }

    .stat-label {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .girl-comments {
        padding: 16px;
    }

    .comment-card__avatar {
        width: 40px;
        height: 40px;
    }

    .comment-card__avatar span {
        font-size: 16px;
    }

    .comment-card__name {
        font-size: 14px;
    }

    .comment-card__tags {
        gap: 6px;
    }

    .comment-card__tag {
        padding: 3px 8px;
        font-size: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 14px;
    }


    .price-block {
        padding: 20px;
    }

    .thumb-video-placeholder,
    .thumb-slider .swiper-slide img {
        height: 60px;
    }
}