/* Keşfet — mockup hero kart + liste */

.browse-hero-header {
    margin: 0 0 1rem;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 14px;
    border: 1px solid var(--separator);
    background: var(--surface);
}

.browse-hero-header--musician {
    border-color: rgba(212, 168, 83, 0.28);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, var(--surface) 58%);
}

.browse-hero-header--venue {
    border-color: rgba(37, 99, 235, 0.18);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, var(--surface) 58%);
}

.browse-hero-header h1 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.browse-hero-header p {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.browse-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .browse-page .browse-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.72rem;
    }
}

@media (min-width: 640px) {
    .browse-list {
        gap: 0.72rem;
    }

    .browse-hero-media {
        max-height: 128px;
        aspect-ratio: 16 / 10;
    }

    .browse-hero-body {
        min-height: 7rem;
    }
}

.browse-hero-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--separator);
    background: var(--surface);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.browse-hero-card-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: inherit;
    text-decoration: none;
}

.browse-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.browse-hero-media-actions {
    padding: 0 0.75rem 0.75rem;
}

.browse-hero-card--venue:hover {
    border-color: rgba(212, 168, 83, 0.35);
}

.browse-hero-card--musician:hover {
    border-color: rgba(168, 85, 247, 0.35);
}

.browse-hero-card--applied {
    border-color: rgba(34, 197, 94, 0.28);
}

.browse-hero-media {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 152px;
    background: linear-gradient(145deg, #eef1f6 0%, #dfe5ee 100%);
    overflow: hidden;
}

.browse-hero-media-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    color: inherit;
    text-decoration: none;
}

.browse-hero-media-hit.is-disabled {
    pointer-events: none;
    visibility: hidden;
}

.browse-hero-media img,
.browse-hero-media-fallback {
    position: relative;
    z-index: 0;
}

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

.browse-hero-media-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.28);
}

.browse-hero-card--venue .browse-hero-media-fallback {
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.18) 0%, rgba(212, 168, 83, 0.05) 100%);
    color: rgba(180, 130, 20, 0.55);
}

.browse-hero-card--musician .browse-hero-media-fallback {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.16) 0%, rgba(168, 85, 247, 0.05) 100%);
    color: rgba(126, 34, 206, 0.55);
}

.browse-hero-badge {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    padding: 0.18rem 0.52rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 3;
}

.browse-hero-fav {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    z-index: 3;
}

.browse-hero-fav svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #64748b;
    stroke-width: 1.75;
}

.browse-hero-fav.is-faved svg {
    fill: #e0245e;
    stroke: #e0245e;
}

.browse-hero-body {
    padding: 0.75rem 0.85rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    min-height: 7.5rem;
}

.browse-hero-name {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browse-hero-subtitle,
.browse-hero-city {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.browse-hero-title {
    margin: 0.15rem 0 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.browse-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    margin-top: 0.25rem;
}

.browse-hero-tags span {
    font-size: 0.625rem;
    padding: 0.12rem 0.42rem;
    border-radius: 6px;
    background: var(--surface-muted, rgba(0, 0, 0, 0.04));
    border: 1px solid var(--separator);
    color: var(--text-muted);
}

.browse-hero-foot {
    margin-top: auto;
    padding-top: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.browse-hero-price {
    font-size: 0.875rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--text);
}

.browse-hero-price.is-negotiable {
    font-weight: 600;
    color: var(--text-muted);
}

.browse-hero-applied {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #15803d;
}

.browse-hero-listen {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem 0.65rem;
    border: 0;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    cursor: pointer;
    text-align: left;
}

.browse-hero-listen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.14);
    color: #2563eb;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.browse-hero-listen-wave {
    flex: 1;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.55) 35%, rgba(37, 99, 235, 0.25) 70%, rgba(37, 99, 235, 0.55) 100%);
    background-size: 180% 100%;
    animation: browse-listen-wave 1.4s linear infinite;
}

.browse-hero-listen-label {
    flex: 1;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
}

.browse-hero-listen--audio .browse-hero-listen-label {
    flex: 0 1 auto;
}

.browse-hero-listen-type {
    display: none;
}

.browse-hero-listen.is-open {
    background: rgba(37, 99, 235, 0.14);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.22);
}

.browse-hero-listen.is-open .browse-hero-listen-label {
    color: #1d4ed8;
}

.browse-hero-card--has-media {
    border-color: rgba(37, 99, 235, 0.28);
}

.browse-hero-card--media-open {
    border-color: rgba(37, 99, 235, 0.42);
}

.browse-hero-media-type-badge {
    display: none;
}

.browse-hero-media-play-hint {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0.28) 100%);
}

.browse-hero-media-play-hint-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.browse-hero-card--media-open .browse-hero-media-play-hint {
    opacity: 0;
}

.browse-hero-media-type-badge.is-open {
    background: rgba(29, 78, 216, 0.96);
}

.browse-hero-media-player {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: #0f172a;
    display: flex;
    flex-direction: column;
}

.browse-hero-media-player[hidden] {
    display: none !important;
}

.browse-hero-media--playing img,
.browse-hero-media--playing .browse-hero-media-fallback {
    opacity: 0;
}

.browse-hero-media-player-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.browse-hero-media-player-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding: 0.28rem 0.4rem;
    background: rgba(0, 0, 0, 0.55);
    flex-shrink: 0;
}

.browse-hero-media-player-inner--youtube .browse-hero-media-player-head {
    justify-content: flex-end;
    padding: 0.1rem 0.22rem;
    background: rgba(0, 0, 0, 0.35);
}

.browse-hero-media-player-inner--youtube .browse-hero-media-player-close {
    font-size: 0.9rem;
    padding: 0.08rem 0.32rem;
}

.browse-hero-media-player-kind {
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.browse-hero-media-player-close {
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.12rem 0.38rem;
    border-radius: 6px;
}

.browse-hero-media-player-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.browse-hero-media-player-body {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: stretch;
    padding: 0.2rem;
}

.browse-hero-media-player-body--youtube {
    padding: 0;
}

.browse-hero-yt-stage {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: #000;
}

.browse-hero-yt-mount,
.browse-hero-yt-mount iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.browse-hero-media-frame {
    flex: 1;
    width: 100%;
    padding-top: 0 !important;
    height: 100%;
    min-height: 0;
    border-radius: 6px;
    overflow: hidden;
}

.browse-hero-media-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.browse-hero-media-player-body--youtube .browse-hero-yt-stage,
.browse-hero-media-player-body--youtube .browse-hero-media-frame {
    border-radius: 0;
}

.browse-hero-media-player-body--youtube .profile-video-embed-frame {
    padding-top: 0 !important;
    height: 100%;
    border-radius: 0;
}

.browse-hero-media-audio {
    align-self: center;
    width: calc(100% - 0.5rem);
    margin: 0;
}

.browse-hero-media-unavailable {
    margin: 0;
    padding: 0.5rem;
    font-size: 0.72rem;
    color: #fff;
    text-align: center;
}

@keyframes browse-listen-wave {
    0% { background-position: 0% 50%; }
    100% { background-position: 180% 50%; }
}

/* Muzisyen — mekan ilani sehir haritasi */
.browse-map-wrap {
    margin: 0 0 0.65rem;
}

.browse-map-preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3.35rem;
    margin: 0;
    padding: 0.55rem 0.62rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 83, 0.4);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.55) 0%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: border-color 0.16s ease, background 0.16s ease;
    -webkit-tap-highlight-color: transparent;
}

.browse-map-preview:active {
    background: linear-gradient(135deg, rgba(191, 219, 254, 0.65) 0%, rgba(248, 250, 252, 0.98) 100%);
}

.browse-map-preview--musician {
    border-color: rgba(212, 168, 83, 0.4);
}

.browse-map-preview-leading {
    flex: 0 0 auto;
    font-size: 1.25rem;
    line-height: 1;
}

.browse-map-preview-body {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.browse-map-preview-title {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e293b;
    line-height: 1.2;
}

.browse-map-preview-caption {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.browse-map-preview-chevron {
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 300;
    color: #c9971a;
}

.browse-map-preview-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.browse-map-preview-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 24px 20px;
    opacity: 0.65;
}

.browse-map-preview-pin {
    position: absolute;
    z-index: 2;
    width: 1rem;
    height: 1rem;
    margin: -0.5rem 0 0 -0.5rem;
}

.browse-map-preview-pin-dot {
    display: block;
    width: 0.72rem;
    height: 0.72rem;
    margin: 0.14rem;
    border-radius: 999px;
    background: #d4a853;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(212, 168, 83, 0.4);
}

.browse-map-preview-pin.is-active .browse-map-preview-pin-dot {
    background: #b8861f;
    box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.28);
}

.browse-map-preview-note {
    display: none;
}

.browse-map-sheet-handle {
    display: none;
}

@media (min-width: 768px) {
    .browse-map-preview {
        min-height: 4.5rem;
        padding: 0.65rem 0.75rem;
        border-radius: 14px;
        border-width: 2px;
    }

    .browse-map-preview-deco {
        opacity: 1;
    }

    .browse-map-preview-title {
        font-size: 0.92rem;
    }

    .browse-map-preview-caption {
        font-size: 0.76rem;
    }

    .browse-map-preview:hover,
    .browse-map-preview:focus-visible {
        border-color: rgba(212, 168, 83, 0.7);
    }
}

@media (min-width: 1024px) {
    .browse-map-preview {
        min-height: 5rem;
    }

    .browse-map-preview-title {
        font-size: 1rem;
    }
}

.browse-map-preview-expand {
    display: none !important;
}

.browse-map-modal[hidden] {
    display: none !important;
}

.browse-map-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .browse-map-modal {
        align-items: center;
        padding: 1.25rem;
        z-index: 13000;
    }

    .browse-map-dialog {
        width: min(100%, 860px);
        max-height: min(84vh, 720px);
    }

    .browse-map-stage {
        min-height: 440px;
    }
}

@media (max-width: 639px) {
    .browse-page .browse-map-wrap {
        margin-bottom: 0;
    }

    .browse-map-wrap {
        margin-bottom: 0.45rem;
    }

    .browse-map-preview {
        min-height: 2.95rem;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        gap: 0.42rem;
    }

    .browse-map-preview-leading {
        font-size: 1.05rem;
    }

    .browse-map-preview-title {
        font-size: 0.78rem;
    }

    .browse-map-preview-caption {
        font-size: 0.68rem;
    }

    .browse-map-preview-chevron {
        font-size: 1.2rem;
    }

    .browse-map-preview-deco {
        display: none;
    }

    .browse-map-modal {
        align-items: flex-end;
        justify-content: stretch;
        padding: 0;
        z-index: 14000;
    }

    .browse-map-dialog {
        width: 100%;
        max-width: none;
        max-height: min(88dvh, 88vh);
        border-radius: 16px 16px 0 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
    }

    .browse-map-sheet-handle {
        display: block;
        width: 2.4rem;
        height: 0.28rem;
        margin: 0.45rem auto 0;
        border-radius: 999px;
        background: rgba(148, 163, 184, 0.55);
        flex-shrink: 0;
    }

    .browse-map-dialog-head {
        padding: 0.45rem 0.65rem 0.5rem;
        gap: 0.45rem;
    }

    .browse-map-dialog-head h2 {
        font-size: 0.88rem;
    }

    .browse-map-dialog-sub {
        display: none;
    }

    .browse-map-dialog-actions {
        gap: 0.35rem;
    }

    .browse-map-clear-city {
        padding: 0.32rem 0.55rem;
        font-size: 0.68rem;
        min-height: 2rem;
    }

    .browse-map-dialog-close {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
        font-size: 1.35rem;
    }

    .browse-map-stage {
        min-height: min(50dvh, 380px);
    }

    .browse-map-hint {
        margin: 0;
        padding: 0.5rem 0.65rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
        font-size: 0.72rem;
        text-align: center;
    }

    .browse-map-popup-btn {
        min-height: 2.5rem;
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    .browse-map-leaflet-pin {
        width: 38px;
        height: 38px;
        font-size: 0.78rem;
    }
}

.browse-map-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
}

.browse-map-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: min(88vh, 680px);
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    border: 1px solid var(--separator);
}

.browse-map-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem 0.65rem;
    border-bottom: 1px solid var(--separator);
}

.browse-map-dialog-head-main {
    flex: 1;
    min-width: 0;
}

.browse-map-dialog-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.browse-map-clear-city {
    border: 1px solid var(--separator);
    background: var(--surface-2);
    color: var(--text);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 650;
    cursor: pointer;
    white-space: nowrap;
}

.browse-map-clear-city:hover,
.browse-map-clear-city:focus-visible {
    border-color: rgba(212, 168, 83, 0.45);
    background: rgba(212, 168, 83, 0.1);
}

.browse-map-clear-city[hidden] {
    display: none !important;
}

.browse-map-dialog-head h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 750;
}

.browse-map-dialog-sub {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.browse-map-dialog-close {
    border: 0;
    background: var(--surface-2);
    color: var(--text);
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.browse-map-stage {
    flex: 1;
    min-height: 320px;
    background: #dbeafe;
}

@media (min-width: 640px) {
    .browse-map-stage {
        min-height: 420px;
    }
}

.browse-map-hint {
    margin: 0;
    padding: 0.55rem 0.95rem 0.75rem;
    font-size: 0.6875rem;
    color: var(--text-muted);
    border-top: 1px solid var(--separator);
}

body.browse-map-open {
    overflow: hidden;
}

.browse-map-leaflet-marker {
    background: transparent;
    border: 0;
}

.browse-map-leaflet-pin {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #d4a853;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(212, 168, 83, 0.45);
}

.browse-map-leaflet-pin.is-active {
    background: #b8861f;
    transform: scale(1.08);
}

.browse-map-leaflet-pin.is-venue {
    background: #c9971a;
    font-size: 0.85rem;
}

.browse-map-leaflet-pin.is-venue.is-active {
    background: #8b6914;
}

.browse-map-popup-btn {
    margin-top: 0.35rem;
    border: 0;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    background: #d4a853;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
}

.browse-map-popup-link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
}

.browse-map-popup-link:hover {
    text-decoration: underline;
}

@media (max-width: 639px) {
    .browse-page .browse-list {
        grid-template-columns: 1fr;
        gap: 0.72rem;
    }

    .browse-hero-card {
        border-radius: 14px;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03), 0 6px 18px rgba(15, 23, 42, 0.07);
    }

    .browse-hero-media {
        aspect-ratio: 16 / 10;
        max-height: 210px;
    }

    .browse-hero-media-fallback svg {
        width: 36px;
        height: 36px;
    }

    .browse-hero-body {
        min-height: 6.75rem;
        padding: 0.75rem 0.85rem 0.85rem;
        gap: 0.28rem;
    }

    .browse-hero-name {
        font-size: 0.9375rem;
        line-height: 1.25;
    }

    .browse-hero-subtitle,
    .browse-hero-city {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .browse-hero-city {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .browse-hero-title {
        font-size: 0.8125rem;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        margin-top: 0.15rem;
    }

    .browse-hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.28rem;
        margin-top: 0.25rem;
    }

    .browse-hero-tags span {
        font-size: 0.625rem;
    }

    .browse-hero-foot {
        padding-top: 0.45rem;
        margin-top: auto;
    }

    .browse-hero-price {
        font-size: 0.875rem;
        font-weight: 750;
    }

    .browse-hero-applied {
        font-size: 0.6875rem;
    }

    .browse-hero-badge {
        top: 0.55rem;
        right: 0.55rem;
        font-size: 0.625rem;
        padding: 0.18rem 0.52rem;
        max-width: calc(100% - 2.8rem);
    }

    .browse-hero-fav {
        top: 0.55rem;
        left: 0.55rem;
        width: 2rem;
        height: 2rem;
    }

    .browse-hero-fav svg {
        width: 14px;
        height: 14px;
    }

    .browse-hero-media-play-hint-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 0.85rem;
    }

    .browse-hero-media-actions {
        padding: 0 0.75rem 0.75rem;
    }

    .browse-hero-listen {
        min-height: 40px;
        padding: 0.5rem 0.65rem;
        border-radius: 10px;
        gap: 0.45rem;
    }

    .browse-hero-listen-icon {
        width: 1.55rem;
        height: 1.55rem;
        font-size: 0.72rem;
    }

    .browse-hero-listen-wave {
        display: block;
    }

    .browse-hero-listen-label {
        font-size: 0.8125rem;
        font-weight: 700;
    }

    .browse-hero-card--media-open,
    .browse-hero-card--youtube-open {
        grid-column: 1 / -1;
    }

    .browse-hero-card--youtube-open .browse-hero-media {
        aspect-ratio: 16 / 9;
        max-height: 220px;
    }

    body:has(.mob-tabbar) .browse-hero-header {
        display: none;
    }

    .browse-hero-header {
        margin-bottom: 0.65rem;
        padding: 0.85rem 0.95rem;
    }

    .browse-hero-header h1 {
        font-size: 1.15rem;
        line-height: 1.25;
    }

    .browse-hero-header p {
        font-size: 0.78rem;
        margin-top: 0.28rem;
        line-height: 1.4;
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    /* Keşfet üst alan — telefonda kompakt (filtre chip ölçüleri site-browse-filters-gold.css) */
    .browse-tabs {
        margin-bottom: 0.38rem;
        padding-top: 0.22rem;
        padding-bottom: 0.22rem;
        gap: 0.18rem;
    }

    .browse-tab {
        padding: 0.38rem 0.48rem;
        min-width: 0;
        border-radius: 8px;
    }

    .browse-tab-label {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }

    .browse-create-bar {
        margin-bottom: 0.4rem;
        gap: 0.35rem;
    }
}

@media (min-width: 640px) {
    .browse-list {
        gap: 0.72rem;
    }

    .browse-hero-body {
        min-height: 7rem;
    }
}

@media (min-width: 1024px) {
    .browse-list {
        gap: 0.85rem;
    }

    .browse-hero-body {
        min-height: 6.75rem;
    }

    .browse-hero-tags {
        display: flex;
    }

    .browse-hero-google-wrap {
        display: block;
    }
}

@media (min-width: 1200px) {
    .browse-hero-body {
        min-height: 6.1rem;
        padding: 0.52rem 0.58rem 0.6rem;
    }

    .browse-hero-name {
        font-size: 0.82rem;
    }

    .browse-hero-subtitle,
    .browse-hero-city,
    .browse-hero-title {
        font-size: 0.72rem;
    }

    .browse-hero-media {
        max-height: 118px;
    }

    .browse-hero-listen {
        min-height: 34px;
        padding: 0.3rem 0.4rem;
    }

    .browse-hero-listen-label {
        font-size: 0.68rem;
    }
}

/* YouTube — büyük modal (Studio sayımı için) */
body.hanisin-yt-modal-open {
    overflow: hidden;
}

.hanisin-yt-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hanisin-yt-modal[hidden] {
    display: none !important;
}

.hanisin-yt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.82);
}

.hanisin-yt-modal-dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.hanisin-yt-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem 0.65rem;
}

.hanisin-yt-modal-kicker {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f87171;
}

.hanisin-yt-modal-title {
    margin: 0.15rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.hanisin-yt-modal-hint {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.hanisin-yt-modal-close {
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.hanisin-yt-modal-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hanisin-yt-modal-player-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.hanisin-yt-modal-player,
.hanisin-yt-dock-stage .profile-yt-facade,
.browse-hero-yt-inline-stage .profile-yt-facade,
.hanisin-yt-dock-stage .hanisin-yt-player-mount,
.browse-hero-yt-inline-stage .hanisin-yt-player-mount {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hanisin-yt-player-mount iframe,
.hanisin-yt-dock-stage .profile-yt-facade .hanisin-yt-player-mount iframe,
.browse-hero-yt-inline-stage .profile-yt-facade .hanisin-yt-player-mount iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hanisin-yt-modal-foot {
    display: flex;
    justify-content: flex-end;
    padding: 0.65rem 1rem 0.9rem;
}

.hanisin-yt-modal-watch {
    font-size: 0.78rem;
    font-weight: 600;
    color: #93c5fd;
    text-decoration: none;
}

.hanisin-yt-modal-watch:hover {
    text-decoration: underline;
}

/* YouTube — cep oynatıcı (küçük görünüm + Studio sayımı) */
body.hanisin-yt-dock-open {
    padding-bottom: calc(12.5rem + env(safe-area-inset-bottom));
}

.hanisin-yt-dock {
    position: fixed;
    left: 50%;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 11000;
    width: min(340px, calc(100vw - 1.25rem));
    --yt-ghost-scale: 0.708333;
    animation: hanisin-yt-dock-in 0.22s ease-out;
}

@media (min-width: 768px) {
    .hanisin-yt-dock {
        width: min(400px, calc(100vw - 2rem));
        --yt-ghost-scale: 0.833333;
        bottom: 1rem;
    }

    body.hanisin-yt-dock-open {
        padding-bottom: calc(14rem + env(safe-area-inset-bottom));
    }
}

.hanisin-yt-dock[hidden] {
    display: none !important;
}

@keyframes hanisin-yt-dock-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.hanisin-yt-dock-shell {
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

.hanisin-yt-dock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.35rem 0.5rem 0.3rem 0.65rem;
    background: rgba(0, 0, 0, 0.35);
}

.hanisin-yt-dock-kicker {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #f87171;
    line-height: 1.2;
}

.hanisin-yt-dock-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 14rem;
}

.hanisin-yt-dock-close {
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.12rem 0.45rem;
    border-radius: 7px;
    flex-shrink: 0;
}

.hanisin-yt-dock-close {
    background: rgba(255, 255, 255, 0.1);
}

.hanisin-yt-dock-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Görünen: ~340×191 — iframe içi: 480×270 (ghost scale) */
.hanisin-yt-dock-stage {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

.hanisin-yt-dock-stage .profile-yt-facade,
.hanisin-yt-dock-stage .hanisin-yt-player-mount {
    position: absolute;
    inset: 0;
}

.hanisin-yt-dock-stage .hanisin-yt-player-mount--hd {
    width: 854px;
    height: 480px;
    transform: scale(var(--yt-ghost-scale, 0.708333));
    transform-origin: top left;
}

.hanisin-yt-dock-stage .hanisin-yt-player-mount--hd iframe {
    width: 854px;
    height: 480px;
    border: 0;
}

.hanisin-yt-dock-hint {
    margin: 0;
    padding: 0.28rem 0.65rem 0.45rem;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.browse-hero-card--youtube-open .browse-hero-media {
    max-height: none;
    aspect-ratio: 16 / 9;
    min-height: 228px;
}

.browse-hero-card--youtube-open .browse-hero-media-play-hint {
    display: none;
}

.browse-hero-yt-inline-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #000;
}

.browse-hero-yt-inline-stage .profile-yt-facade,
.browse-hero-yt-inline-stage .hanisin-yt-player-mount {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.browse-hero-yt-inline-stage .hanisin-yt-player-mount--hd {
    width: 854px;
    height: 480px;
    transform: scale(var(--yt-ghost-scale, 0.72));
    transform-origin: top left;
}

.browse-hero-yt-inline-stage .hanisin-yt-player-mount--hd iframe {
    width: 854px;
    height: 480px;
    border: 0;
}

.browse-hero-card--youtube-open {
    outline: 2px solid rgba(248, 113, 113, 0.35);
    outline-offset: -2px;
}

.browse-hero-card--yt-dock {
    outline: 2px solid rgba(248, 113, 113, 0.45);
    outline-offset: -2px;
}

.profile-yt-facade--compact .profile-yt-facade-play-icon {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 0.95rem;
}

.profile-yt-facade--compact .profile-yt-facade-play {
    background: rgba(0, 0, 0, 0.45);
}

/* YouTube — gömülemez (YouTube'da aç) */
.profile-yt-external {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.profile-yt-external--compact {
    max-width: none;
    border-radius: 0;
}

.profile-yt-external-actions {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.48);
    text-align: center;
}

.profile-yt-external-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.94);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, background 0.15s ease;
}

.profile-yt-external-btn:hover {
    background: #ff1a1a;
    transform: scale(1.03);
}

.profile-yt-external-btn-icon {
    font-size: 1rem;
    line-height: 1;
}

.profile-yt-external-note {
    margin: 0;
    max-width: 18rem;
    font-size: 0.72rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
}

.profile-yt-facade-hint--external {
    color: var(--text-muted);
}

.profile-yt-facade-hint--loading {
    margin: 0;
    padding: 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.profile-video-embed-frame.profile-yt-external {
    position: relative;
    cursor: default;
}

.browse-hero-yt-inline-stage .profile-yt-external {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    padding-top: 0;
}

.browse-hero-yt-inline-stage .profile-yt-external .profile-yt-facade-thumb {
    position: absolute;
    inset: 0;
}

.browse-hero-media-player-body--youtube .profile-yt-facade-hint {
    margin: 0;
    padding: 0.35rem 0.55rem 0.5rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* YouTube — tek ortak oynatıcı (tüm videolar) */
.profile-yt-player,
.profile-video-embed-frame.profile-yt-player {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    background: #000;
}

.profile-yt-player--compact {
    max-width: none;
    border-radius: 0;
}

.profile-yt-player-actions {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
}

.profile-yt-player-youtube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.profile-yt-player-youtube:hover {
    background: rgba(0, 0, 0, 0.72);
    border-color: rgba(255, 255, 255, 0.55);
}

.profile-yt-player .profile-yt-facade-play {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    background: transparent;
}

.profile-yt-player .profile-yt-facade-play:hover {
    background: transparent;
}

.browse-hero-yt-inline-stage .profile-yt-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    padding-top: 0;
}

.browse-hero-yt-inline-stage .profile-yt-player .profile-yt-facade-thumb {
    position: absolute;
    inset: 0;
}

.browse-hero-yt-inline-stage .profile-yt-player .hanisin-yt-player-mount,
.profile-yt-player .hanisin-yt-player-mount {
    position: absolute;
    inset: 0;
}

.browse-hero-media-player-body--youtube .profile-yt-facade-hint {
    margin: 0;
    padding: 0.35rem 0.55rem 0.5rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.profile-yt-player .hanisin-yt-player-mount--hd {
    width: 854px;
    height: 480px;
    transform: scale(var(--yt-ghost-scale, 0.72));
    transform-origin: top left;
}

.profile-yt-player .hanisin-yt-player-mount--hd iframe {
    width: 854px;
    height: 480px;
    border: 0;
}

.hanisin-yt-modal-player,
.hanisin-yt-dock-stage .profile-yt-player,
.browse-hero-yt-inline-stage .profile-yt-player,
.profile-video-embed-frame.profile-yt-player .hanisin-yt-player-mount {
    position: absolute;
    inset: 0;
}

/* YouTube modal — büyük ortada oynatıcı */
.hanisin-yt-modal-dialog {
    width: min(960px, calc(100vw - 1.5rem));
}

.hanisin-yt-modal-copy {
    min-width: 0;
}

.hanisin-yt-modal-player,
.hanisin-yt-modal-player .profile-yt-player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    padding-top: 0;
    border-radius: 0;
}

.hanisin-yt-modal-player .profile-yt-player-actions {
    background: rgba(0, 0, 0, 0.48);
}

.hanisin-yt-modal-player .profile-yt-facade-play-icon {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.45rem;
}

.hanisin-yt-modal-player .profile-yt-facade-play-label {
    font-size: 0.95rem;
}

.hanisin-yt-modal-player .profile-yt-player-youtube {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
}

.hanisin-yt-modal-player .hanisin-yt-player-mount--hd {
    width: 854px;
    height: 480px;
    transform: scale(var(--yt-ghost-scale, 0.95));
    transform-origin: top left;
}

.hanisin-yt-modal-player .hanisin-yt-player-mount--hd iframe {
    width: 854px;
    height: 480px;
    border: 0;
}

.browse-hero-card--youtube-open {
    outline: 2px solid rgba(248, 113, 113, 0.42);
    outline-offset: -2px;
}

@media (max-width: 640px) {
    .hanisin-yt-modal {
        padding: 0.65rem;
    }

    .hanisin-yt-modal-dialog {
        width: 100%;
        border-radius: 14px;
    }

    .hanisin-yt-modal-head {
        padding: 0.75rem 0.85rem 0.55rem;
    }

    .hanisin-yt-modal-title {
        font-size: 0.92rem;
    }
}



/* Stable listing tag rows — date alone, chips below (desktop+mobile width settle) */
.browse-hero-tags:has(> .browse-hero-tag--schedule) {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.28rem;
}

.browse-hero-tag--schedule {
    display: inline-flex;
    max-width: 100%;
}

.browse-hero-tag-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.28rem;
    width: 100%;
}

/* Mekan vs müzisyen — görsel alan çerçevesi */
.browse-hero-card--venue .browse-hero-media {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, #d4a853 30%, transparent);
}

.browse-hero-card--musician .browse-hero-media {
    box-shadow: inset 0 0 0 2px color-mix(in srgb, #a855f7 26%, transparent);
}

.browse-hero-card--venue .browse-hero-media img,
.browse-hero-card--venue .browse-hero-media-fallback {
    border-radius: 0 0 6px 6px;
}

.browse-hero-card--musician .browse-hero-media img,
.browse-hero-card--musician .browse-hero-media-fallback {
    border-radius: 0 0 14px 14px;
}
