/* ─── Site footer ─── */

.site-footer {
    margin-top: 14px;
    padding: 0 16px;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
}

.site-footer-card {
    padding: 10px 12px 10px;
    border-radius: var(--radius-lg);
    background: #f0f9ff;
    border: 1px solid var(--site-blue-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
    text-align: center;
    isolation: isolate;
}

.site-footer-brand {
    margin: 0 0 1px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0369a1;
}

.site-footer-tagline {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    color: #0284c7;
    line-height: 1.3;
}

.site-footer-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 4px;
}

.site-footer-segment-rail {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: fit-content;
    max-width: 100%;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--site-blue-border-soft);
    background:
        linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 46%, #bae6fd 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 3px 12px rgba(14, 165, 233, 0.12);
}

.site-footer-segment-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 30px;
    min-width: 0;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    color: #0369a1;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.site-footer-segment-link:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(186, 230, 253, 0.92) 100%);
    border-color: var(--site-blue-border);
    color: #075985;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 2px 8px rgba(14, 165, 233, 0.16);
    transform: translateY(-1px);
}

.site-footer-segment-link:active {
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.98) 0%, rgba(125, 211, 252, 0.88) 100%);
    border-color: var(--site-blue-border-btn);
    color: #0c4a6e;
    box-shadow: inset 0 1px 2px rgba(3, 105, 161, 0.14);
    transform: translateY(0);
}

.site-footer-segment-link:focus-visible {
    outline: 2px solid rgba(14, 165, 233, 0.55);
    outline-offset: 1px;
}

.site-footer-segment-link--active {
    background: #ffffff;
    border-color: var(--site-blue-border);
    color: #0369a1;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 2px 10px rgba(14, 165, 233, 0.18);
}

.site-footer-segment-link--active:hover {
    background: linear-gradient(180deg, #ffffff 0%, #e0f2fe 100%);
    border-color: #0284c7;
    color: #075985;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 3px 10px rgba(2, 132, 199, 0.2);
}

.site-footer-copy-rail {
    margin: 0 auto;
    padding: 2px 4px;
}

.site-footer-copy-rail .site-footer-copy {
    margin: 0;
    padding: 1px 10px;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0369a1;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
}

.site-footer-copy {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    color: #0369a1;
    line-height: 1.35;
}

.mobile-shell .site-footer {
    margin-top: 8px;
    padding: 0 8px;
}

.mobile-shell .site-footer-card {
    padding: 14px 8px 12px;
    border-radius: 14px;
    background: #f0f9ff;
    border: 1px solid var(--site-blue-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.mobile-shell .site-footer-brand {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.2;
    color: #0369a1;
}

.mobile-shell .site-footer-tagline {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.3;
    color: #0284c7;
}

.mobile-shell .site-footer-nav {
    margin: 0 0 6px;
}

.mobile-shell .site-footer-nav .site-footer-segment-rail {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: stretch;
    padding: 3px;
    border-radius: 18px;
    gap: 2px;
    border-color: var(--site-blue-border);
    background:
        linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 46%, #bae6fd 100%);
}

.mobile-shell .site-footer-nav .site-footer-segment-link {
    flex: 1 1 0;
    min-width: 0;
    min-height: 32px;
    padding: 6px 5px;
    font-size: 11px;
    letter-spacing: 0;
}

.mobile-shell .site-footer-segment-rail {
    width: 100%;
    padding: 5px;
    border-radius: 18px;
    gap: 3px;
    border-color: var(--site-blue-border);
    background:
        linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 46%, #bae6fd 100%);
}

.mobile-shell .site-footer-segment-link {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
}

.mobile-shell .site-footer-segment-link:hover {
    transform: none;
}

.mobile-shell .site-footer-copy-rail {
    width: 100%;
    margin-top: 0;
    padding: 2px 4px;
}

.mobile-shell .site-footer-copy-rail .site-footer-copy {
    width: 100%;
    padding: 2px 8px;
    font-size: 11px;
    line-height: 1.25;
}

.empty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 112px;
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    background: rgba(246, 251, 254, 0.68);
    border: 1px solid var(--site-blue-border);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        var(--shadow-md);
    color: #0369a1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.empty-card::before {
    content: '';
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--site-blue-border-soft);
    background:
        var(--site-pin-icon) center / 22px 22px no-repeat,
        linear-gradient(165deg, #ffffff 0%, #e0f2fe 58%, #bae6fd 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 4px 12px rgba(2, 132, 199, 0.1);
}

/* ─── Listing card ─── */

@keyframes listingImageKenBurns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    25% {
        transform: scale(1.14) translate(-2.5%, 1.2%);
    }
    50% {
        transform: scale(1.12) translate(2%, -1.8%);
    }
    75% {
        transform: scale(1.15) translate(-1%, 1.5%);
    }
    100% {
        transform: scale(1.1) translate(0.5%, -0.5%);
    }
}

@keyframes imageCinematic {
    0% {
        transform: scale(1.06) translate(0, 0);
    }
    25% {
        transform: scale(1.11) translate(-1.8%, 0.6%);
    }
    50% {
        transform: scale(1.08) translate(1.2%, -1%);
    }
    75% {
        transform: scale(1.13) translate(-0.6%, 0.8%);
    }
    100% {
        transform: scale(1.1) translate(0.4%, -0.4%);
    }
}

@keyframes imageLightSweep {
    0% {
        background-position: 140% 0;
        opacity: 0.55;
    }
    45% {
        opacity: 1;
    }
    100% {
        background-position: -60% 0;
        opacity: 0.55;
    }
}

@keyframes overlayDrift {
    0%, 100% {
        opacity: 0.92;
    }
    50% {
        opacity: 1;
    }
}

/* Detail hero tier chrome (split from listing card selectors) */
.detail-hero.featured {
    border-width: 2px;
    border-color: rgba(142, 45, 60, 0.78);
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 0 0 3px rgba(142, 45, 60, 0.16),
        0 10px 34px rgba(142, 45, 60, 0.22),
        0 4px 16px rgba(142, 45, 60, 0.1);
    background: #f3f1f2;
}

.detail-hero.gold {
    border-width: 2px;
    border-color: rgba(234, 179, 8, 0.88);
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.05),
        0 0 0 1px rgba(255, 248, 220, 0.42) inset,
        0 0 0 3px rgba(212, 175, 55, 0.24),
        0 10px 34px rgba(180, 134, 11, 0.26),
        0 4px 16px rgba(234, 179, 8, 0.16);
    background: #f3f2ee;
}

.detail-hero.bronze {
    border-width: 2px;
    border-color: rgba(191, 116, 58, 0.86);
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.05),
        0 0 0 1px rgba(255, 241, 232, 0.42) inset,
        0 0 0 3px rgba(191, 116, 58, 0.2),
        0 10px 34px rgba(156, 86, 33, 0.22),
        0 4px 16px rgba(201, 140, 85, 0.14);
    background: #f3f0ed;
}

.detail-hero .featured-mark {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 0 5px;
    overflow: visible;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    animation: none;
}

.detail-hero .featured-mark-shine {
    top: 5px;
    left: 5px;
    width: 22px;
    height: 22px;
}

.detail-hero .featured-diamond,
.detail-hero .featured-mark svg {
    width: 22px;
    height: 22px;
}
.detail-hero .gold-mark {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 0 5px;
    overflow: visible;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    animation: none;
}

.detail-hero .gold-mark-shine {
    top: 5px;
    left: 5px;
    width: 22px;
    height: 22px;
}

.detail-hero .gold-diamond,
.detail-hero .gold-mark svg {
    width: 22px;
    height: 22px;
}
.detail-hero .media-location {
    z-index: 6;
    bottom: 28px;
}

.detail-hero .media-location-large {
    padding: 11px 15px;
    background: rgba(26, 47, 61, 0.55);
    border: 1px solid rgba(212, 232, 240, 0.48);
    box-shadow:
        0 10px 28px rgba(30, 58, 74, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.detail-hero .media-location-large .media-location-text {
    font-size: 13px;
    font-weight: 800;
}

.media-location-large .media-location-icon {
    width: 32px;
    height: 32px;
}

.media-location-large .media-location-text {
    font-size: 13px;
}


.listing-age,
.detail-age {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    border: 1px solid rgba(56, 189, 248, 0.28);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.detail-age {
    font-size: 13px;
}

.detail-meta-wrap {
    margin: 0 0 12px;
}

.detail-meta-grid {
    display: grid;
    gap: 6px;
}

.detail-meta-grid-stats {
    grid-template-columns: repeat(var(--listing-stats-cols, 5), minmax(0, 1fr));
}

.detail-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    min-width: 0;
    min-height: 30px;
    padding: 5px 9px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.96), rgba(186, 230, 253, 0.9));
    border: 1px solid var(--site-blue-border-soft);
    color: #0369a1;
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.1);
}

.detail-chip-location-top {
    width: 100%;
    margin-bottom: 6px;
    padding: 7px 10px;
    gap: 8px;
}

.detail-chip-location-top .detail-chip-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1 1 auto;
}

.detail-chip-location-top .detail-like-button-chip {
    flex-shrink: 0;
    margin-left: auto;
    min-height: 26px;
    padding: 3px 8px;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.12);
}

.detail-chip-location-top .detail-like-button-chip .detail-like-icon {
    width: 13px;
    height: 13px;
}

.detail-chip-location-top .detail-like-button-chip .detail-like-icon svg {
    width: 13px;
    height: 13px;
}

.detail-chip-location-top .detail-like-button-chip .detail-like-label,
.detail-chip-location-top .detail-like-button-chip .detail-like-sep,
.detail-chip-location-top .detail-like-button-chip .detail-like-count {
    font-size: 11px;
}

.detail-meta-grid-stats .detail-chip {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    min-height: 56px;
    padding: 6px 4px;
    text-align: center;
}

.detail-chip-age {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.98), rgba(224, 242, 254, 0.92));
    border-color: var(--site-blue-border-soft);
    color: #0369a1;
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.1);
}

.detail-chip-weight {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.98), rgba(226, 232, 240, 0.92));
    border-color: rgba(100, 116, 139, 0.28);
    color: #475569;
    box-shadow: 0 3px 10px rgba(100, 116, 139, 0.1);
}

.detail-chip-height {
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.98), rgba(186, 230, 253, 0.92));
    border-color: var(--site-blue-border);
    color: #0284c7;
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.1);
}

.detail-chip-place {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(209, 250, 229, 0.92));
    border-color: rgba(52, 211, 153, 0.32);
    color: #0f766e;
    box-shadow: 0 3px 10px rgba(52, 211, 153, 0.1);
}

.detail-chip-hotel {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(254, 226, 226, 0.92));
    border-color: rgba(248, 113, 113, 0.32);
    color: #b91c1c;
    box-shadow: 0 3px 10px rgba(248, 113, 113, 0.1);
}

.detail-chip-meeting-place {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(209, 250, 229, 0.92));
    border-color: rgba(52, 211, 153, 0.32);
    color: #0f766e;
    box-shadow: 0 3px 10px rgba(52, 211, 153, 0.1);
}

.detail-chip-meeting-hotel {
    background: linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(254, 226, 226, 0.92));
    border-color: rgba(248, 113, 113, 0.32);
    color: #b91c1c;
    box-shadow: 0 3px 10px rgba(248, 113, 113, 0.1);
}

.detail-chip-meeting-both {
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.98), rgba(254, 243, 199, 0.92));
    border-color: rgba(45, 212, 191, 0.34);
    color: #0f766e;
    box-shadow: 0 3px 10px rgba(45, 212, 191, 0.12);
}

.detail-chip-payment-elden {
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(254, 243, 199, 0.92));
    border-color: rgba(251, 191, 36, 0.34);
    color: #b45309;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.12);
}

.detail-chip-payment-kripto {
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.98), rgba(233, 213, 255, 0.92));
    border-color: rgba(167, 139, 250, 0.34);
    color: #6d28d9;
    box-shadow: 0 3px 10px rgba(167, 139, 250, 0.12);
}

.detail-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: rgba(14, 165, 233, 0.16);
    color: #0284c7;
    flex-shrink: 0;
}

.detail-chip-age .detail-chip-icon {
    background: rgba(14, 165, 233, 0.16);
    color: #0369a1;
}

.detail-chip-weight .detail-chip-icon {
    background: rgba(100, 116, 139, 0.18);
    color: #64748b;
}

.detail-chip-height .detail-chip-icon {
    background: rgba(2, 132, 199, 0.18);
    color: #0284c7;
}

.detail-chip-place .detail-chip-icon {
    background: rgba(52, 211, 153, 0.2);
    color: #0d9488;
}

.detail-chip-hotel .detail-chip-icon {
    background: rgba(248, 113, 113, 0.2);
    color: #dc2626;
}

.detail-chip-meeting-place .detail-chip-icon {
    background: rgba(52, 211, 153, 0.2);
    color: #0d9488;
}

.detail-chip-meeting-hotel .detail-chip-icon {
    background: rgba(248, 113, 113, 0.2);
    color: #dc2626;
}

.detail-chip-meeting-both .detail-chip-icon {
    background: rgba(45, 212, 191, 0.22);
    color: #0d9488;
}

.detail-chip-payment-elden .detail-chip-icon {
    background: rgba(251, 191, 36, 0.22);
    color: #d97706;
}

.detail-chip-payment-kripto .detail-chip-icon {
    background: rgba(167, 139, 250, 0.22);
    color: #7c3aed;
}

.detail-chip-icon svg {
    width: 12px;
    height: 12px;
    display: block;
}

.detail-chip-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.detail-meta-grid-stats .detail-chip-text {
    font-size: 9px;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 420px) {
    .detail-meta-grid {
        gap: 8px;
    }

    .detail-chip {
        min-height: 32px;
        padding: 6px 10px;
        border-radius: 11px;
    }

    .detail-meta-grid-stats .detail-chip {
        min-height: 60px;
        padding: 7px 6px;
    }

    .detail-chip-text {
        font-size: 12px;
    }

    .detail-meta-grid-stats .detail-chip-text {
        font-size: 10px;
    }

    .detail-chip-icon {
        width: 24px;
        height: 24px;
    }

    .detail-chip-icon svg {
        width: 13px;
        height: 13px;
    }
}



.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 10px;
}

.meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.meta span::before {
    content: '📍';
    font-size: 11px;
}

.meta.large span {
    font-size: 13px;
    padding: 8px 13px;
}

/* ─── Detail page ─── */

.detail-hero {
    position: relative;
    margin: 0 16px;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #1a5570, #22739a);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    isolation: isolate;
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to top, rgba(26, 47, 61, 0.62) 0%, rgba(45, 74, 92, 0.16) 38%, transparent 62%),
        linear-gradient(125deg, rgba(56, 189, 248, 0.18) 0%, transparent 40%, rgba(34, 211, 238, 0.12) 72%, transparent 100%);
    pointer-events: none;
    animation: overlayDrift 14s ease-in-out infinite;
}

.detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        108deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.04) 42%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.04) 58%,
        rgba(255, 255, 255, 0) 70%
    );
    background-size: 280% 100%;
    mix-blend-mode: soft-light;
    animation: imageLightSweep 7.5s ease-in-out infinite;
    pointer-events: none;
}

.detail-image {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: center top;
    transform: none;
    filter: var(--image-photo-filter);
    animation: none;
    will-change: auto;
    transition: filter 0.45s ease;
}

.detail-hero-gallery::before {
    background:
        linear-gradient(to top, rgba(26, 47, 61, 0.5) 0%, rgba(45, 74, 92, 0.12) 42%, transparent 68%),
        linear-gradient(125deg, rgba(56, 189, 248, 0.2) 0%, transparent 42%, rgba(34, 211, 238, 0.14) 100%);
}

.detail-hero-gallery::after {
    opacity: 0.55;
}

.detail-gallery {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.detail-gallery-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    touch-action: pan-y pinch-zoom;
}

.detail-gallery-viewport::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 100px;
    background: linear-gradient(to top, rgba(8, 32, 46, 0.78) 0%, rgba(8, 32, 46, 0.34) 58%, transparent 100%);
    pointer-events: none;
}

.detail-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.38s cubic-bezier(0.22, 0.85, 0.32, 1);
    will-change: transform;
}

.detail-gallery-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.detail-hero-gallery .detail-image {
    width: 100%;
    height: 100%;
    animation: none;
    transform: scale(1);
    will-change: auto;
}

.detail-gallery-slide.is-active .detail-image {
    animation: none;
    transform: none;
}

@keyframes galleryImageFocus {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}

.detail-gallery-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(8, 32, 46, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f0f9ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
}

.detail-gallery-counter-sep {
    opacity: 0.72;
    font-weight: 600;
}

.detail-gallery-thumbs {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 22px;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    margin: 0;
}

.detail-gallery[data-count="2"] .detail-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-gallery-thumb {
    position: relative;
    height: 54px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 11px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    opacity: 0.82;
    box-shadow: 0 4px 14px rgba(8, 32, 46, 0.24);
    transition: opacity 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.detail-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: var(--image-photo-filter);
    pointer-events: none;
}

.detail-gallery-thumb.is-active {
    opacity: 1;
    border-color: #bae6fd;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 18px rgba(56, 189, 248, 0.34);
}

.detail-gallery-thumb:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 2px;
}

.detail-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    font-weight: 800;
    color: var(--sea-deep);
    opacity: 0.62;
    background: linear-gradient(135deg, #e0f7ff 0%, #bae6fd 35%, #7dd3fc 68%, #38bdf8 100%);
    background-size: 240% 240%;
    animation: placeholderGradient 10s ease infinite, placeholderFloat 6s ease-in-out infinite;
}

.detail-card {
    margin: -20px 16px 0;
    padding: 22px 20px 4px;
    border-radius: var(--radius-xl);
    background: rgba(246, 251, 254, 0.86);
    border: 1px solid var(--site-blue-border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    position: relative;
    z-index: 2;
}

.detail-title-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-width: 100%;
    margin-bottom: 12px;
}

.detail-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.detail-title-row h1 {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-like-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    width: auto;
    min-height: 32px;
    padding: 5px 10px;
    border: 1px solid rgba(244, 63, 94, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 242, 0.98) 100%);
    color: #e11d48;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.1);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.detail-like-button:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 63, 94, 0.34);
    box-shadow: 0 10px 24px rgba(244, 63, 94, 0.16);
    color: #e11d48;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 242, 0.98) 100%);
}

.detail-like-button:active {
    transform: translateY(0);
}

.detail-like-button.is-liked {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
    border-color: rgba(225, 29, 72, 0.4);
    color: var(--site-on-accent-text);
    text-shadow: var(--site-on-accent-text-shadow);
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.24);
}

.detail-like-button.is-liked:hover {
    color: var(--site-on-accent-text-hover);
    text-shadow: var(--site-on-accent-text-shadow-hover);
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 100%);
}

.detail-like-button.is-busy {
    opacity: 0.72;
    pointer-events: none;
}

.detail-like-button.is-pop {
    animation: detail-like-pop 0.42s ease;
}

@keyframes detail-like-pop {
    0% { transform: scale(1); }
    35% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.detail-like-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: inherit;
}

.detail-like-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    line-height: 1;
}

.detail-like-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.detail-like-sep {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.45;
}

.detail-like-count {
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.detail-title-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.detail-feedback-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 4px 12px 4px 5px;
    border: 1px solid var(--site-blue-border-soft);
    border-radius: 12px;
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 46%, #bae6fd 100%);
    color: #0369a1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 3px 12px rgba(14, 165, 233, 0.12);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.detail-feedback-button::after {
    content: none;
}

.detail-feedback-button:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: var(--site-blue-border);
    color: #075985;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(186, 230, 253, 0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 2px 8px rgba(14, 165, 233, 0.16);
}

.detail-feedback-button:hover:not(:disabled)::after {
    opacity: 0;
}

.detail-feedback-button:active:not(:disabled) {
    transform: translateY(0);
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.98) 0%, rgba(125, 211, 252, 0.88) 100%);
    border-color: var(--site-blue-border-btn);
    color: #0c4a6e;
    box-shadow: inset 0 1px 2px rgba(3, 105, 161, 0.14);
}

.detail-feedback-button.is-submitted,
.detail-feedback-button:disabled {
    border-color: rgba(52, 211, 153, 0.34);
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98) 0%, rgba(209, 250, 229, 0.92) 100%);
    color: #047857;
    cursor: default;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 4px 12px rgba(16, 185, 129, 0.12);
}

.detail-feedback-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(14, 165, 233, 0.16);
    color: #0284c7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.detail-feedback-button:hover:not(:disabled) .detail-feedback-icon-wrap {
    background: rgba(14, 165, 233, 0.22);
    color: #0369a1;
    transform: scale(1.04);
}

.detail-feedback-button.is-submitted .detail-feedback-icon-wrap,
.detail-feedback-button:disabled .detail-feedback-icon-wrap {
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.18) 0%, rgba(16, 185, 129, 0.28) 100%);
    color: #059669;
    transform: none;
}

.detail-feedback-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.detail-feedback-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.detail-feedback-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
    line-height: 1.15;
}

.detail-feedback-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-feedback-hint {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(3, 105, 161, 0.72);
    line-height: 1.1;
}

.detail-feedback-button.is-submitted .detail-feedback-hint,
.detail-feedback-button:disabled .detail-feedback-hint {
    display: none;
}

body.detail-feedback-open {
    overflow: hidden;
}

.detail-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.detail-feedback-modal[hidden] {
    display: none;
}

.detail-feedback-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(99, 102, 241, 0.16) 0%, transparent 58%),
        rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: detail-feedback-backdrop-in 0.28s ease;
}

@keyframes detail-feedback-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.detail-feedback-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    max-height: none;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(199, 210, 254, 0.55);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #ffffff 100%),
        linear-gradient(135deg, rgba(237, 233, 254, 0.35) 0%, rgba(224, 231, 255, 0.15) 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 48px rgba(15, 23, 42, 0.2);
    padding: 0;
    animation: detail-feedback-panel-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes detail-feedback-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-feedback-panel-hero {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 10px 12px;
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(199, 210, 254, 0.38);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(237, 233, 254, 0.38) 100%);
}

.detail-feedback-panel-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    flex-shrink: 0;
    color: #4f46e5;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.14) 0%, rgba(129, 140, 248, 0.26) 100%);
    border: 1px solid rgba(99, 102, 241, 0.16);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.detail-feedback-panel-hero-icon svg {
    display: block;
}

.detail-feedback-panel-hero-copy {
    min-width: 0;
}

.detail-feedback-panel-hero-copy h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #312e81;
}

.detail-feedback-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    padding: 0;
    border: 1px solid rgba(199, 210, 254, 0.55);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.88);
    color: #64748b;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.detail-feedback-close:hover {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.32);
    color: #4338ca;
    box-shadow: none;
    transform: none;
}

.detail-feedback-close svg {
    display: block;
    flex-shrink: 0;
}

.detail-feedback-intro {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(71, 85, 105, 0.88);
}

.detail-feedback-form {
    padding: 12px 14px 14px;
}

.detail-feedback-types {
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    min-width: 0;
}

.detail-feedback-types-label {
    display: block;
    margin-bottom: 6px;
    padding: 0;
    font-size: 11px;
    font-weight: 800;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.detail-feedback-type-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-feedback-type-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 11px;
    border: 1px solid rgba(203, 213, 225, 0.65);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.detail-feedback-type-option:hover {
    border-color: rgba(129, 140, 248, 0.42);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 233, 254, 0.55) 100%);
    box-shadow: none;
}

.detail-feedback-type-option:has(input:checked) {
    border-color: rgba(79, 70, 229, 0.45);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(224, 231, 255, 0.72) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.detail-feedback-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.detail-feedback-type-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.detail-feedback-type-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.detail-feedback-type-icon.is-tone-danger {
    color: #b91c1c;
    background: linear-gradient(145deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.55) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.detail-feedback-type-icon.is-tone-violet {
    color: #6d28d9;
    background: linear-gradient(145deg, rgba(237, 233, 254, 0.98) 0%, rgba(221, 214, 254, 0.62) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.detail-feedback-type-icon.is-tone-warning {
    color: #b45309;
    background: linear-gradient(145deg, rgba(255, 251, 235, 0.98) 0%, rgba(254, 243, 199, 0.72) 100%);
    border-color: rgba(245, 158, 11, 0.22);
}

.detail-feedback-type-icon.is-tone-neutral {
    color: #4338ca;
    background: linear-gradient(145deg, rgba(237, 233, 254, 0.98) 0%, rgba(224, 231, 255, 0.62) 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.detail-feedback-type-label {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

.detail-feedback-type-option:has(input:checked) .detail-feedback-type-label {
    color: #312e81;
    font-weight: 700;
}

.detail-feedback-type-mark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-left: auto;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.45);
    background: #ffffff;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.detail-feedback-type-option:has(input:checked) .detail-feedback-type-mark {
    border-color: #4f46e5;
    background: #4f46e5;
    box-shadow: inset 0 0 0 2px #ffffff;
}

.detail-feedback-note {
    display: block;
    margin-bottom: 8px;
}

.detail-feedback-note span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 800;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.detail-feedback-note textarea {
    width: 100%;
    min-height: 0;
    padding: 8px 10px;
    border-radius: 11px;
    border: 1px solid rgba(203, 213, 225, 0.75);
    background: rgba(255, 255, 255, 0.96);
    color: #1e293b;
    font: inherit;
    line-height: 1.5;
    resize: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.detail-feedback-note textarea::placeholder {
    color: rgba(100, 116, 139, 0.72);
}

.detail-feedback-note textarea:hover {
    border-color: rgba(129, 140, 248, 0.38);
}

.detail-feedback-note textarea:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

.detail-feedback-error {
    margin: 0 0 8px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(248, 113, 113, 0.28);
    background: linear-gradient(135deg, rgba(254, 242, 242, 0.98) 0%, rgba(254, 226, 226, 0.72) 100%);
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.detail-feedback-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    padding-top: 0;
}

.detail-feedback-cancel,
.detail-feedback-submit {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
}

.detail-feedback-cancel {
    border: 1px solid rgba(203, 213, 225, 0.85);
    background: rgba(255, 255, 255, 0.96);
    color: #475569;
    box-shadow: none;
}

.detail-feedback-cancel:hover {
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.65);
    box-shadow: none;
    transform: none;
}

.detail-feedback-cancel:active {
    transform: none;
    box-shadow: none;
}

.detail-feedback-submit {
    border: 0;
    padding: 0 16px;
    background: linear-gradient(135deg, #818cf8 0%, #4f46e5 52%, #4338ca 100%);
    color: var(--site-on-accent-text);
    text-shadow: var(--site-on-accent-text-shadow);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 10px 24px rgba(79, 70, 229, 0.28);
}

.detail-feedback-submit:hover {
    color: var(--site-on-accent-text-hover);
    text-shadow: var(--site-on-accent-text-shadow-hover);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28) inset,
        0 14px 28px rgba(79, 70, 229, 0.34);
    transform: translateY(-1px);
}

.detail-feedback-submit:active {
    transform: translateY(0);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 6px 16px rgba(79, 70, 229, 0.24);
}

@media (max-width: 480px) {
    .detail-feedback-panel {
        border-radius: 14px;
        max-height: calc(100vh - 16px);
        overflow-y: auto;
    }

    .detail-feedback-modal {
        padding: 8px;
    }
}

.detail-card .detail-title-head h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-style: normal;
}

.detail-card .detail-title-rule {
    display: block;
    width: 52px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    flex-shrink: 0;
}

.detail-card.featured .detail-title-rule {
    background: linear-gradient(90deg, rgba(142, 45, 60, 0.88), rgba(142, 45, 60, 0.15));
}

.detail-card.gold .detail-title-rule {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.92), rgba(212, 175, 55, 0.18));
}

.detail-card.bronze .detail-title-rule {
    background: linear-gradient(90deg, rgba(191, 116, 58, 0.9), rgba(191, 116, 58, 0.16));
}

.detail-card:not(.featured):not(.gold):not(.bronze) .detail-title-rule {
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.85), rgba(14, 165, 233, 0.12));
}

.detail-card.gold .detail-chip,
.detail-card.gold .detail-chip-age,
.detail-card.gold .detail-chip-weight,
.detail-card.gold .detail-chip-height,
.detail-card.gold .detail-chip-place,
.detail-card.gold .detail-chip-hotel,
.detail-card.gold .detail-chip-meeting,
.detail-card.gold .detail-chip-meeting-place,
.detail-card.gold .detail-chip-meeting-hotel,
.detail-card.gold .detail-chip-meeting-both,
.detail-card.gold .detail-chip-location {
    background: linear-gradient(135deg, rgba(255, 252, 235, 0.98), rgba(245, 225, 164, 0.92));
    border-color: rgba(212, 175, 55, 0.42);
    color: #7c5a10;
    box-shadow: 0 3px 10px rgba(180, 134, 11, 0.14);
}

.detail-card.gold .detail-chip-age .detail-chip-icon,
.detail-card.gold .detail-chip-weight .detail-chip-icon,
.detail-card.gold .detail-chip-height .detail-chip-icon,
.detail-card.gold .detail-chip-place .detail-chip-icon,
.detail-card.gold .detail-chip-hotel .detail-chip-icon,
.detail-card.gold .detail-chip-meeting .detail-chip-icon,
.detail-card.gold .detail-chip-location .detail-chip-icon {
    background: rgba(212, 175, 55, 0.22);
    color: #a67c00;
}

.detail-card.bronze .detail-chip,
.detail-card.bronze .detail-chip-age,
.detail-card.bronze .detail-chip-weight,
.detail-card.bronze .detail-chip-height,
.detail-card.bronze .detail-chip-place,
.detail-card.bronze .detail-chip-hotel,
.detail-card.bronze .detail-chip-meeting,
.detail-card.bronze .detail-chip-meeting-place,
.detail-card.bronze .detail-chip-meeting-hotel,
.detail-card.bronze .detail-chip-meeting-both,
.detail-card.bronze .detail-chip-location {
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.98), rgba(245, 200, 166, 0.92));
    border-color: rgba(191, 116, 58, 0.4);
    color: #7a3e17;
    box-shadow: 0 3px 10px rgba(156, 86, 33, 0.12);
}

.detail-card.bronze .detail-chip-age .detail-chip-icon,
.detail-card.bronze .detail-chip-weight .detail-chip-icon,
.detail-card.bronze .detail-chip-height .detail-chip-icon,
.detail-card.bronze .detail-chip-place .detail-chip-icon,
.detail-card.bronze .detail-chip-hotel .detail-chip-icon,
.detail-card.bronze .detail-chip-meeting .detail-chip-icon,
.detail-card.bronze .detail-chip-location .detail-chip-icon {
    background: rgba(191, 116, 58, 0.22);
    color: #9a5d2f;
}

.detail-card.gold .detail-summary-avatar {
    color: #b8860b;
    background: linear-gradient(160deg, #fffdf5 0%, #f8e8a8 45%, #efd98d 100%);
    border-color: rgba(255, 248, 220, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 4px 14px rgba(212, 175, 55, 0.28);
}

.detail-card.gold .detail-summary-heart-main {
    filter: drop-shadow(0 2px 5px rgba(180, 134, 11, 0.35));
}

.detail-card.gold .detail-summary-heart-float {
    color: #d4af37;
    filter: drop-shadow(0 1px 4px rgba(180, 134, 11, 0.45));
}

.detail-card.bronze .detail-summary-avatar {
    color: #9a5d2f;
    background: linear-gradient(160deg, #fff4ec 0%, #f5c8a6 45%, #dca478 100%);
    border-color: rgba(255, 241, 232, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 4px 14px rgba(156, 86, 33, 0.22);
}

.detail-card.bronze .detail-summary-heart-main {
    filter: drop-shadow(0 2px 5px rgba(156, 86, 33, 0.35));
}

.detail-card.bronze .detail-summary-heart-float {
    color: #c98c55;
    filter: drop-shadow(0 1px 4px rgba(156, 86, 33, 0.45));
}

.detail-summary-chat {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 4px;
}

.detail-summary-avatar {
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f43f5e;
    background: linear-gradient(160deg, #fff1f2 0%, #ffe4e6 45%, #fecdd3 100%);
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 4px 14px rgba(244, 63, 94, 0.2);
}

.detail-summary-hearts {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.detail-summary-heart {
    display: block;
}

.detail-summary-heart-main {
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 5px rgba(244, 63, 94, 0.28));
    animation: detailHeartPulse 2.6s ease-in-out infinite;
}

.detail-summary-heart-float {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    opacity: 0;
    color: #e11d48;
    filter: drop-shadow(0 1px 4px rgba(225, 29, 72, 0.45));
    pointer-events: none;
}

.detail-summary-heart-float-1 {
    animation: detailHeartFloatUp 2.2s ease-out infinite;
}

.detail-summary-heart-float-2 {
    animation: detailHeartFloatLeft 2.4s ease-out 0.7s infinite;
}

.detail-summary-heart-float-3 {
    animation: detailHeartFloatRight 2.3s ease-out 1.4s infinite;
}

@keyframes detailHeartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes detailHeartFloatUp {
    0% {
        opacity: 0;
        transform: translate(0, 4px) scale(0.55);
    }
    12% {
        opacity: 1;
    }
    55% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(0, -22px) scale(1);
    }
}

@keyframes detailHeartFloatLeft {
    0% {
        opacity: 0;
        transform: translate(0, 4px) scale(0.5);
    }
    12% {
        opacity: 1;
    }
    55% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate(-14px, -18px) scale(0.95);
    }
}

@keyframes detailHeartFloatRight {
    0% {
        opacity: 0;
        transform: translate(0, 4px) scale(0.5);
    }
    12% {
        opacity: 1;
    }
    55% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate(14px, -17px) scale(0.92);
    }
}

.detail-summary-bubble {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 13px 15px 13px 16px;
    border-radius: 18px 18px 18px 6px;
    background: linear-gradient(145deg, rgba(246, 251, 254, 0.98) 0%, rgba(237, 245, 249, 0.94) 100%);
    border: 1px solid var(--site-blue-border);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 8px 22px rgba(30, 58, 74, 0.08);
}

.detail-summary-bubble::before {
    content: '';
    position: absolute;
    left: -5px;
    bottom: 12px;
    width: 11px;
    height: 11px;
    background: linear-gradient(145deg, rgba(246, 251, 254, 0.98), rgba(237, 245, 249, 0.94));
    border-left: 1px solid var(--site-blue-border);
    border-bottom: 1px solid var(--site-blue-border);
    transform: rotate(45deg);
    border-radius: 0 0 0 4px;
}

.detail-card.gold .detail-summary-bubble {
    background: linear-gradient(145deg, rgba(255, 252, 235, 0.98) 0%, rgba(245, 225, 164, 0.94) 100%);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78) inset,
        0 8px 22px rgba(180, 134, 11, 0.12);
}

.detail-card.gold .detail-summary-bubble::before {
    background: linear-gradient(145deg, rgba(255, 250, 228, 0.98), rgba(245, 225, 164, 0.94));
    border-left-color: rgba(212, 175, 55, 0.55);
    border-bottom-color: rgba(212, 175, 55, 0.55);
}

.detail-card.bronze .detail-summary-bubble {
    background: linear-gradient(145deg, rgba(255, 245, 238, 0.98) 0%, rgba(245, 200, 166, 0.94) 100%);
    border-color: rgba(191, 116, 58, 0.52);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.78) inset,
        0 8px 22px rgba(156, 86, 33, 0.12);
}

.detail-card.bronze .detail-summary-bubble::before {
    background: linear-gradient(145deg, rgba(255, 241, 232, 0.98), rgba(245, 200, 166, 0.94));
    border-left-color: rgba(191, 116, 58, 0.52);
    border-bottom-color: rgba(191, 116, 58, 0.52);
}

.detail-summary-text {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.58;
    color: var(--text);
    word-break: break-word;
}

.description {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.contact-box {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(224, 242, 254, 0.88));
    border: 1px solid var(--site-blue-border-soft);
    backdrop-filter: blur(10px);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--site-on-accent-text);
    text-shadow: var(--site-on-accent-text-shadow);
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 12px 32px rgba(37, 211, 102, 0.32);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    color: var(--site-on-accent-text-hover);
    text-shadow: var(--site-on-accent-text-shadow-hover);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 16px 40px rgba(37, 211, 102, 0.38);
}

.whatsapp-button:active {
    transform: translateY(0) scale(0.99);
}

.whatsapp-button span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.92;
}

.whatsapp-button strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.detail-contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    grid-template-columns: minmax(0, 1fr);
}

.detail-contact-actions-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.detail-contact-actions .whatsapp-button,
.detail-contact-actions .telegram-button {
    margin-top: 0;
    min-width: 0;
}

.detail-contact-actions .whatsapp-button {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 3px 10px rgba(37, 211, 102, 0.14);
}

.detail-contact-actions .telegram-button {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 3px 10px rgba(34, 158, 217, 0.14);
}

.detail-contact-actions .whatsapp-button:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 5px 14px rgba(37, 211, 102, 0.18);
}

.detail-contact-actions .telegram-button:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 5px 14px rgba(34, 158, 217, 0.18);
}

.detail-contact-actions-dual .whatsapp-button,
.detail-contact-actions-dual .telegram-button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    text-align: center;
    min-height: 100%;
}

.detail-contact-actions-dual .whatsapp-button span,
.detail-contact-actions-dual .telegram-button span {
    font-size: 11px;
    line-height: 1.2;
}

.detail-contact-actions-dual .whatsapp-button strong,
.detail-contact-actions-dual .telegram-button strong {
    font-size: 12px;
    line-height: 1.25;
    word-break: break-word;
}

.detail-contact-actions-dual .whatsapp-icon,
.detail-contact-actions-dual .telegram-icon {
    width: 26px;
    height: 26px;
}

.detail-view-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px auto 0;
    min-height: 30px;
    padding: 5px 12px 5px 10px;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(224, 247, 255, 0.9) 100%);
    border: 1px solid var(--site-blue-border-soft);
    color: #0369a1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 3px 10px rgba(14, 165, 233, 0.1);
    text-align: center;
}

.detail-view-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: rgba(14, 165, 233, 0.16);
    color: #0284c7;
}

.detail-view-badge-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    min-width: 0;
    line-height: 1.2;
    white-space: nowrap;
    color: #0369a1;
}

.detail-view-badge-count {
    font-size: 12px;
    font-weight: 800;
    color: #0369a1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.detail-view-badge-label {
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    letter-spacing: 0.01em;
    text-transform: none;
}

.detail-card > .detail-view-badge {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 0;
}

.detail-card + .site-footer {
    margin-top: 8px;
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, #67e8f9 0%, #2aabee 52%, #229ed9 100%);
    color: var(--site-on-accent-text);
    text-shadow: var(--site-on-accent-text-shadow);
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 12px 32px rgba(34, 158, 217, 0.32);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.telegram-button:hover {
    transform: translateY(-2px);
    color: var(--site-on-accent-text-hover);
    text-shadow: var(--site-on-accent-text-shadow-hover);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 16px 40px rgba(34, 158, 217, 0.38);
}

.telegram-button:active {
    transform: translateY(0) scale(0.99);
}

.telegram-button span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.92;
}

.telegram-button strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.telegram-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-box span {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-box strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    word-break: break-word;
}

/* ─── Blocked page ─── */

.blocked-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(168, 196, 214, 0.35), transparent 60%),
        var(--bg);
}

.blocked-card {
    max-width: 380px;
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.blocked-card h1 {
    margin: 16px 0 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blocked-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.blocked-card small {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.blocked-warning-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #7c2d12;
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.28);
}

/* ─── 404 Not Found ─── */

.not-found-shell {
    min-height: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.not-found-page {
    display: block;
    flex: 0 0 auto;
    padding: 10px 16px 6px;
}

.not-found-card {
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 20px 18px 18px;
    border-radius: var(--radius-xl);
    text-align: center;
    background: rgba(246, 251, 254, 0.68);
    border: 1px solid var(--site-blue-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        var(--shadow-md);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.not-found-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    margin: 0 auto 12px;
}

.not-found-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed var(--site-blue-border-soft);
}

.not-found-orbit-b {
    inset: 12px;
    border-style: solid;
    border-color: var(--site-blue-border-soft);
}

.not-found-code {
    position: relative;
    z-index: 2;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(30, 138, 173, 0.34);
    user-select: none;
}

.not-found-icon {
    position: absolute;
    right: 2px;
    bottom: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #0284c7;
    background: linear-gradient(165deg, #ffffff 0%, #e0f2fe 58%, #bae6fd 100%);
    border: 1px solid var(--site-blue-border-soft);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 4px 12px rgba(2, 132, 199, 0.1);
    opacity: 0.88;
    pointer-events: none;
}

.not-found-icon svg {
    width: 22px;
    height: 22px;
}

.not-found-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--text);
}

.not-found-message {
    margin: 0 auto 16px;
    max-width: 32ch;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.not-found-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.not-found-home-btn.primary-button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    border: 1px solid var(--site-blue-border-btn);
    border-radius: 12px;
    background: linear-gradient(165deg, #5bc8f8 0%, #0ea5e9 42%, #0284c7 72%, #0369a1 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 1px 3px rgba(2, 132, 199, 0.12);
}

.not-found-home-btn.primary-button:hover {
    border-color: rgba(2, 132, 199, 0.62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 2px 5px rgba(2, 132, 199, 0.16);
}

.not-found-home-btn.primary-button:active {
    background: linear-gradient(165deg, #0ea5e9 0%, #0284c7 52%, #0369a1 100%);
    box-shadow: inset 0 1px 2px rgba(2, 72, 102, 0.22);
}

.not-found-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #0369a1;
    text-decoration: none;
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 52%, #bae6fd 100%);
    border: 1px solid var(--site-blue-border-soft);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.not-found-secondary-link:hover {
    color: #0284c7;
    background: linear-gradient(165deg, #ffffff 0%, #e0f2fe 52%, #7dd3fc 100%);
    border-color: var(--site-blue-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 2px 5px rgba(2, 132, 199, 0.12);
}

.not-found-shell .site-footer {
    margin-top: 4px;
    padding-bottom: 0;
}

@media (max-width: 640px) {
    .not-found-page {
        padding: 8px 14px 4px;
    }

    .not-found-card {
        padding: 18px 16px 16px;
    }

    .not-found-title {
        font-size: 20px;
    }

    .not-found-message {
        font-size: 13px;
        margin-bottom: 14px;
    }
}

.blocked-warning-icon svg {
    display: block;
}

