/* Стили шаблона single-wm_anketa.php. Порядок правил и подключения сохранён; файл кэшируется браузером. */
/* ============================================================
   SINGLE ANKETA — ОБНОВЛЁННЫЙ ДИЗАЙН ПОД MIRACLE
   Без hover-transform, чтобы ничего не дёргалось
============================================================ */

:root {
    --single-bg: #1a1a1a;
    --single-panel: #232220;
    --single-panel-2: #2a2825;
    --single-panel-3: #181716;
    --single-border: rgba(255, 255, 255, 0.09);
    --single-border-strong: rgba(255, 255, 255, 0.16);
    --single-text: #ffffff;
    --single-muted: rgba(255, 255, 255, 0.68);
    --single-soft: rgba(255, 255, 255, 0.44);
    --accent: #c4455c;
    --accent-hover: #d75970;
    --wa: #5bbf3a;
    --tg: #2aa6ff;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --radius-xs: 7px;
}

/* Общая страница */


.anketa-single-wrapper {
    min-height: calc(100vh - 80px);
    padding: 32px 20px;
    color: var(--single-text);
}

.anketa-single-card {
    max-width: 1350px;
    margin: 0 auto 42px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        var(--single-panel);
    border: 1px solid var(--single-border);
    border-radius: var(--radius-lg);
}

.anketa-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(360px, 1.35fr);
    gap: 26px;
    align-items: flex-start;
}

/* Навигация */

.anketa-top-navigation {
    max-width: 1600px;
    margin: 0 auto 22px;
}

.anketa-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.anketa-nav-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--single-border);
    background: rgba(255,255,255,0.055);
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.anketa-nav-btn:hover {
    background: rgba(196,69,92,0.14);
    border-color: rgba(196,69,92,0.45);
    color: #ffffff;
}

.anketa-nav-btn--next {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.anketa-nav-btn--next:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.anketa-nav-ico {
    font-size: 17px;
    line-height: 1;
}

/* Левая колонка */

.anketa-single-left {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #2a2725;
}

.anketa-single-left::-webkit-scrollbar {
    width: 6px;
}

.anketa-single-left::-webkit-scrollbar-track {
    background: #2a2725;
    border-radius: 999px;
}

.anketa-single-left::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
}

.anketa-single-left-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.anketa-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.anketa-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #000000;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}

.anketa-gallery-item::after {
    content: "Miracle-ladies";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 48%;
    z-index: 2;
    color: rgba(255,255,255,0.13);
    font-size: clamp(18px, 2.1vw, 34px);
    line-height: 1;
    font-weight: 950;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 1.5px;
    pointer-events: none;
    text-transform: uppercase;
}

.anketa-gallery-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.anketa-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.18s ease;
}

.anketa-gallery-link:hover img {
    opacity: 0.88;
}

.anketa-gallery-link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity 0.18s ease;
}

.anketa-gallery-link:hover::before {
    opacity: 1;
}

.anketa-gallery-zoom-icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.18s ease, background 0.18s ease;
    pointer-events: none;
}

.anketa-gallery-link:hover .anketa-gallery-zoom-icon {
    opacity: 1;
}

.anketa-gallery-more-btn {
    display: none;
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--single-border-strong);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-weight: 850;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.anketa-gallery-more-btn:hover {
    background: rgba(196,69,92,0.14);
    border-color: rgba(196,69,92,0.45);
}

/* Правая колонка */

.anketa-single-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.anketa-right-header {
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(196, 69, 92, 0.12), transparent 240px),
        rgba(255,255,255,0.045);
    border: 1px solid var(--single-border);
    border-radius: var(--radius-md);
}

.anketa-right-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.anketa-single-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.anketa-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.anketa-fav-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196,69,92,0.12);
    border: 1px solid rgba(196,69,92,0.34);
    color: var(--accent);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.anketa-fav-btn:hover {
    background: rgba(196,69,92,0.2);
    border-color: rgba(196,69,92,0.55);
    color: #ffffff;
}

.anketa-fav-btn svg {
    width: 18px;
    height: 18px;
}

.anketa-fav-btn.active svg {
    fill: var(--accent);
    stroke: var(--accent);
}

.anketa-fav-btn.pulse,
.fav.pulse {
    animation: wmFavoritePulse 0.55s ease;
}

@keyframes wmFavoritePulse {
    0% { opacity: 1; }
    50% { opacity: .55; }
    100% { opacity: 1; }
}

.anketa-single-id-badge {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.anketa-right-header-meta {
    margin-top: 12px;
}

.anketa-top-chips,
.anketa-top-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.anketa-top-badges {
    margin-top: 12px;
}

.anketa-chip,
.anketa-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.anketa-chip span {
    color: rgba(255,255,255,0.55);
}

.anketa-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Кнопки контактов */

.anketa-contact-buttons {
    display: grid;
    gap: 10px;
}

.anketa-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.anketa-btn:hover {
    color: #ffffff !important;
}

.anketa-btn-main {
    justify-content: center;
    background: var(--accent);
    border-color: var(--accent);
}

.anketa-btn-main:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.anketa-btn-phone {
    background: rgba(196,69,92,0.9);
    border-color: rgba(196,69,92,0.9);
}

.anketa-btn-phone:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.anketa-btn-whatsapp {
    background: rgba(91, 191, 58, 0.88);
    border-color: rgba(91, 191, 58, 0.88);
}

.anketa-btn-whatsapp:hover {
    background: #63c943;
    border-color: #63c943;
}

.anketa-btn-telegram {
    background: rgba(42, 166, 255, 0.88);
    border-color: rgba(42, 166, 255, 0.88);
}

.anketa-btn-telegram:hover {
    background: #42b2ff;
    border-color: #42b2ff;
}

.anketa-btn-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.anketa-btn-icon svg {
    width: 17px;
    height: 17px;
}

.anketa-btn-text {
    white-space: nowrap;
}

/* Инфо и цены */

.anketa-right-box {
    padding: 16px;
    background: rgba(255,255,255,0.045);
    border-radius: var(--radius-md);
    border: 1px solid var(--single-border);
}

.anketa-info-section + .anketa-info-section {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.anketa-info-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.anketa-info-row,
.anketa-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.065);
    font-size: 14px;
}

.anketa-info-row:last-child,
.anketa-price-row:last-child {
    border-bottom: none;
}

.anketa-info-label,
.anketa-price-label {
    color: var(--single-muted);
}

.anketa-info-value {
    color: #ffffff;
    font-weight: 800;
    text-align: right;
}

.anketa-price-value {
    color: var(--accent-hover);
    font-weight: 900;
    white-space: nowrap;
}

/* Видео */

.anketa-gallery-video {
    overflow: hidden;
    background: #000000;
    border-radius: var(--radius-md);
    border: 1px solid var(--single-border);
}

.anketa-gallery-video video {
    width: 100%;
    display: block;
}

/* Предупреждение */

.anketa-warning-card {
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(241, 102, 131, 0.45);
    background: rgba(241, 102, 131, 0.10);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.anketa-warning-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(241, 102, 131, 0.16);
    border: 1px solid rgba(241, 102, 131, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f16683;
    flex: 0 0 42px;
}

.anketa-warning-text {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

/* Большие секции */

.anketa-single-description,
.anketa-single-services,
.anketa-single-reviews {
    margin-top: 24px;
    padding: 22px;
    background: rgba(255,255,255,0.045);
    border-radius: var(--radius-md);
    border: 1px solid var(--single-border);
}

.anketa-single-subtitle {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.anketa-single-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

.anketa-single-description p {
    margin: 0 0 12px;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.75;
}

.anketa-single-description p:last-child {
    margin-bottom: 0;
}

/* Услуги */

.anketa-single-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    gap: 10px;
}

.anketa-single-services-list li {
    position: relative;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 10px 34px;
    background: rgba(0,0,0,0.16);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.86);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.anketa-single-services-list li::before {
    content: "✓";
    position: absolute;
    left: 12px;
    top: 10px;
    color: var(--accent-hover);
    font-weight: 900;
}

.anketa-service-price {
    color: var(--accent-hover);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

/* Отзывы */

.anketa-review-form {
    margin-bottom: 28px;
}

.anketa-rating-stars {
    margin-bottom: 14px;
    color: rgba(255,255,255,0.22);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.anketa-rating-stars .star {
    margin-right: 4px;
    transition: color 0.15s ease;
}

.anketa-rating-stars .star:hover,
.anketa-rating-stars .star.active {
    color: #ffd700;
}

.anketa-review-comment,
.anketa-review-captcha-input {
    width: 100%;
    border: 1px solid var(--single-border-strong);
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.18);
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.anketa-review-comment {
    min-height: 120px;
    padding: 13px;
    resize: vertical;
    margin-bottom: 14px;
}

.anketa-review-comment:focus,
.anketa-review-captcha-input:focus {
    outline: none;
    border-color: rgba(196,69,92,0.72);
    background: rgba(0,0,0,0.26);
}

.anketa-review-comment::placeholder,
.anketa-review-captcha-input::placeholder {
    color: rgba(255,255,255,0.34);
}

.anketa-review-captcha {
    margin: 0 0 14px;
    padding: 15px;
    background: rgba(0,0,0,0.16);
    border: 1px solid var(--single-border);
    border-radius: var(--radius-sm);
}

.anketa-review-captcha-title {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.anketa-review-captcha-question {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.5;
}

.anketa-review-captcha-input {
    height: 44px;
    padding: 0 12px;
}

.anketa-review-captcha-status {
    margin-top: 8px;
    color: var(--single-soft);
    font-size: 13px;
    line-height: 1.4;
}

.anketa-review-captcha.is-ok {
    border-color: rgba(76, 175, 80, 0.62);
    background: rgba(76, 175, 80, 0.09);
}

.anketa-review-captcha.is-ok .anketa-review-captcha-status {
    color: #a7f3b7;
}

.anketa-review-captcha.is-error {
    border-color: rgba(241, 102, 131, 0.72);
    background: rgba(241, 102, 131, 0.10);
}

.anketa-review-captcha.is-error .anketa-review-captcha-status {
    color: #ffb3c1;
}

.anketa-btn-submit-review {
    width: 100%;
    justify-content: center;
    background: var(--accent);
    border-color: var(--accent);
}

.anketa-btn-submit-review:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.anketa-btn-submit-review:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.anketa-review-message {
    display: none;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: var(--radius-xs);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.anketa-review-message.success {
    background: rgba(76, 175, 80, 0.14);
    border: 1px solid rgba(76, 175, 80, 0.34);
    color: #a7f3b7;
    display: block;
}

.anketa-review-message.error {
    background: rgba(241, 102, 131, 0.13);
    border: 1px solid rgba(241, 102, 131, 0.34);
    color: #ffb3c1;
    display: block;
}

.anketa-review-item {
    background: rgba(0,0,0,0.16);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.anketa-review-header {
    display: grid;
    gap: 4px;
    margin-bottom: 10px;
}

.anketa-review-user {
    color: #ffffff;
    font-weight: 900;
}

.anketa-review-user .anon-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    margin-right: 6px;
    background: rgba(255,255,255,0.11);
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    vertical-align: middle;
}

.anketa-review-date {
    color: var(--single-soft);
    font-size: 13px;
}

.anketa-review-rating {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 10px;
}

.anketa-review-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    white-space: pre-wrap;
}

.anketa-no-reviews {
    text-align: center;
    color: var(--single-soft);
    padding: 32px 20px;
    font-style: italic;
}

/* Футер анкеты */

.anketa-single-footer {
    margin-top: 24px;
    padding: 18px 0 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.anketa-single-back {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.055);
    color: rgba(255,255,255,0.86);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 850;
    border: 1px solid var(--single-border);
}

.anketa-single-back:hover {
    background: rgba(196,69,92,0.14);
    border-color: rgba(196,69,92,0.45);
    color: #ffffff;
}

.anketa-single-not-found p {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    padding: 40px 20px;
    background: var(--single-panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--single-border);
}

/* ============================================================
   ПОХОЖИЕ АНКЕТЫ
============================================================ */

.similar-ankety-section {
    padding: 34px 20px 46px;
    background:
        radial-gradient(circle at top, rgba(196,69,92,0.04), transparent 380px),
        #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.similar-ankety-container {
    max-width: 1350px;
    margin: 0 auto;
}

.similar-ankety-title {
    position: relative;
    margin: 0 0 26px;
    padding-bottom: 15px;
    color: #ffffff;
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1.15;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.03em;
}

.similar-ankety-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
    width: 60px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

.similar-swiper {
    width: 100%;
    padding: 0 52px 44px;
}

.similar-swiper .swiper-slide {
    height: auto;
}

.similar-swiper .card {
    height: 100%;
}

.similar-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.38);
    opacity: 1;
}

.similar-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
}

.ankety-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--single-soft);
    font-style: italic;
}

/* Карточки похожих анкет */

.card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        var(--single-panel);
    border-radius: var(--radius-lg);
    padding: 15px;
    border: 1px solid var(--single-border);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.card:hover {
    border-color: rgba(196,69,92,0.52);
    background:
        radial-gradient(circle at top left, rgba(196,69,92,0.08), transparent 240px),
        var(--single-panel);
}

.head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.name {
    flex: 1;
    margin: 0;
    color: #ffffff;
    font-weight: 900;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.fav {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
    color: var(--accent);
}

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

.fav.active svg {
    fill: var(--accent);
}

.top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.media {
    width: 100%;
    height: 470px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    display: block;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats {
    width: 78px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 0;
}

.stat {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 9px 7px;
    text-align: center;
    line-height: 1.05;
}

.stat .k {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.66);
    font-size: 11px;
}

.stat .v {
    color: var(--accent-hover);
    font-size: 14px;
    font-weight: 900;
}

.actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-main {
    flex: 1;
    min-height: 44px;
    border-radius: 999px;
    background: var(--accent);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-main:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.055);
    border: 1px solid var(--single-border);
    display: grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-icon.wa {
    background: rgba(91, 191, 58, 0.12);
    border-color: rgba(91, 191, 58, 0.55);
}

.btn-icon.wa:hover {
    background: rgba(91, 191, 58, 0.22);
    border-color: rgba(91, 191, 58, 0.85);
}

.btn-icon.wa svg,
.btn-icon.wa svg path {
    stroke: var(--wa) !important;
}

.btn-icon.tg {
    background: rgba(42, 166, 255, 0.12);
    border-color: rgba(42, 166, 255, 0.55);
}

.btn-icon.tg:hover {
    background: rgba(42, 166, 255, 0.22);
    border-color: rgba(42, 166, 255, 0.85);
}

.btn-icon.tg svg,
.btn-icon.tg svg path {
    stroke: var(--tg) !important;
}

.prices {
    margin-top: 12px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 13px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
}

.meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.56);
    white-space: nowrap;
}

.amount {
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.amount.hot {
    color: var(--accent-hover);
}

.amount.no {
    color: var(--single-soft);
}

/* Fancybox watermark */

.fancybox__content::after {
    content: "Miracle-ladies";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50%;
    z-index: 2;
    color: rgba(255,255,255,0.1);
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   АДАПТИВ
============================================================ */

@media (max-width: 1200px) {
    .anketa-single-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(340px, 1fr);
    }

    .media {
        height: 420px;
    }

    .top {
        flex-direction: column;
    }

    .stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 calc(25% - 8px);
    }
}

@media (max-width: 1024px) {
    .anketa-single-layout {
        grid-template-columns: 1fr;
    }

    .anketa-single-left {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .anketa-single-card {
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .anketa-single-wrapper {
        padding: 20px 12px;
    }

    .anketa-nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .anketa-nav-btn {
        width: 100%;
        justify-content: space-between;
    }

    .anketa-single-card {
        border-radius: var(--radius-md);
    }

    .anketa-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px;
    }

    .anketa-gallery-item.is-hidden-mobile {
        display: none !important;
    }

    .anketa-gallery-more-btn {
        display: block;
    }

    .anketa-right-header-top {
        flex-direction: column;
    }

    .anketa-header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .anketa-contact-buttons {
        grid-template-columns: 1fr;
    }

    .anketa-single-description,
    .anketa-single-services,
    .anketa-single-reviews {
        padding: 16px;
    }

    .anketa-single-services-list {
        grid-template-columns: 1fr;
    }

    .anketa-single-footer {
        text-align: center;
    }

    .anketa-single-back {
        width: 100%;
        justify-content: center;
    }

    .similar-ankety-section {
        padding: 28px 12px 40px;
    }

    .similar-swiper {
        padding: 0 8px 44px;
    }

    .media {
        height: 500px;
    }

    .prices {
        grid-template-columns: 1fr;
    }

    .fancybox__content::after {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    .anketa-single-title {
        font-size: 25px;
    }

    .anketa-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .anketa-gallery-item::after {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .anketa-info-row,
    .anketa-price-row {
        align-items: flex-start;
    }

    .media {
        height: 430px;
    }

    .stat {
        flex: 1 1 calc(50% - 8px);
    }

    .actions {
        gap: 8px;
    }

    .btn-icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .media {
        height: 390px;
    }

    .anketa-btn {
        font-size: 13px;
    }

    .anketa-single-services-list li {
        padding-right: 10px;
    }
}
