/* Profil düzenle — iki sütunlu asimetrik yerleşim */

.profile-page .app-main {
    max-width: 1140px;
}

/* Puan / değerlendirme */
.profile-rating {
    margin-top: 0.75rem;
    text-align: center;
}

.profile-rating-stars {
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--border);
}

.profile-rating-stars .on {
    color: #f5b301;
}

.profile-rating-text {
    margin-top: 0.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.profile-rating-text small {
    font-weight: 500;
    color: var(--text-muted);
}

/* Hesap & Güvenlik */
.account-settings-card {
    max-width: 680px;
    margin-bottom: 1rem;
    padding: 1.1rem 1.2rem;
}

.account-settings-title {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: var(--fw-semibold);
    color: var(--text);
}

.account-settings-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.account-settings-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.account-settings-form .form-field span {
    font-size: 0.82rem;
    font-weight: var(--fw-medium);
    color: var(--text-secondary);
}

.account-settings-form .form-field input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--text);
    font-size: 0.9rem;
}

.account-settings-form .btn {
    align-self: flex-start;
    width: auto;
}

.account-settings-note {
    margin: 0 0 0.85rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.account-settings-danger {
    border: 1px solid var(--error-soft);
}

.account-settings-danger .account-settings-title {
    color: #b91c1c;
}

:root[data-theme="dark"] .account-settings-danger .account-settings-title {
    color: #fca5a5;
}

.profile-page-header {
    margin-bottom: 2rem;
}

.profile-page-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 0.4rem;
}

.profile-page-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 680px;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(260px, 30%) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Sol sütun — kimlik kartı */

.profile-sidebar {
    position: sticky;
    top: 5.5rem;
    min-width: 0;
    max-width: 100%;
}

.profile-identity-card {
    overflow: hidden;
    min-width: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.35rem;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.profile-avatar-ring {
    display: inline-flex;
    padding: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c97a 0%, #d4a853 45%, #a67c2e 100%);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 28px rgba(212, 168, 83, 0.3);
}

.profile-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg);
    border: 3px solid var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Fotoğraf varken daire içinde harf/yazı asla görünmesin */
.profile-avatar img:not([hidden]) ~ .profile-avatar-initials,
.profile-avatar img:not([hidden]) ~ .profile-avatar-placeholder {
    display: none !important;
}

.profile-avatar-placeholder {
    font-size: 2.75rem;
    line-height: 1;
}

.profile-avatar-initials {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold-700, #7a6118);
    line-height: 1;
    user-select: none;
    max-width: 88%;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
    position: relative;
    z-index: 0;
}

.profile-avatar-upload {
    margin-top: 0.85rem;
}

.profile-avatar-upload input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.profile-avatar-upload label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.profile-avatar-upload label:hover {
    background: rgba(212, 168, 83, 0.18);
    box-shadow: 0 0 16px rgba(212, 168, 83, 0.18);
}

.profile-photo-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.profile-photo-trigger:hover {
    background: rgba(212, 168, 83, 0.18);
    box-shadow: 0 0 16px rgba(212, 168, 83, 0.18);
}

.profile-photo-trigger:active {
    transform: scale(0.98);
}

.profile-identity-name {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    width: 100%;
    min-width: 0;
}

.profile-identity-name h2 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.35;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.profile-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 999px;
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.25);
}

.profile-verified-badge--indigo {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.14);
    border-color: rgba(129, 140, 248, 0.42);
    box-shadow: 0 0 14px rgba(99, 102, 241, 0.24);
}

.profile-verified-badge--amber {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.24);
}

.profile-verified-badge--slate {
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.14);
    border-color: rgba(148, 163, 184, 0.36);
    box-shadow: none;
}

.profile-verified-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.profile-role-tag {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 0.4rem 0.85rem;
    margin-bottom: 1.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #c4b5fd;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.profile-trust-score {
    margin: 0 auto 1.15rem;
    max-width: 220px;
    text-align: left;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.18);
}

.profile-trust-score-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.profile-trust-score-value {
    margin-top: 0.18rem;
    font-size: 1rem;
    font-weight: var(--fw-bold);
    color: var(--text);
}

.profile-trust-score-value small {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.15rem;
}

.profile-trust-score-track {
    margin-top: 0.38rem;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.22);
    overflow: hidden;
}

.profile-trust-score-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b, #22c55e);
}

.profile-meta-list {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.profile-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.profile-meta-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #8b9fd4;
    opacity: 0.85;
}

.profile-meta-item strong {
    display: block;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.profile-meta-item > div {
    min-width: 0;
    flex: 1;
}

.profile-meta-item span {
    font-size: 0.8rem;
}

/* Sağ sütun — form */

.profile-main {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.profile-main .profile-form-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.profile-main .profile-form-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.profile-main .profile-form-section h3 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.profile-main .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}

.profile-main .form-group {
    margin-bottom: 1.15rem;
}

.profile-main .form-group:last-child {
    margin-bottom: 0;
}

.profile-main .form-group label,
.profile-main .form-group .label-with-counter {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
}

.label-with-counter {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.char-counter {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.38;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.char-counter.is-near-limit {
    opacity: 0.55;
}

.char-counter.is-at-limit {
    opacity: 0.72;
}

.profile-main .form-group input[type="text"],
.profile-main .form-group input[type="email"],
.profile-main .form-group input[type="url"],
.profile-main .form-group select,
.profile-main .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.profile-main .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239aa3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.profile-main .form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.65;
}

.profile-main .form-group input::placeholder,
.profile-main .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.profile-main .form-group input:hover,
.profile-main .form-group select:hover,
.profile-main .form-group textarea:hover {
    border-color: rgba(212, 168, 83, 0.35);
}

.profile-main .form-group input:focus,
.profile-main .form-group select:focus,
.profile-main .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface) !important;
    color: var(--text) !important;
    caret-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.profile-form-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.btn-profile-save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    padding: 0.9rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #e8c97a 0%, #d4a853 48%, #a67c2e 100%);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.28);
    transition: transform 0.15s, box-shadow 0.25s, filter 0.25s;
}

.btn-profile-save:hover {
    filter: brightness(1.08);
    box-shadow: 0 12px 32px rgba(212, 168, 83, 0.35);
}

.btn-profile-save:active {
    transform: scale(0.98);
}

.profile-form-actions .btn-secondary {
    width: auto;
    min-width: 120px;
    padding: 0.9rem 1.5rem;
}

@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-sidebar {
        position: static;
    }

    .profile-main .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-identity-card,
    .profile-main {
        padding: 1.35rem 1.15rem;
        border-radius: 1rem;
    }

    .profile-avatar {
        width: 108px;
        height: 108px;
    }

    .profile-avatar-initials {
        font-size: 1.65rem;
    }
}

/* —— Mekan/müzisyen fotoğraf kırpma — büyük Cropper; telefonda dikey tam ekran —— */
body.venue-crop-open {
    overflow: hidden;
}

.venue-crop-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.venue-crop-modal[hidden] {
    display: none !important;
}

.venue-crop-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.venue-crop-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 480px);
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.venue-crop-stage {
    position: relative;
    width: 100%;
    height: min(88vw, 420px);
    min-height: 320px;
    max-height: 420px;
    flex: 0 0 auto;
    background: #08090c;
    overflow: hidden;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.venue-crop-stage > img#venue-crop-image {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.venue-crop-stage .cropper-container {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    direction: ltr !important;
    font-size: 0;
    line-height: 0;
    touch-action: none !important;
}

.venue-crop-stage .cropper-wrap-box,
.venue-crop-stage .cropper-canvas,
.venue-crop-stage .cropper-drag-box,
.venue-crop-stage .cropper-crop-box,
.venue-crop-stage .cropper-modal {
    touch-action: none !important;
}

.venue-crop-stage .cropper-modal {
    opacity: 0.62;
    background: #08090c;
}

.venue-crop-stage .cropper-view-box {
    border-radius: 50%;
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: -1px;
    box-shadow: 0 0 0 9999px rgba(8, 9, 12, 0.55);
}

.venue-crop-stage .cropper-face {
    border-radius: 50%;
    background: transparent;
    opacity: 1;
}

.venue-crop-stage .cropper-line,
.venue-crop-stage .cropper-point {
    display: none !important;
}

.venue-crop-stage .cropper-dashed {
    opacity: 0.35;
}

.venue-crop-tools {
    position: absolute;
    left: 50%;
    bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.venue-crop-tool {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(8, 9, 12, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, background 0.2s ease;
}

.venue-crop-tool:active {
    transform: scale(0.94);
    background: rgba(255, 255, 255, 0.12);
}

.venue-crop-rotate {
    /* legacy class kept for JS selectors; styled via .venue-crop-tool */
}

.venue-crop-hint {
    margin: 0;
    padding: 0.4rem 0.85rem 0;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    flex: 0 0 auto;
}

.venue-crop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem 0.9rem;
    border-top: 1px solid var(--separator);
    background: var(--surface);
    flex: 0 0 auto;
}

.venue-crop-cancel {
    padding: 0.35rem 0.15rem;
    font-size: 0.86rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.venue-crop-cancel:hover {
    color: var(--text);
}

.venue-crop-confirm {
    width: auto;
    flex: 1;
    min-height: 44px;
    padding: 0.55rem 0.95rem;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow:
        0 4px 16px rgba(212, 168, 83, 0.32),
        0 0 22px rgba(234, 179, 8, 0.14);
}

.venue-crop-confirm[aria-busy="true"] {
    opacity: 0.75;
    pointer-events: none;
}

/* Telefon (dikey): ekranı kapla */
@media (max-width: 768px) {
    .venue-crop-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .venue-crop-backdrop {
        background: #08090c;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .venue-crop-dialog {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: 100dvh;
        height: 100dvh;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }

    .venue-crop-stage {
        flex: 1 1 auto;
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .venue-crop-hint {
        padding: 0.55rem 1rem 0.15rem;
        font-size: 0.78rem;
    }

    .venue-crop-footer {
        padding: 0.85rem 1rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
    }

    .venue-crop-tools {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .venue-crop-confirm {
        font-size: 0.9rem;
        min-height: 48px;
    }
}

/* Müzisyen tanıtım videosu */
.profile-video-embed {
    margin: 1rem 0 0.5rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg, 14px);
    background: var(--surface-2);
}

.profile-video-embed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.profile-video-embed-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.profile-video-embed-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.profile-video-embed-link:hover {
    text-decoration: underline;
}

.profile-video-embed-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.profile-video-embed-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.profile-video-embed-fallback {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: var(--surface);
    border: 1px dashed var(--border);
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.field-hint {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.profile-media-section {
    margin-top: 0.5rem;
}

.profile-media-lead {
    margin-bottom: 0.85rem;
}

.profile-media-tabs {
    display: inline-flex;
    padding: 0.2rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.profile-media-tab {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
}

.profile-media-tab.is-active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.profile-media-panel[hidden] {
    display: none !important;
}

.profile-media-recorder {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface-2);
}

.profile-media-recorder-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
}

.profile-media-recorder-status {
    margin: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.profile-media-audio {
    width: 100%;
    margin-top: 0.35rem;
}

.profile-media-audio--local {
    margin-top: 0.75rem;
}

.profile-media-section .profile-media-embed,
.profile-media-section .profile-video-embed {
    max-width: min(100%, 520px);
}

.profile-media-embed--preview {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.profile-media-preview-host .profile-video-embed-frame {
    padding-top: 56.25%;
}

.media-preview-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.media-preview-sheet[hidden] {
    display: none !important;
}

.media-preview-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.media-preview-sheet-panel {
    position: relative;
    width: min(100%, 520px);
    background: var(--surface);
    border-radius: 18px 18px 0 0;
    padding: 1rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

.media-preview-sheet-close {
    position: absolute;
    top: 0.65rem;
    right: 0.75rem;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
}

.media-preview-sheet-title {
    margin: 0 2rem 0.25rem 0;
    font-size: 1rem;
    font-weight: 800;
}

.media-preview-sheet-subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.media-preview-sheet-body {
    margin-bottom: 0.75rem;
}

.media-preview-sheet-body .media-sheet-frame {
    padding-top: 56.25%;
}

.media-preview-sheet-profile {
    display: inline-block;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

body.media-sheet-open {
    overflow: hidden;
}

/* ===== Herkese açık profil görüntüleme ===== */
.pubprof {
    max-width: 920px;
    margin: 0 auto;
}

.pubprof-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.pubprof-back:hover {
    color: var(--text);
}

.pubprof-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.pubprof-header {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}

.pubprof-header--venue {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
}

.pubprof-avatar {
    flex: 0 0 auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-2);
    border: 2px solid var(--border);
}

.pubprof-avatar--venue {
    border-radius: 18px;
}

.pubprof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pubprof-avatar-emoji {
    font-size: 2.2rem;
}

.pubprof-avatar-initials {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.pubprof-headinfo {
    min-width: 0;
    flex: 1;
}

.pubprof-name-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.pubprof-name-row h1 {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

.pubprof-role-tag {
    display: inline-block;
    margin-top: 0.45rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pubprof-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.6rem;
}

.pubprof-meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pubprof-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1rem;
    align-items: start;
}

.pubprof-section-title {
    font-size: 1rem;
    margin: 0 0 0.7rem;
}

.pubprof-section-title small {
    color: var(--text-muted);
    font-weight: 600;
}

.pubprof-bio {
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}

.pubprof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pubprof-chip {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
}

.pubprof-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.pubprof-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.pubprof-empty {
    color: var(--text-muted);
    margin: 0;
}

.pubprof-reviews {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pubprof-review {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.pubprof-review:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pubprof-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.pubprof-review-stars span,
.profile-rating-stars span {
    color: var(--border);
}

.pubprof-review-stars span.on {
    color: #f5b301;
}

.pubprof-review-body {
    margin: 0.4rem 0 0.3rem;
    line-height: 1.5;
    color: var(--text);
}

.pubprof-review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pubprof-side-note {
    margin: 0.7rem 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

@media (max-width: 720px) {
    .pubprof-grid {
        grid-template-columns: 1fr;
    }

    .pubprof-header {
        flex-direction: column;
        text-align: center;
    }

    .pubprof-name-row,
    .pubprof-meta {
        justify-content: center;
    }
}

/* Public profil — önizleme bandı */
.pubprof-preview-banner {
    margin-bottom: 0.85rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.28);
    background: rgba(201, 162, 39, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.pubprof-availability-note {
    margin: -0.35rem 0 0.85rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.profile-preview-link-wrap {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.profile-preview-link-wrap .btn {
    width: 100%;
}

/* Kompakt müsaitlik — public / önizleme */
.availability-public-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.availability-public-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.availability-public-legend-item::before {
    content: '';
    width: 0.75rem;
    height: 0.5rem;
    border-radius: 2px;
    flex-shrink: 0;
}

.availability-public-legend-item.is-available::before {
    background: var(--surface);
    border: 1px solid rgba(201, 162, 39, 0.42);
    box-shadow: inset 0 0 0 2px var(--surface), inset 0 0 0 3px #c9a227;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
}

.availability-public-legend-item.is-busy::before {
    background: #ef4444;
}

.availability-public-legend-item.is-blocked::before {
    background: #111111;
}

.availability-public-row {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.55rem;
    align-items: center;
    margin-bottom: 0.4rem;
}

.availability-public-day {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.availability-public-track {
    display: flex;
    height: 0.72rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
    background: #fafaf8;
}

.availability-public-seg {
    flex: 1 1 0;
    min-width: 0;
}

.availability-public-seg.is-available {
    background: rgba(201, 162, 39, 0.18);
}

.availability-public-note {
    margin-top: 0.65rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.availability-public-seg.is-busy {
    background: #ef4444;
}

.availability-public-seg.is-blocked {
    background: #111111;
}

.availability-public-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.58rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.availability-public-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.availability-public-chip {
    padding: 0.22rem 0.5rem;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.2;
}

.availability-public-chip.is-busy {
    color: #7a2e3a;
    background: rgba(122, 46, 58, 0.08);
    border: 1px solid rgba(122, 46, 58, 0.18);
}

.availability-public-chip.is-blocked {
    color: #1f2937;
    background: rgba(31, 41, 55, 0.06);
    border: 1px solid rgba(31, 41, 55, 0.14);
}

.venue-location-field .field-hint {
    margin: 0.25rem 0 0.65rem;
    font-size: 0.78rem;
    color: var(--text-muted, #6b7280);
    line-height: 1.45;
}

.venue-location-picker {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface, #fff);
}

.venue-location-map {
    height: 220px;
    width: 100%;
    background: #e8ecef;
}

.venue-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.65rem 0.75rem 0;
}

.venue-location-status {
    margin: 0;
    padding: 0.55rem 0.75rem 0.75rem;
    font-size: 0.74rem;
    color: var(--text-muted, #6b7280);
}

.auth-profile-details-body .venue-location-map {
    height: 180px;
}

.field-optional {
    font-weight: 500;
    color: var(--text-muted, #6b7280);
    font-size: 0.82em;
}

.venue-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.35rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #1a73e8;
    text-decoration: none;
}

.venue-google-link:hover {
    text-decoration: underline;
}

.browse-hero-google-wrap {
    margin-top: 0.15rem;
}

.browse-hero-google-wrap .venue-google-link {
    margin-top: 0;
    font-size: 0.72rem;
}

.job-venue-strip-text .venue-google-link {
    display: inline-block;
    margin-top: 0.2rem;
}

.pubprof-meta .venue-google-link {
    margin-top: 0;
}
/* 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 — kapak + oynat (profil) */
.profile-video-embed-frame.profile-yt-facade {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding-top: 56.25%;
    cursor: pointer;
    overflow: hidden;
}

.profile-yt-facade-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-yt-facade-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

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

.profile-yt-facade-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 999px;
    background: rgba(255, 0, 0, 0.92);
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.profile-yt-facade-play-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.profile-yt-facade-hint {
    margin: 0.45rem 0 0;
    font-size: 0.74rem;
    color: var(--text-muted);
}

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

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

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

/* 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;
}


.profile-video-embed-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.profile-media-delete {
    border: 1px solid rgba(220, 38, 38, 0.35);
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.profile-media-delete:hover:not(:disabled) {
    background: rgba(220, 38, 38, 0.14);
    border-color: rgba(220, 38, 38, 0.55);
}

.profile-media-delete:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.profile-gender-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    padding: 0.22rem 0.62rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.22);
}

.profile-photo-remove {
    display: inline-flex;
    margin-top: 0.45rem;
    border: 0;
    background: transparent;
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.profile-chip-grid--radio .profile-chip--radio input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

.profile-chip--radio {
    position: relative;
}

.profile-chip-section--gender .profile-chip.is-selected span,
.profile-chip-section--gender .profile-chip input:checked + span {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.38);
    background: rgba(237, 233, 254, 0.85);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.availability-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
}

.availability-clear-all {
    flex-shrink: 0;
}

.browse-saved-filter-chip-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.browse-saved-filter-delete-form {
    display: inline-flex;
    margin: 0;
}

.browse-saved-filter-delete {
    border: 0;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.browse-saved-filter-delete:hover {
    background: rgba(220, 38, 38, 0.18);
}

/* Profil form — odak / yazı rengi (light + dark tema) */
.profile-main .form-group input::placeholder,
.profile-main .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.profile-main .form-group input:focus,
.profile-main .form-group select:focus,
.profile-main .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface) !important;
    color: var(--text) !important;
    caret-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.profile-city-select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface) !important;
    color: var(--text) !important;
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.profile-main .form-group input:-webkit-autofill,
.profile-main .form-group input:-webkit-autofill:hover,
.profile-main .form-group input:-webkit-autofill:focus,
.profile-main .form-group textarea:-webkit-autofill,
.profile-main .form-group textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text) !important;
    box-shadow: 0 0 0 1000px var(--surface) inset !important;
    border: 1px solid var(--border) !important;
    transition: background-color 99999s ease-out 0s;
}

.profile-card .form-group input:not([type="file"]):not([type="checkbox"]):not([type="radio"]):focus,
.profile-card .form-group select:focus,
.profile-card .form-group textarea:focus {
    background: var(--surface) !important;
    color: var(--text) !important;
    caret-color: var(--primary);
}

.profile-media-section input[type="url"]:focus {
    background: var(--surface) !important;
    color: var(--text) !important;
    caret-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Enstrüman / tarz chip — mobil dokunmatik seçim */
.profile-chip-grid[data-profile-chip-grid] .profile-chip {
    position: relative;
}

.profile-chip-grid[data-profile-chip-grid] .profile-chip input[data-profile-chip-input] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    pointer-events: auto;
}

.profile-chip-grid[data-profile-chip-grid] .profile-chip span {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Profil chip — seçim sayacı ve 3 doluyken değiştirme */
.profile-chip-section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.profile-chip-counter {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.profile-chip-grid.is-at-max .profile-chip.is-selected span::after {
    content: ' ×';
    font-weight: 800;
    opacity: 0.75;
}

.profile-chip-grid.is-at-max .profile-chip.is-locked span {
    opacity: 0.45;
}

.profile-chip.is-selected span {
    font-weight: 700;
}

.profile-page-header p strong {
    color: var(--primary);
    font-weight: 800;
}

/* Profil — görüntüle / düzenle ayrımı */
.profile-page-header--with-action {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-edit-cta {
    flex-shrink: 0;
    min-height: 42px;
    padding: 0.55rem 1.1rem;
    font-weight: 800;
}

.profile-view-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-view-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
}

.profile-view-block h3 {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.profile-view-dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.profile-view-row {
    display: grid;
    grid-template-columns: minmax(6.5rem, 8rem) 1fr;
    gap: 0.65rem;
    align-items: start;
}

.profile-view-row dt {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
}

.profile-view-row dd {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text);
}

.profile-view-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.profile-view-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--primary-soft);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-view-empty {
    color: var(--text-muted);
    font-style: italic;
}

.profile-view-bio {
    margin: 0;
    line-height: 1.55;
    color: var(--text);
    white-space: pre-wrap;
}

.profile-view-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.profile-complete-alert-link {
    margin-left: 0.35rem;
    font-weight: 800;
    text-decoration: underline;
}

.profile-view-panel .availability-section {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

@media (max-width: 640px) {
    .profile-page-header--with-action {
        align-items: stretch;
    }

    .profile-edit-cta {
        width: 100%;
        justify-content: center;
    }

    .profile-view-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

/* Chip input — JS ile yönetilir, native çift toggle olmasın */
.profile-chip-grid[data-profile-chip-grid] .profile-chip input[data-profile-chip-input],
.profile-chip-grid--radio .profile-chip input[data-profile-radio-input] {
    position: absolute !important;
    inset: auto !important;
    top: 0 !important;
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 0 !important;
    cursor: pointer;
}

.profile-chip-grid[data-profile-chip-grid] .profile-chip,
.profile-chip-grid--radio .profile-chip {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.profile-chip-grid[data-profile-chip-grid] .profile-chip span,
.profile-chip-grid--radio .profile-chip span {
    position: relative;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.profile-chip-grid[data-profile-chip-grid] .profile-chip:active span,
.profile-chip-grid--radio .profile-chip:active span {
    transform: scale(0.97);
}

.profile-chip-grid .profile-chip.is-locked {
    cursor: not-allowed;
    pointer-events: auto;
}

.profile-chip-grid.is-at-max .profile-chip.is-locked span {
    opacity: 0.4;
}

/* Profil — yapışkan Düzenle/Kaydet çubuğu + kompakt tek sayfa */
.profile-page .app-main {
    padding-top: 0.55rem;
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

.profile-shell--compact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.profile-sticky-bar {
    position: sticky;
    top: calc(3.15rem + env(safe-area-inset-top, 0px));
    z-index: 850;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.4rem 0.55rem;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.profile-sticky-bar__title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
}

.profile-sticky-bar__title h1 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.profile-sticky-bar__badge {
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
}

.profile-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.profile-sticky-btn {
    min-height: 34px;
    padding: 0.32rem 0.72rem !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    white-space: nowrap;
}

.profile-sticky-btn--save {
    min-width: 4.6rem;
}

.profile-sticky-btn--ghost {
    padding-inline: 0.55rem !important;
}

.profile-shell-alert {
    margin: 0 !important;
    padding: 0.45rem 0.65rem !important;
    font-size: 0.78rem !important;
    border-radius: 10px;
}

.profile-layout--compact {
    gap: 0.65rem !important;
}

.profile-main--compact .profile-form-section--compact {
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.55rem;
}

.profile-main--compact .profile-form-section--compact h3 {
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
}

.profile-main--compact .profile-form-section--compact:last-of-type {
    margin-bottom: 0;
}

.profile-main--compact .profile-music-panel-head {
    margin-bottom: 0.55rem;
}

.profile-main--compact .profile-music-panel-title {
    font-size: 0.88rem;
}

.profile-main--compact .profile-music-panel-sub,
.profile-main--compact .profile-chip-section-hint {
    font-size: 0.72rem;
    line-height: 1.35;
}

.profile-main--compact .profile-chip-section {
    margin-bottom: 0.65rem;
}

.profile-main--compact .profile-view-panel {
    gap: 0.55rem;
}

.profile-main--compact .profile-view-block {
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
}

.profile-main--compact .profile-view-block h3 {
    margin-bottom: 0.5rem;
    font-size: 0.86rem;
}

.profile-main--compact .profile-view-dl {
    gap: 0.45rem;
}

.profile-main--compact .profile-view-row {
    gap: 0.35rem;
}

.profile-main--compact .availability-section {
    padding: 0.85rem 0.95rem;
}

.profile-main--compact .availability-section h3 {
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .profile-layout--compact .profile-sidebar {
        position: static;
    }

    .profile-layout--compact .profile-identity-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "avatar name"
            "avatar meta";
        gap: 0.35rem 0.75rem;
        align-items: center;
        text-align: left;
        padding: 0.75rem 0.85rem;
    }

    .profile-layout--compact .profile-avatar-ring {
        grid-area: avatar;
        margin: 0;
        padding: 3px;
    }

    .profile-layout--compact .profile-avatar {
        width: 56px;
        height: 56px;
    }

    .profile-layout--compact .profile-avatar-placeholder {
        font-size: 1.45rem;
    }

    .profile-layout--compact .profile-identity-name {
        grid-area: name;
        margin: 0;
        text-align: left;
    }

    .profile-layout--compact .profile-identity-name h2 {
        font-size: 0.95rem;
        margin: 0;
    }

    .profile-layout--compact .profile-role-tag,
    .profile-layout--compact .profile-gender-tag {
        display: none;
    }

    .profile-layout--compact .profile-trust-score,
    .profile-layout--compact .profile-rating {
        display: none;
    }

    .profile-layout--compact .profile-meta-list {
        grid-area: meta;
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.65rem;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .profile-layout--compact .profile-meta-list .profile-meta-item {
        padding: 0;
        border: 0;
        background: transparent;
    }

    .profile-layout--compact .profile-meta-list .profile-meta-item svg {
        display: none;
    }

    .profile-layout--compact .profile-meta-list .profile-meta-item strong {
        font-size: 0.74rem;
        font-weight: 600;
        color: var(--text-muted);
    }

    .profile-layout--compact .profile-meta-list .profile-meta-item span,
    .profile-layout--compact .profile-meta-list .profile-meta-item:nth-child(2),
    .profile-layout--compact .profile-meta-list .profile-meta-item:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .profile-sticky-bar {
        top: calc(env(safe-area-inset-top, 0px) + 0.35rem);
    }

    body:has(.admin-view-as) .profile-sticky-bar {
        top: calc(2.4rem + env(safe-area-inset-top, 0px));
    }
}

@media (max-width: 414px) {
    .profile-sticky-bar {
        top: calc(env(safe-area-inset-top, 0px) + 0.25rem);
        border-radius: 10px;
        padding: 0.35rem 0.45rem;
    }

    html.profile-keyboard-open .profile-sticky-bar {
        position: relative;
        top: auto;
    }

    body:has(.admin-view-as) .profile-sticky-bar {
        top: calc(2.35rem + env(safe-area-inset-top, 0px));
    }

    .profile-page textarea:focus,
    .profile-page input:focus,
    .profile-page select:focus {
        scroll-margin-bottom: min(38vh, 280px);
    }

    .profile-sticky-bar__title h1 {
        font-size: 0.98rem;
    }

    .profile-sticky-btn {
        min-height: 32px;
        padding: 0.28rem 0.58rem !important;
        font-size: 0.74rem !important;
    }
}

/* Eski üst başlık / alt butonlar — kompakt kabukta gizli */
.profile-shell--compact > .profile-page-header,
.profile-shell--compact .profile-view-actions,
.profile-shell--compact .profile-form-actions {
    display: none !important;
}

/* ═══ Premium profil — önizleme = düzenleme (WYSIWYG) ═══ */

.profile-page.profile-page--wide .app-main,
.profile-page .app-main.wide {
    max-width: min(100%, 680px);
    padding-top: 0.5rem;
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

.profile-shell--premium {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* —— pubprof temel (profil sayfasında) —— */
.myprof .pubprof-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 243, 0.96) 100%);
    border: 1px solid rgba(212, 168, 83, 0.16);
    border-radius: 16px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 10px 32px rgba(15, 23, 42, 0.06);
    padding: 1rem 1.05rem;
}

:root[data-theme="dark"] .myprof .pubprof-card {
    background: linear-gradient(165deg, rgba(28, 32, 42, 0.98) 0%, rgba(22, 26, 36, 0.96) 100%);
    border-color: rgba(212, 168, 83, 0.22);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.myprof .pubprof-section-title {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.myprof .pubprof-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.myprof .pubprof-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.68rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 700;
}

.myprof .pubprof-chip--gold {
    border-color: rgba(212, 168, 83, 0.35);
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.95), rgba(252, 240, 210, 0.88));
    color: #7a6118;
}

:root[data-theme="dark"] .myprof .pubprof-chip--gold {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(166, 124, 46, 0.12));
    color: #f0d78c;
}

.myprof .pubprof-chip--city {
    background: var(--primary-soft);
    border-color: rgba(99, 102, 241, 0.2);
}

.myprof .pubprof-bio {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--text);
}

.myprof .pubprof-availability-note {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.myprof .pubprof-role-tag {
    display: inline-flex;
    margin-top: 0.35rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-soft);
}

.myprof .pubprof-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    margin-top: 0.45rem;
}

.myprof .pubprof-meta-item {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* —— Hero —— */
.myprof-hero {
    padding: 1rem !important;
    overflow: hidden;
    position: relative;
}

.myprof-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5.5rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.14), rgba(99, 102, 241, 0.06));
    pointer-events: none;
}

.myprof-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        "avatar body"
        "avatar trust";
    gap: 0.65rem 0.85rem;
    align-items: start;
}

.myprof-avatar-wrap {
    grid-area: avatar;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.myprof .pubprof-avatar,
.myprof-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 3px solid rgba(212, 168, 83, 0.45);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.22);
}

.myprof .pubprof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myprof .pubprof-avatar-emoji {
    font-size: 2rem;
}

.myprof-hero__body {
    grid-area: body;
    min-width: 0;
}

.myprof-trust-card {
    grid-area: trust;
    padding: 0.55rem 0.65rem !important;
    margin: 0;
    align-self: start;
    justify-self: stretch;
}

.myprof-trust-card .profile-trust-score {
    margin: 0;
    text-align: center;
}

.myprof-trust-card .profile-trust-score-label {
    font-size: 0.62rem;
}

.myprof-trust-card .profile-trust-score-value {
    font-size: 1.15rem;
}

.myprof-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.myprof-subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.86rem;
    color: var(--text-muted);
    font-weight: 600;
}

.myprof-rating {
    margin-top: 0.45rem !important;
    text-align: left !important;
}

.myprof-hero-chips {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(212, 168, 83, 0.14);
}

.myprof-avatar-btn {
    border: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.48rem;
    border-radius: 999px;
    cursor: pointer;
}

.myprof-avatar-btn--danger {
    color: #dc2626;
    border-color: rgba(220, 38, 38, 0.25);
}

/* —— Stack —— */
.myprof-stack {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.myprof-card {
    margin: 0;
}

.myprof-card-lead {
    margin: -0.25rem 0 0.65rem;
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.myprof-empty {
    margin: 0;
    font-size: 0.84rem;
    color: var(--text-muted);
    font-style: italic;
}

/* —— Edit alanları (premium inline) —— */
.myprof-input {
    width: 100%;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.55);
    color: var(--text);
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
    font: inherit;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

:root[data-theme="dark"] .myprof-input {
    background: rgba(255, 255, 255, 0.04);
}

.myprof-input--hero {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 0.35rem 0.5rem;
}

.myprof-input--sub {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-muted);
}

.myprof-input:focus,
.myprof-textarea:focus {
    outline: none;
    border-color: rgba(212, 168, 83, 0.45);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.14);
}

.myprof-textarea {
    width: 100%;
    min-height: 5.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    padding: 0.65rem 0.75rem;
    font: inherit;
    line-height: 1.5;
    resize: vertical;
}

.myprof-field label,
.myprof-field .label-with-counter {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.myprof-field {
    margin-bottom: 0.55rem;
}

.myprof-field:last-child {
    margin-bottom: 0;
}

/* Düzenle modunda chip/form sıkı */
.myprof--edit .profile-music-panel-head {
    display: none;
}

.myprof--edit .profile-music-panel {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.myprof--edit .profile-chip-section {
    margin-bottom: 0.55rem;
}

.myprof--edit .profile-chip-section-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.myprof--edit .profile-chip-section-hint {
    font-size: 0.68rem;
    margin-top: 0.1rem;
}

.myprof--edit .profile-media-section > h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.myprof--edit .profile-media-lead,
.myprof--edit .field-hint {
    font-size: 0.72rem;
}

.myprof--edit .availability-section {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.myprof--edit .availability-section h3 {
    display: none;
}

.myprof--edit .availability-section-desc {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
}

/* Sticky bar premium */
.profile-sticky-bar--premium {
    border-color: rgba(212, 168, 83, 0.22);
    background: color-mix(in srgb, var(--surface) 92%, rgba(212, 168, 83, 0.08));
}

.profile-sticky-bar__badge--live {
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
}

:root[data-theme="dark"] .profile-sticky-bar__badge--live {
    color: #86efac;
    background: rgba(34, 197, 94, 0.16);
}

/* Görüntüle modu — form kutu görünümü yok */
.myprof--view .myprof-form {
    display: contents;
}

@media (max-width: 520px) {
    .myprof-hero__inner {
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "avatar body"
            "trust trust";
    }

    .myprof-trust-card {
        justify-self: stretch;
    }

    .myprof .pubprof-avatar,
    .myprof-avatar {
        width: 76px;
        height: 76px;
    }

    .myprof-name {
        font-size: 1.05rem;
    }
}

/* ═══ Profil — bütünleşik tek sayfa (tatlı / premium) ═══ */

.profile-shell--premium {
    gap: 0;
    padding: 0;
}

.myprof-sheet {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(255, 252, 245, 0.98) 0%,
        rgba(255, 255, 255, 0.99) 28%,
        rgba(252, 250, 255, 0.98) 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 48px rgba(166, 124, 46, 0.1),
        0 4px 16px rgba(15, 23, 42, 0.04);
}

:root[data-theme="dark"] .myprof-sheet {
    background: linear-gradient(180deg,
        rgba(32, 28, 24, 0.98) 0%,
        rgba(24, 26, 34, 0.99) 40%,
        rgba(20, 22, 30, 1) 100%);
    border-color: rgba(212, 168, 83, 0.18);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.myprof-sheet__top {
    position: sticky;
    top: calc(3.1rem + env(safe-area-inset-top, 0px));
    z-index: 860;
}

.myprof-sheet__bar.profile-sticky-bar {
    position: static;
    margin: 0;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.12);
    background: rgba(255, 252, 245, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    padding: 0.5rem 0.85rem;
}

:root[data-theme="dark"] .myprof-sheet__bar.profile-sticky-bar {
    background: rgba(28, 26, 32, 0.9);
    border-bottom-color: rgba(212, 168, 83, 0.1);
}

.myprof-sheet__alert {
    margin: 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    padding: 0.4rem 0.85rem !important;
    font-size: 0.76rem !important;
}

/* İç kartları kapat — tek yüzey */
.myprof-sheet .pubprof-card,
.myprof-sheet .myprof-card {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.myprof-sheet__content {
    padding: 0 0.85rem 0.9rem;
}

/* —— Üst hero (sayfanın parçası) —— */
.myprof-head {
    padding: 0.85rem 0 0.75rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.07), rgba(167, 139, 250, 0.04));
    margin: 0 -0.85rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.myprof-head__row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.myprof-avatar-wrap {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.myprof-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 2.5px solid rgba(212, 168, 83, 0.5);
    box-shadow: 0 6px 18px rgba(212, 168, 83, 0.2);
}

.myprof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.myprof-avatar-emoji {
    font-size: 1.65rem;
}

.myprof-avatar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
}

.myprof-avatar-btn {
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 168, 83, 0.2);
    color: var(--text);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.18rem 0.42rem;
    border-radius: 999px;
    cursor: pointer;
}

.myprof-avatar-btn--muted {
    color: var(--text-muted);
}

.myprof-head__main {
    flex: 1;
    min-width: 0;
    padding-top: 0.1rem;
}

.myprof-name-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.myprof-name {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.myprof-subtitle {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.myprof-head__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.45rem;
}

.myprof-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.48rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(212, 168, 83, 0.12);
}

.myprof-pill--role {
    color: #7c5e12;
    background: rgba(255, 244, 214, 0.85);
    border-color: rgba(212, 168, 83, 0.25);
}

.myprof-pill--trust {
    color: #5b4ab8;
    background: rgba(237, 233, 254, 0.75);
    border-color: rgba(167, 139, 250, 0.2);
}

.myprof-pill--soft {
    background: transparent;
    border-color: transparent;
    padding-inline: 0.2rem;
}

.myprof-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.myprof-rating-stars {
    color: #e8c97a;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.myprof-rating-stars .on {
    color: #f5b301;
}

.myprof-rating-val {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.myprof-head__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(212, 168, 83, 0.15);
}

.myprof-tag {
    display: inline-flex;
    padding: 0.26rem 0.58rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(212, 168, 83, 0.14);
}

.myprof-tag--gold {
    color: #7a6118;
    background: linear-gradient(135deg, rgba(255, 248, 228, 0.95), rgba(252, 236, 200, 0.8));
    border-color: rgba(212, 168, 83, 0.28);
}

/* —— Bölümler: ince ayırıcı, ayrı kutu yok —— */
.myprof-section {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}

.myprof-section--last {
    border-bottom: 0;
    padding-bottom: 0.2rem;
}

.myprof-section__title {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(122, 97, 24, 0.75);
}

:root[data-theme="dark"] .myprof-section__title {
    color: rgba(240, 215, 140, 0.75);
}

.myprof-section__hint {
    margin: -0.25rem 0 0.45rem;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.myprof-bio {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.58;
    color: var(--text);
}

.myprof-empty {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Düzenleme alanları — yüzeye gömülü */
.myprof-input,
.myprof-textarea {
    width: 100%;
    border: 1px solid rgba(212, 168, 83, 0.12);
    background: rgba(255, 255, 255, 0.45);
    color: var(--text);
    border-radius: 10px;
    padding: 0.42rem 0.55rem;
    font: inherit;
}

.myprof-input--hero {
    font-size: 1rem;
    font-weight: 800;
    border-color: transparent;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.myprof-input--sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    border-color: transparent;
    background: transparent;
    padding-left: 0;
}

.myprof-input:focus,
.myprof-textarea:focus {
    outline: none;
    border-color: rgba(212, 168, 83, 0.35);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.myprof-textarea {
    min-height: 4.5rem;
    resize: vertical;
    line-height: 1.5;
}

.myprof-field label,
.myprof-field .label-with-counter {
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.myprof--edit .profile-music-panel-head {
    display: none;
}

.myprof--edit .profile-music-panel {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.myprof--edit .profile-chip-section {
    margin-bottom: 0.5rem;
}

.myprof--edit .profile-media-section {
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.myprof--edit .profile-media-section > h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(122, 97, 24, 0.75);
    margin: 0 0 0.45rem;
}

.myprof--edit .availability-section {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.myprof--edit .availability-section h3,
.myprof-section--media .profile-media-section h3:first-child {
    margin-top: 0;
}

.myprof--edit .availability-section h3 {
    display: none;
}

.myprof--view .myprof-form {
    display: contents;
}

/* Eski ayrık kart boşluklarını sıfırla */
.myprof-sheet .myprof-stack {
    gap: 0;
}

.myprof-sheet .myprof-hero,
.myprof-sheet .myprof-hero-chips,
.myprof-sheet .myprof-trust-card {
    display: none;
}

@media (max-width: 414px) {
    .myprof-sheet__top {
        top: calc(2.85rem + env(safe-area-inset-top, 0px));
    }

    .myprof-sheet {
        border-radius: 16px;
    }

    .myprof-avatar {
        width: 64px;
        height: 64px;
    }

    .myprof-name {
        font-size: 1rem;
    }
}

/* ═══ Profil düzeni — fotoğraf / toolbar çakışması düzeltmesi ═══ */

.myprof-sheet {
    overflow: visible !important;
}

.myprof-sheet .profile-sticky-bar:not(.myprof-toolbar) {
    display: none;
}

/* Sadece ince toolbar yapışır — fotoğraf altında kalır */
.myprof-sheet__toolbar {
    position: sticky;
    top: calc(3.1rem + env(safe-area-inset-top, 0px));
    z-index: 900;
    background: rgba(255, 252, 245, 0.96);
    border-bottom: 1px solid rgba(212, 168, 83, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .myprof-sheet__toolbar {
    background: rgba(24, 26, 34, 0.96);
    border-bottom-color: rgba(212, 168, 83, 0.12);
}

.myprof-sheet__top {
    position: static !important;
    z-index: auto !important;
}

.myprof-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.45rem 0.9rem;
}

.myprof-toolbar__title {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}

.myprof-toolbar__label {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.myprof-toolbar__badge {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
    color: var(--primary);
    background: var(--primary-soft);
    white-space: nowrap;
}

.myprof-toolbar__badge--live {
    color: #15803d;
    background: rgba(34, 197, 94, 0.12);
}

.myprof-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

/* Hero — toolbar'ın ALTINDA, ortalı, premium */
.myprof-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 !important;
    padding: 1.1rem 0.9rem 0.95rem !important;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.myprof-head__avatar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
}

.myprof-avatar-ring {
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c97a, #d4a853, #a67c2e);
    box-shadow: 0 10px 28px rgba(212, 168, 83, 0.28);
}

.myprof-head .myprof-avatar {
    width: 84px !important;
    height: 84px !important;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow: none;
}

.myprof-head__info {
    width: 100%;
    max-width: 360px;
    margin-top: 0.65rem;
}

.myprof-head__row {
    display: none;
}

.myprof-name-row {
    justify-content: center;
}

.myprof-name {
    font-size: 1.15rem !important;
}

.myprof-head__meta {
    justify-content: center;
    margin-top: 0.5rem;
}

.myprof-rating {
    justify-content: center;
}

.myprof-head__tags {
    justify-content: center;
    width: 100%;
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px dashed rgba(212, 168, 83, 0.16);
}

.myprof-avatar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.myprof-avatar-btn {
    font-size: 0.68rem;
    padding: 0.28rem 0.62rem;
}

.myprof-field--name,
.myprof-field--title {
    text-align: left;
}

.myprof-input--hero {
    text-align: center;
    font-size: 1.08rem !important;
}

.myprof-input--sub {
    text-align: center;
}

/* Gövde — toolbar/hero'dan ayrı kayar */
.myprof-sheet__body {
    padding: 0 0.9rem 1rem;
    position: relative;
    z-index: 0;
}

.myprof-sheet__content {
    padding: 0 !important;
}

.myprof-section {
    padding: 0.75rem 0;
}

.myprof-section:first-child {
    padding-top: 0.55rem;
}

@media (max-width: 414px) {
    .myprof-sheet__toolbar {
        top: calc(2.85rem + env(safe-area-inset-top, 0px));
    }

    .myprof-head {
        padding-top: 0.95rem !important;
    }

    .myprof-head .myprof-avatar {
        width: 76px !important;
        height: 76px !important;
    }
}

/* profile-modes-deployed */

/* ═══ Görüntüle / Düzenle modları ═══ */

.myprof-sheet--view .myprof-head {
    background: linear-gradient(180deg, rgba(212, 168, 83, 0.05) 0%, transparent 85%);
}

.myprof-sheet--view::before {
    content: 'Başkalarının gördüğü profil';
    display: block;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #15803d;
    padding: 0.35rem 0.75rem 0;
}

.myprof-sheet--edit {
    box-shadow:
        0 0 0 2px rgba(212, 168, 83, 0.28),
        0 20px 48px rgba(166, 124, 46, 0.12) !important;
}

.myprof-sheet--edit::before {
    content: 'Düzenleme modu — kaydedene kadar yayınlanmaz';
    display: block;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9a6700;
    padding: 0.35rem 0.75rem 0;
}

:root[data-theme="dark"] .myprof-sheet--edit::before {
    color: #f0d78c;
}

.myprof-toolbar__badge--edit {
    color: #9a6700;
    background: rgba(251, 191, 36, 0.18);
}

.myprof-edit-banner {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0.55rem 0 0.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px dashed rgba(212, 168, 83, 0.35);
    font-size: 0.78rem;
    color: var(--text);
}

.myprof-edit-banner strong {
    font-size: 0.82rem;
    color: #9a6700;
}

.myprof-edit-banner em {
    font-style: normal;
    font-weight: 800;
    color: var(--primary);
}

.myprof-edit-hint {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Canlı önizleme kutusu */
.myprof-live-preview {
    margin-bottom: 0.75rem;
}

.myprof-live-preview__eyebrow {
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #15803d;
    margin-bottom: 0.35rem;
    text-align: center;
}

.myprof-live-preview__card {
    padding: 0.75rem 0.8rem;
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(250, 248, 243, 0.88));
    border: 1px solid rgba(34, 197, 94, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

:root[data-theme="dark"] .myprof-live-preview__card {
    background: rgba(30, 32, 40, 0.9);
    border-color: rgba(34, 197, 94, 0.2);
}

.myprof-live-preview__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}

.myprof-live-preview__title {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-muted);
}

.myprof-live-preview__title[hidden] {
    display: none;
}

.myprof-live-preview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
    justify-content: center;
    margin-top: 0.55rem;
}

.myprof-live-preview__empty {
    margin: 0.45rem 0 0;
    text-align: center;
    font-size: 0.76rem;
    color: var(--text-muted);
    font-style: italic;
}

.myprof-live-preview__empty[hidden] {
    display: none;
}

.myprof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

/* Düzenleme bölümleri */
.myprof-section--edit {
    padding: 0.75rem 0.65rem;
    margin: 0.45rem 0;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.16);
}

.myprof-section__title--edit {
    color: #9a6700 !important;
}

.myprof-section__title--edit::before {
    content: '✎ ';
    opacity: 0.7;
}

.myprof--view .myprof-section--edit,
.myprof--view .myprof-edit-banner,
.myprof--view .myprof-live-preview,
.myprof--view .myprof-edit-hint {
    display: none !important;
}

.myprof-role-tag {
    display: inline-flex;
    margin-top: 0.35rem;
}

.myprof-tag--city {
    background: var(--primary-soft);
    border-color: rgba(99, 102, 241, 0.2);
}

/* profile-music-premium-deployed */

/* Canlı önizleme — isim yok, sadece müzik */
.myprof-live-preview__card {
    padding: 0.7rem 0.75rem 0.8rem;
}

.myprof-music-display {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.myprof-music-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.myprof-music-group {
    padding: 0.55rem 0.6rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

:root[data-theme="dark"] .myprof-music-group {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.myprof-music-group--instruments {
    border-color: rgba(212, 168, 83, 0.28);
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.1), rgba(255, 255, 255, 0.5));
}

.myprof-music-group--genres {
    border-color: rgba(139, 92, 246, 0.22);
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.12), rgba(255, 255, 255, 0.5));
}

:root[data-theme="dark"] .myprof-music-group--instruments {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(30, 32, 40, 0.7));
}

:root[data-theme="dark"] .myprof-music-group--genres {
    background: linear-gradient(145deg, rgba(167, 139, 250, 0.1), rgba(30, 32, 40, 0.7));
}

.myprof-music-group__label {
    display: block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.myprof-tag--violet {
    background: rgba(167, 139, 250, 0.18);
    border-color: rgba(139, 92, 246, 0.28);
    color: #6d28d9;
}

:root[data-theme="dark"] .myprof-tag--violet {
    color: #c4b5fd;
}

/* Müzik düzenleme — premium kartlar */
.profile-music-panel--premium .profile-music-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.profile-music-identity {
    display: grid;
    gap: 0.65rem;
    padding: 0.65rem 0.7rem;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
}

.profile-city-field--inline .profile-city-label {
    margin-bottom: 0.25rem;
}

.profile-music-duo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 560px) {
    .profile-music-duo {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        align-items: stretch;
    }
}

.profile-chip-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0.65rem 0.65rem 0.7rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 10px 24px rgba(15, 23, 42, 0.05);
    background: #fff;
}

:root[data-theme="dark"] .profile-chip-card {
    background: rgba(28, 30, 38, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.profile-chip-section--instrument.profile-chip-card {
    background: linear-gradient(165deg, rgba(255, 251, 235, 0.95), rgba(255, 255, 255, 0.98));
    border-color: rgba(212, 168, 83, 0.32);
}

.profile-chip-section--genre.profile-chip-card {
    background: linear-gradient(165deg, rgba(245, 243, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-color: rgba(139, 92, 246, 0.24);
}

:root[data-theme="dark"] .profile-chip-section--instrument.profile-chip-card {
    background: linear-gradient(165deg, rgba(66, 48, 12, 0.45), rgba(28, 30, 38, 0.95));
}

:root[data-theme="dark"] .profile-chip-section--genre.profile-chip-card {
    background: linear-gradient(165deg, rgba(46, 16, 101, 0.35), rgba(28, 30, 38, 0.95));
}

.profile-chip-card__head {
    margin-bottom: 0.45rem;
}

.profile-chip-card__icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
}

.profile-chip-section--instrument .profile-chip-section-title-row,
.profile-chip-section--genre .profile-chip-section-title-row {
    align-items: center;
}

.profile-chip-section--instrument .profile-chip-counter {
    color: #9a6700;
    background: rgba(251, 191, 36, 0.2);
}

.profile-chip-section--genre .profile-chip-counter {
    color: #6d28d9;
    background: rgba(167, 139, 250, 0.22);
}

.profile-chip-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-height: 2.1rem;
    align-items: center;
    padding: 0.45rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

:root[data-theme="dark"] .profile-chip-showcase {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.12);
}

.profile-chip-showcase-empty {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-style: italic;
}

.profile-chip-picked {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    animation: chipPickedIn 0.22s ease;
}

.profile-chip-section--instrument .profile-chip-picked {
    color: #92400e;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.22);
}

.profile-chip-section--genre .profile-chip-picked {
    color: #5b21b6;
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    box-shadow: 0 2px 8px rgba(109, 40, 217, 0.18);
}

@keyframes chipPickedIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(2px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.profile-chip-card__picker {
    margin-top: auto;
}

.profile-chip-card__picker-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.profile-chip-section--instrument .profile-chip-grid .profile-chip.is-selected span,
.profile-chip-section--genre .profile-chip-grid .profile-chip.is-selected span {
    font-weight: 700;
}

.profile-chip-section--instrument .profile-chip.is-selected span {
    background: rgba(251, 191, 36, 0.22);
    border-color: rgba(212, 168, 83, 0.45);
    color: #92400e;
}

.profile-chip-section--genre .profile-chip.is-selected span {
    background: rgba(167, 139, 250, 0.2);
    border-color: rgba(139, 92, 246, 0.35);
    color: #5b21b6;
}

.myprof--edit .profile-chip-card .profile-chip-section-hint {
    font-size: 0.7rem;
    line-height: 1.35;
}

.myprof--edit .profile-music-duo .profile-chip-grid {
    max-height: 11.5rem;
    overflow-y: auto;
    padding-right: 0.15rem;
    -webkit-overflow-scrolling: touch;
}

.myprof--edit .profile-chip-section--gender {
    margin-bottom: 0;
}

.myprof--edit .profile-music-identity {
    padding: 0.55rem 0.6rem;
}

/* profile-inline-edit-deployed */

/* Görüntüle ve düzenle aynı iskelet */
.myprof-sheet--view::before,
.myprof-sheet--edit::before {
    display: none !important;
}

.myprof--inline-edit .myprof-edit-banner,
.myprof--inline-edit .myprof-live-preview,
.myprof--inline-edit .myprof-edit-hint {
    display: none !important;
}

.myprof-section--editable {
    position: relative;
}

.myprof-section--editable::after {
    content: '';
    position: absolute;
    inset: -0.2rem -0.15rem;
    border-radius: 14px;
    border: 1px dashed rgba(212, 168, 83, 0.22);
    pointer-events: none;
}

.myprof-sheet--edit {
    box-shadow:
        0 0 0 1px rgba(212, 168, 83, 0.18),
        0 16px 40px rgba(15, 23, 42, 0.08) !important;
}

/* Hero — yerinde isim / sahne adı */
.myprof-head--editing .myprof-name-row {
    justify-content: center;
    width: 100%;
}

.myprof-inline-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: center;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
}

.myprof-inline-input:focus {
    outline: none;
    box-shadow: 0 2px 0 rgba(212, 168, 83, 0.45);
}

.myprof-inline-input--name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.myprof-inline-input--title {
    min-width: 8rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: left;
}

.myprof-inline-input--url {
    width: 100%;
    text-align: left;
    font-size: 0.88rem;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

:root[data-theme="dark"] .myprof-inline-input--url {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.myprof-pill--edit {
    padding: 0.2rem 0.45rem;
    gap: 0.25rem;
}

.myprof-pill--title {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.myprof-pill__icon {
    flex-shrink: 0;
}

/* Biyografi — metin gibi */
.myprof-textarea--inline {
    width: 100%;
    min-height: 5.5rem;
    border: 0;
    background: transparent;
    resize: vertical;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
    padding: 0;
}

.myprof-textarea--inline:focus {
    outline: none;
    box-shadow: 0 2px 0 rgba(212, 168, 83, 0.35);
}

.myprof-field__meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.25rem;
}

.myprof-char-count {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.myprof-empty--inline {
    font-size: 0.8rem;
    margin: 0.2rem 0 0.45rem;
}

/* Müzik — görünen + seçici aynı bölümde */
.myprof-music-inline__display {
    margin-bottom: 0.55rem;
}

.myprof-music-inline__display .myprof-music-display {
    margin-bottom: 0;
}

.myprof-music-inline__picker {
    padding-top: 0.45rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

:root[data-theme="dark"] .myprof-music-inline__picker {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.profile-music-panel--inline {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.profile-music-panel--inline .profile-music-identity {
    padding: 0.5rem 0.55rem;
    margin-bottom: 0.45rem;
}

.profile-music-panel--inline .profile-chip-card {
    box-shadow: none;
}

.profile-music-panel--inline .profile-chip-card__picker-label {
    display: none;
}

.myprof--inline-edit .profile-chip-section--edit,
.myprof--inline-edit .myprof-section__title--edit {
    all: unset;
}

/* Tanıtım inline */
.profile-media-section--inline {
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.profile-media-section--inline > h3 {
    display: none;
}

.profile-media-lead--inline {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
}

.profile-media-inline-preview {
    margin-top: 0.65rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.myprof-toolbar__badge--edit {
    font-size: 0.62rem;
}

/* profile-chip-flow-deployed */

.profile-chip-flow {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.profile-chip-flow__group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profile-chip-flow__label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.profile-chip-grid--selected,
.profile-chip-grid--rest {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    max-height: none !important;
    overflow: visible !important;
}

.profile-chip-grid--selected .profile-chip,
.profile-chip-grid--rest .profile-chip {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.profile-chip-grid--selected .profile-chip span,
.profile-chip-grid--rest .profile-chip span {
    min-height: 2rem;
    padding: 0.32rem 0.72rem;
    white-space: nowrap;
}

.profile-chip-grid--selected .profile-chip.is-selected span {
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-chip-section--instrument .profile-chip-grid--selected .profile-chip.is-selected span {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    border-color: rgba(212, 168, 83, 0.5);
    color: #92400e;
}

.profile-chip-section--genre .profile-chip-grid--selected .profile-chip.is-selected span {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border-color: rgba(139, 92, 246, 0.4);
    color: #5b21b6;
}

.profile-chip-grid--rest .profile-chip span {
    opacity: 0.92;
}

.profile-chip-flow__empty {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.2rem 0.1rem;
}

.profile-chip-flow__empty[hidden] {
    display: none;
}

.profile-chip-flow__group--selected {
    padding: 0.45rem 0.5rem;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px dashed rgba(0, 0, 0, 0.08);
}

.profile-chip-section--instrument .profile-chip-flow__group--selected {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(212, 168, 83, 0.22);
}

.profile-chip-section--genre .profile-chip-flow__group--selected {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

:root[data-theme="dark"] .profile-chip-flow__group--selected {
    background: rgba(0, 0, 0, 0.18);
    border-color: rgba(255, 255, 255, 0.1);
}

.myprof--inline-edit .profile-music-duo .profile-chip-grid--selected,
.myprof--inline-edit .profile-music-duo .profile-chip-grid--rest {
    padding: 0;
}

.myprof--inline-edit .profile-music-duo .profile-chip-grid {
    max-height: none;
    overflow: visible;
}

@media (max-width: 559px) {
    .profile-music-duo {
        grid-template-columns: 1fr !important;
    }
}

/* profile-dual-design-deployed */

/* ═══ Ortak kabuk ═══ */
.profile-shell--dual {
    max-width: 520px;
    margin: 0 auto;
    padding: 0 0.5rem 1.25rem;
}

.profile-shell--showcase .myprof-sheet--view {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.95));
    border: 1px solid rgba(212, 168, 83, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 16px 40px rgba(15, 23, 42, 0.07);
}

:root[data-theme="dark"] .profile-shell--showcase .myprof-sheet--view {
    background: linear-gradient(165deg, rgba(32, 34, 42, 0.98), rgba(24, 26, 32, 0.96));
    border-color: rgba(212, 168, 83, 0.15);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.profile-shell--editing .myprof-sheet--edit {
    border-radius: 14px;
    background: var(--surface, #f8f9fb);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
}

:root[data-theme="dark"] .profile-shell--editing .myprof-sheet--edit {
    background: rgba(22, 24, 30, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ═══ Toolbar ═══ */
.myprof-toolbar--dual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.55rem;
}

.myprof-toolbar__mode {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.myprof-toolbar__mode--showcase {
    background: linear-gradient(90deg, #92400e, #b45309);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

:root[data-theme="dark"] .myprof-toolbar__mode--showcase {
    background: linear-gradient(90deg, #fbbf24, #f0d78c);
    -webkit-background-clip: text;
    background-clip: text;
}

.myprof-toolbar__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.04);
}

.myprof-toolbar__save {
    margin-left: auto;
    min-width: 4.5rem;
}

.myprof-toolbar__actions {
    display: flex;
    gap: 0.35rem;
    margin-left: auto;
}

.myprof-sheet__alert--compact {
    margin: 0.35rem 0.5rem 0;
    padding: 0.4rem 0.55rem;
    font-size: 0.78rem;
}

.myprof-sheet--view::before,
.myprof-sheet--edit::before {
    display: none !important;
}

/* ═══ GÖRÜNÜM — şık showcase ═══ */
.myprof-head--showcase {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem 0.65rem;
    text-align: left;
}

.myprof-head--showcase .myprof-head__avatar-block {
    flex-shrink: 0;
}

.myprof-head--showcase .myprof-avatar-ring {
    padding: 2px;
    background: linear-gradient(135deg, #fbbf24, #d4a853, #b8860b);
    border-radius: 50%;
}

.myprof-head--showcase .myprof-avatar {
    width: 68px !important;
    height: 68px !important;
}

.myprof-head--showcase .myprof-head__info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.myprof-showcase-identity .myprof-name-row {
    justify-content: flex-start;
    gap: 0.35rem;
}

.myprof-head--showcase .myprof-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0;
}

.myprof-showcase-subtitle {
    margin: 0.12rem 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.myprof-showcase-meta {
    margin: 0.28rem 0 0;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
}

.myprof-showcase-meta__dot {
    opacity: 0.45;
}

.myprof-showcase-rating {
    color: #b45309;
    font-weight: 700;
}

.myprof-showcase-foot {
    margin: 0.35rem 0 0;
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.85;
}

.myprof--showcase {
    padding: 0 0.75rem 0.85rem;
}

.myprof-showcase-block {
    padding: 0.55rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

:root[data-theme="dark"] .myprof-showcase-block {
    border-top-color: rgba(255, 255, 255, 0.06);
}

.myprof-showcase-block:first-child {
    border-top: 0;
    padding-top: 0.15rem;
}

.myprof-showcase-bio {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text);
}

.myprof-showcase-block__title {
    margin: 0 0 0.4rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.myprof-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}

.myprof-showcase-tag {
    display: inline-flex;
    padding: 0.22rem 0.58rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--text);
}

.myprof-showcase-tag--city {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.12);
}

.myprof-showcase-tag--gold {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(212, 168, 83, 0.28);
    color: #92400e;
}

.myprof-showcase-tag--violet {
    background: rgba(167, 139, 250, 0.14);
    border-color: rgba(139, 92, 246, 0.22);
    color: #6d28d9;
}

:root[data-theme="dark"] .myprof-showcase-tag--gold {
    color: #fbbf24;
}

:root[data-theme="dark"] .myprof-showcase-tag--violet {
    color: #c4b5fd;
}

.myprof-showcase-block--media {
    padding-top: 0.65rem;
}

.myprof-showcase-block--availability .availability-section,
.myprof-showcase-block--availability .availability-section h3,
.myprof-showcase-block--availability .availability-section-desc {
    display: none;
}

.myprof-showcase-block--availability .availability-public-grid,
.myprof-showcase-block--availability [class*="availability"] {
    font-size: 0.72rem;
}

.myprof--showcase .myprof-role-tag,
.myprof--showcase .myprof-pill,
.myprof--showcase .myprof-rating,
.myprof--showcase .myprof-section,
.myprof--showcase .myprof-empty {
    display: none;
}

/* ═══ DÜZENLEME — kompakt studio ═══ */
.myprof-head--compact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.65rem 0.45rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

:root[data-theme="dark"] .myprof-head--compact {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.myprof-head--compact .myprof-avatar {
    width: 48px !important;
    height: 48px !important;
}

.myprof-head--compact .myprof-avatar-ring {
    background: transparent;
    padding: 0;
}

.myprof-head--compact .myprof-head__info {
    flex: 1;
    min-width: 0;
}

.myprof-edit-identity {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.myprof-edit-label {
    margin: 0.35rem 0 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.myprof-edit-label:first-child {
    margin-top: 0;
}

.myprof-edit-hint {
    margin: 0 0 0.15rem;
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-muted);
}

.myprof-head--compact .myprof-inline-input--name {
    font-size: 0.95rem;
    font-weight: 800;
    text-align: left;
    box-shadow: none;
}

.myprof-head--compact .myprof-inline-input--name:focus {
    box-shadow: 0 1px 0 rgba(212, 168, 83, 0.5);
}

.myprof-head--compact .myprof-inline-input--title {
    font-size: 0.75rem;
    text-align: left;
    color: var(--text-muted);
}

.myprof-avatar-actions--compact {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.2rem;
}

.myprof-avatar-actions--compact .myprof-avatar-btn {
    padding: 0.15rem 0.4rem;
    font-size: 0.65rem;
    min-height: auto;
}

.myprof--studio {
    padding: 0.45rem 0.55rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.myprof-edit-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 0.5rem 0.55rem 0.55rem;
}

:root[data-theme="dark"] .myprof-edit-card {
    background: rgba(30, 32, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

.myprof-edit-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
}

.myprof-edit-card__label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9a6700;
}

.myprof-edit-card__hint {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.myprof-textarea--studio {
    width: 100%;
    min-height: 3.5rem;
    border: 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
    line-height: 1.45;
    resize: vertical;
}

:root[data-theme="dark"] .myprof-textarea--studio {
    background: rgba(0, 0, 0, 0.2);
}

.myprof-section--editable::after {
    display: none !important;
}

.myprof--studio .profile-music-panel--inline {
    margin: 0;
}

.myprof--studio .profile-music-identity {
    padding: 0.4rem 0.45rem;
    margin-bottom: 0.35rem;
    border-radius: 8px;
}

.myprof--studio .profile-music-duo {
    gap: 0.4rem;
}

.myprof--studio .profile-chip-card {
    padding: 0.45rem;
    border-radius: 10px;
    box-shadow: none;
}

.myprof--studio .profile-chip-section-hint {
    font-size: 0.62rem !important;
    margin: 0 !important;
}

.myprof--studio .profile-chip-grid--selected .profile-chip span,
.myprof--studio .profile-chip-grid--rest .profile-chip span {
    min-height: 1.75rem;
    padding: 0.22rem 0.5rem;
    font-size: 0.7rem;
}

.myprof--studio .profile-chip-flow__label {
    font-size: 0.58rem;
}

.myprof--studio .profile-media-section--inline {
    margin: 0;
}

.myprof--studio .profile-media-lead--inline {
    display: none;
}

.myprof--studio .profile-media-tabs {
    margin-bottom: 0.35rem;
}

.myprof--studio .profile-media-tab {
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
}

.myprof--studio .availability-section {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.myprof--studio .availability-section h3,
.myprof--studio .availability-section-desc {
    display: none;
}

.myprof--studio .availability-editor {
    font-size: 0.68rem;
}

.myprof--studio .myprof-empty--inline {
    display: none;
}

@media (max-width: 400px) {
    .profile-shell--dual {
        padding: 0 0.35rem 1rem;
    }

    .myprof-head--showcase .myprof-avatar {
        width: 58px !important;
        height: 58px !important;
    }
}

/* profile-availability-fix-deployed */

/* Müsaitlik — dar sütunda harf taşması düzeltmesi */
.myprof-showcase-block--availability .availability-public {
    overflow: hidden;
}

.myprof-showcase-block--availability [class*="availability"] {
    font-size: inherit;
}

.myprof-showcase-block--availability .availability-public-day {
    width: 2.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.myprof-showcase-block--availability .availability-public-row {
    grid-template-columns: 2.1rem minmax(0, 1fr);
}

.myprof-showcase-block--availability .availability-public-axis {
    padding-left: 2.65rem;
    font-size: 0.62rem;
}

.myprof-showcase-block--availability .availability-public-legend {
    gap: 0.55rem;
    margin-bottom: 0.5rem;
}

.myprof-showcase-block--availability .availability-public-legend-item {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
}

/* Düzenleme — kısa gün adları (Pzt, Sal…) */
.myprof--studio .availability-section--compact .availability-section-head {
    display: none;
}

.myprof--studio .availability-section--compact .availability-save-status {
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
}

.myprof--studio .availability-section--compact .availability-editor-card {
    padding: 0.45rem 0.35rem 0.35rem;
    box-shadow: none;
    border: 0;
    background: transparent;
}

.myprof--studio .availability-section--compact .availability-editor-row {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.35rem 0.45rem;
    margin-bottom: 0.38rem;
}

.myprof--studio .availability-section--compact .availability-editor-day {
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-muted);
}

.myprof--studio .availability-section--compact .availability-editor-track {
    height: 1.1rem;
}

.myprof--studio .availability-section--compact .availability-editor-axis {
    margin-left: calc(2rem + 0.45rem);
    margin-top: 0.25rem;
    font-size: 0.58rem;
    gap: 0;
}

.myprof--studio .availability-section--compact .availability-editor-axis span {
    flex: 0 0 auto;
}

.myprof--studio .availability-section--compact .availability-editor-hint {
    font-size: 0.65rem;
    margin-top: 0.4rem;
}

.myprof--studio .availability-section--compact .availability-legend {
    display: none;
}

.myprof--studio .availability-section--compact .availability-clear-all {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
}

/* profile-hero-text-fix-deployed */

/* Eski .myprof-head kurallarını showcase için sıfırla */
.myprof-head.myprof-head--showcase {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0.75rem 0.85rem 0.6rem !important;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(212, 168, 83, 0.12);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), transparent 70%) !important;
}

.myprof-head.myprof-head--showcase .myprof-head__avatar-block {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin: 0;
}

.myprof-head.myprof-head--showcase .myprof-head__info {
    flex: 1 1 auto;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-top: 0 !important;
    text-align: left !important;
}

.myprof-head.myprof-head--showcase .myprof-showcase-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    width: 100%;
    min-width: 0;
}

.myprof-head.myprof-head--showcase .myprof-name-row {
    justify-content: flex-start !important;
    width: 100%;
    min-width: 0;
}

.myprof-head.myprof-head--showcase .myprof-name {
    font-size: 1.12rem !important;
    line-height: 1.25 !important;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

.myprof-showcase-line {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-muted);
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.myprof-showcase-line--meta {
    font-size: 0.74rem;
    font-weight: 500;
}

.myprof-showcase-line--foot {
    font-size: 0.66rem;
    font-weight: 500;
    opacity: 0.88;
}

.myprof-showcase-subtitle,
.myprof-showcase-meta,
.myprof-showcase-foot {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    letter-spacing: normal !important;
    text-transform: none !important;
}

.myprof-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem;
}

/* avail-cal-deployed — önizleme müsaitlik (av-matrix ile) */

.avail-cal {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

:root[data-theme="dark"] .avail-cal {
    background: transparent;
    border: none;
    box-shadow: none;
}

.avail-cal__top {
    margin-bottom: 0.45rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.12);
}

.avail-cal__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
    margin-bottom: 0.35rem;
}

.avail-cal__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.64rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
    text-transform: none;
}

.avail-cal__legend-item i {
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    font-style: normal;
}

.avail-cal__legend-item.is-available i {
    background: rgba(201, 162, 39, 0.25);
    border: 2px solid #c9a227;
    box-sizing: border-box;
}

.avail-cal__legend-item.is-busy i {
    background: #ef4444;
}

.avail-cal__legend-item.is-blocked i {
    background: #1f2937;
}

.avail-cal__hours {
    display: none;
}

.avail-cal__hours-row {
    display: grid;
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.5rem;
    align-items: end;
    margin-bottom: 0.18rem;
}

.avail-cal__day-spacer {
    display: block;
}

.avail-cal__slots-head {
    display: flex;
    gap: 3px;
    min-width: 0;
}

.avail-cal__hour-label {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-size: 0.52rem;
    font-weight: 600;
    color: transparent;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.avail-cal__hour-label.is-on {
    color: var(--text-muted);
    opacity: 0.72;
}

.avail-cal__hour-label.is-boundary {
    color: var(--primary);
    opacity: 0.88;
}

.avail-cal__grid {
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
}

.avail-cal__row {
    display: grid;
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.5rem;
    align-items: center;
}

.avail-cal__day {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0;
    text-transform: none !important;
    white-space: nowrap;
    line-height: 1.2;
}

.avail-cal__row.is-weekend .avail-cal__day {
    color: var(--text-muted);
}

.avail-cal__track {
    display: flex;
    gap: 3px;
    align-items: stretch;
    min-width: 0;
    padding: 0;
    height: auto;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
}

.avail-cal__seg {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    max-height: 0.82rem;
    border-radius: 4px;
    border: 1px solid rgba(201, 162, 39, 0.14);
    background: rgba(201, 162, 39, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avail-cal__seg i {
    display: block;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 50%;
    font-style: normal;
    background: rgba(201, 162, 39, 0.42);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.avail-cal__seg.is-available {
    background: rgba(201, 162, 39, 0.06);
}

.avail-cal__seg.is-busy {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.avail-cal__seg.is-busy i {
    background: rgba(239, 68, 68, 0.88);
    box-shadow: none;
}

.avail-cal__seg.is-blocked {
    background: rgba(17, 17, 17, 0.06);
    border-color: rgba(17, 17, 17, 0.16);
}

.avail-cal__seg.is-blocked i {
    background: rgba(17, 17, 17, 0.82);
    box-shadow: none;
}

.avail-cal__note {
    margin: 0.5rem 0 0;
    padding-top: 0.45rem;
    border-top: 1px dashed rgba(212, 168, 83, 0.14);
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.35;
}

.myprof-showcase-block--availability .avail-cal {
    margin: 0;
}

/* mprof-id-deployed — müzisyen kimlik kartı */

.mprof-id {
    padding: 0.8rem 0.85rem 0.75rem;
    border-radius: 14px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.9));
    border: 1px solid rgba(212, 168, 83, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 5px 18px rgba(15, 23, 42, 0.045);
}

:root[data-theme="dark"] .mprof-id {
    background: linear-gradient(155deg, rgba(34, 36, 44, 0.96), rgba(26, 28, 34, 0.92));
    border-color: rgba(212, 168, 83, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mprof-id__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(212, 168, 83, 0.14);
}

.mprof-id__facts:only-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mprof-id__fact {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.34rem 0.62rem;
    border-radius: 10px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(99, 102, 241, 0.14);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

:root[data-theme="dark"] .mprof-id__fact {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.mprof-id__fact--gender {
    border-color: rgba(99, 102, 241, 0.2);
}

.mprof-id__fact--city {
    border-color: rgba(212, 168, 83, 0.28);
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.55), rgba(255, 255, 255, 0.7));
}

:root[data-theme="dark"] .mprof-id__fact--city {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(255, 255, 255, 0.03));
}

.mprof-id__icon {
    width: 0.85rem;
    height: 0.85rem;
    flex-shrink: 0;
    opacity: 0.72;
}

.mprof-id__fact--city .mprof-id__icon {
    color: #a67c2e;
    opacity: 1;
}

.mprof-id__group {
    margin-top: 0.62rem;
}

.mprof-id__group:first-child {
    margin-top: 0;
}

.mprof-id__label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.38rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mprof-id__group--inst .mprof-id__label::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8c97a, #c9a227);
    box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.2);
}

.mprof-id__group--genre .mprof-id__label::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.mprof-id__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.34rem;
}

.mprof-id__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.62rem;
    border-radius: 9px;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.mprof-id__chip--inst {
    background: linear-gradient(145deg, rgba(255, 250, 238, 0.98), rgba(252, 236, 205, 0.88));
    border: 1px solid rgba(212, 168, 83, 0.38);
    color: #6b4f12;
    box-shadow: 0 1px 4px rgba(212, 168, 83, 0.14);
}

.mprof-id__chip--genre {
    background: linear-gradient(145deg, rgba(245, 243, 255, 0.98), rgba(233, 225, 254, 0.88));
    border: 1px solid rgba(139, 92, 246, 0.28);
    color: #5b21b6;
    box-shadow: 0 1px 4px rgba(139, 92, 246, 0.1);
}

:root[data-theme="dark"] .mprof-id__chip--inst {
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.16), rgba(166, 124, 46, 0.1));
    color: #f0d78c;
    border-color: rgba(212, 168, 83, 0.32);
}

:root[data-theme="dark"] .mprof-id__chip--genre {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.16), rgba(109, 40, 217, 0.1));
    color: #ddd6fe;
    border-color: rgba(167, 139, 250, 0.28);
}

/* Profil görünümü — eski düz etiketleri gizle */
.myprof-showcase-tags {
    display: none !important;
}

.myprof-showcase-block .mprof-id,
.pubprof-card .mprof-id {
    margin: 0;
}

.pubprof-card--identity {
    padding-top: 0.85rem;
}

.pubprof-card--identity .pubprof-section-title {
    margin-bottom: 0.55rem;
}

/* mprof-about-deployed — hakkında kartı */

.mprof-about {
    position: relative;
    padding: 0.82rem 0.88rem 0.78rem;
    border-radius: 14px;
    background: linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(248, 246, 252, 0.9));
    border: 1px solid rgba(212, 168, 83, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 5px 18px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

:root[data-theme="dark"] .mprof-about {
    background: linear-gradient(158deg, rgba(34, 36, 44, 0.96), rgba(28, 30, 38, 0.92));
    border-color: rgba(212, 168, 83, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mprof-about::after {
    content: '\201C';
    position: absolute;
    top: 0.15rem;
    right: 0.55rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(212, 168, 83, 0.11);
    pointer-events: none;
    user-select: none;
}

.mprof-about__head {
    margin-bottom: 0.42rem;
}

.mprof-about__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mprof-about__label::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c4b5fd, #7c3aed);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.16);
}

.mprof-about__body {
    position: relative;
    z-index: 1;
}

.mprof-about__text {
    margin: 0;
    padding: 0.45rem 0 0.1rem 0.72rem;
    border-left: 2px solid rgba(212, 168, 83, 0.42);
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--text);
    letter-spacing: 0.01em;
}

.mprof-about__text br + br {
    display: block;
    content: '';
    margin-top: 0.35rem;
}

.myprof-showcase-block--about {
    padding-top: 0.15rem;
    border-top: 0;
}

.myprof-showcase-block--about + .myprof-showcase-block {
    padding-top: 0.65rem;
}

.pubprof-card--about {
    padding-top: 0.85rem;
}

.pubprof-card--about .pubprof-section-title {
    display: none;
}

.pubprof-card--about .pubprof-bio {
    display: none;
}

.myprof-showcase-bio {
    display: none !important;
}

/* profile-showcase-gold-unify-deployed — tüm orta bölge altın profile uyumlu */

/* Ortak altın yüzey tokenları */
.profile-shell--showcase,
.pubprof--musician .pubprof-main {
    --prof-gold-border: rgba(212, 168, 83, 0.2);
    --prof-gold-border-soft: rgba(212, 168, 83, 0.14);
    --prof-gold-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 243, 0.95));
    --prof-gold-chip: linear-gradient(145deg, rgba(255, 250, 238, 0.98), rgba(252, 236, 205, 0.88));
    --prof-gold-chip-deep: linear-gradient(145deg, rgba(255, 245, 220, 0.98), rgba(248, 220, 165, 0.88));
}

:root[data-theme="dark"] .profile-shell--showcase,
:root[data-theme="dark"] .pubprof--musician .pubprof-main {
    --prof-gold-border: rgba(212, 168, 83, 0.16);
    --prof-gold-border-soft: rgba(212, 168, 83, 0.1);
    --prof-gold-bg: linear-gradient(165deg, rgba(32, 34, 42, 0.98), rgba(24, 26, 32, 0.96));
    --prof-gold-chip: linear-gradient(145deg, rgba(212, 168, 83, 0.16), rgba(166, 124, 46, 0.1));
    --prof-gold-chip-deep: linear-gradient(145deg, rgba(212, 168, 83, 0.22), rgba(140, 100, 30, 0.14));
}

/* Önizleme kartları — showcase ile aynı dil */
.pubprof--musician .pubprof-card {
    background: var(--prof-gold-bg);
    border: 1px solid var(--prof-gold-border);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 8px 24px rgba(15, 23, 42, 0.06);
}

:root[data-theme="dark"] .pubprof--musician .pubprof-card {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.pubprof--musician .pubprof-header {
    background: var(--prof-gold-bg);
    border: 1px solid var(--prof-gold-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pubprof--musician .pubprof-avatar {
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.35);
}

/* Kimlik — mor/indigo yerine altın ailesi */
.mprof-id {
    background: var(--prof-gold-bg, linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 240, 0.9))) !important;
    border-color: var(--prof-gold-border, rgba(212, 168, 83, 0.2)) !important;
}

.mprof-id__facts {
    border-bottom-color: var(--prof-gold-border-soft, rgba(212, 168, 83, 0.14)) !important;
}

.mprof-id__fact {
    background: rgba(255, 255, 255, 0.78) !important;
    border-color: var(--prof-gold-border-soft, rgba(212, 168, 83, 0.14)) !important;
}

.mprof-id__fact--gender {
    border-color: rgba(212, 168, 83, 0.22) !important;
}

.mprof-id__fact--city {
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.65), rgba(255, 255, 255, 0.75)) !important;
    border-color: rgba(212, 168, 83, 0.3) !important;
}

:root[data-theme="dark"] .mprof-id__fact {
    background: rgba(255, 255, 255, 0.04) !important;
}

.mprof-id__group--genre .mprof-id__label::before {
    background: linear-gradient(135deg, #f0d78c, #c9a227) !important;
    box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.22) !important;
}

.mprof-id__chip--genre {
    background: var(--prof-gold-chip-deep) !important;
    border: 1px solid rgba(212, 168, 83, 0.34) !important;
    color: #7a6118 !important;
    box-shadow: 0 1px 4px rgba(212, 168, 83, 0.12) !important;
}

:root[data-theme="dark"] .mprof-id__chip--genre {
    color: #f0d78c !important;
    border-color: rgba(212, 168, 83, 0.3) !important;
}

/* Hakkında — mor nokta ve soğuk arka plan kaldır */
.mprof-about {
    background: var(--prof-gold-bg, linear-gradient(158deg, rgba(255, 255, 255, 0.97), rgba(250, 248, 243, 0.92))) !important;
    border-color: var(--prof-gold-border, rgba(212, 168, 83, 0.18)) !important;
}

.mprof-about__label::before {
    background: linear-gradient(135deg, #e8c97a, #c9a227) !important;
    box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.2) !important;
}

/* İç içe kart — çift çerçeve olmasın */
.pubprof-card--about .mprof-about,
.pubprof-card--identity .mprof-id {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0;
    padding-right: 0;
}

.pubprof-card--identity .pubprof-section-title {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Müsaitlik başlığı */
.myprof-showcase-block__title {
    color: var(--text-muted);
}

.myprof-showcase-block {
    border-top-color: var(--prof-gold-border-soft, rgba(212, 168, 83, 0.1)) !important;
}

/* Önizleme banner */
.pubprof-preview-banner {
    border: 1px solid rgba(212, 168, 83, 0.22);
    background: linear-gradient(135deg, rgba(255, 248, 230, 0.9), rgba(252, 240, 210, 0.75));
    color: #7a6118;
}

:root[data-theme="dark"] .pubprof-preview-banner {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.14), rgba(166, 124, 46, 0.08));
    color: #f0d78c;
    border-color: rgba(212, 168, 83, 0.2);
}

/* profile-showcase-cohesive-deployed — tek palet, uyumlu & kullanışlı */

.profile-shell--showcase,
.pubprof--musician {
    --prof-accent: var(--primary);
    --prof-accent-light: var(--accent-light);
    --prof-accent-deep: var(--accent-deep);
    --prof-accent-soft: var(--primary-soft);
    --prof-accent-glow: var(--primary-glow);
    --prof-accent-text: var(--gold-700);
    --prof-surface-warm: var(--gold-50);
    --prof-border: color-mix(in srgb, var(--primary) 22%, var(--border));
    --prof-border-soft: color-mix(in srgb, var(--primary) 12%, var(--border));
    --prof-shell-bg: linear-gradient(165deg, var(--surface) 0%, var(--gold-50) 100%);
    --prof-panel-bg: color-mix(in srgb, var(--surface) 88%, var(--gold-50));
    --prof-chip-bg: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--gold-50) 80%, var(--surface)));
    --prof-chip-bg-deep: linear-gradient(145deg, color-mix(in srgb, var(--gold-50) 90%, var(--surface)), color-mix(in srgb, var(--primary) 14%, var(--gold-50)));
}

:root[data-theme="dark"] .profile-shell--showcase,
:root[data-theme="dark"] .pubprof--musician {
    --prof-accent-text: #f0d78c;
    --prof-surface-warm: color-mix(in srgb, var(--primary) 8%, var(--surface-2));
    --prof-border: color-mix(in srgb, var(--primary) 18%, var(--border));
    --prof-border-soft: color-mix(in srgb, var(--primary) 10%, var(--border));
    --prof-shell-bg: linear-gradient(165deg, var(--surface) 0%, color-mix(in srgb, var(--primary) 6%, var(--surface-2)) 100%);
    --prof-panel-bg: color-mix(in srgb, var(--surface-2) 92%, transparent);
    --prof-chip-bg: linear-gradient(145deg, color-mix(in srgb, var(--primary) 14%, var(--surface-2)), color-mix(in srgb, var(--primary) 8%, var(--surface)));
    --prof-chip-bg-deep: linear-gradient(145deg, color-mix(in srgb, var(--primary) 20%, var(--surface-2)), color-mix(in srgb, var(--primary) 10%, var(--surface)));
}

/* —— Kabuk —— */
.profile-shell--showcase .myprof-sheet--view {
    background: var(--prof-shell-bg) !important;
    border: 1px solid var(--prof-border) !important;
    box-shadow: var(--shadow-card) !important;
}

/* —— Toolbar —— */
.profile-shell--showcase .myprof-toolbar--dual {
    padding: 0.4rem 0.55rem 0.45rem;
}

.profile-shell--showcase .myprof-toolbar__mode--showcase {
    background: none !important;
    color: var(--prof-accent-text) !important;
    -webkit-text-fill-color: currentColor;
}

.profile-shell--showcase .myprof-toolbar__actions .btn-secondary {
    background: var(--prof-accent-soft);
    border-color: var(--prof-border);
    color: var(--prof-accent-text);
    font-weight: var(--fw-semibold);
}

.profile-shell--showcase .myprof-toolbar__actions .btn-primary,
.profile-shell--dual .myprof-toolbar__save {
    background: var(--prof-accent);
    border-color: var(--prof-accent-deep);
    color: #fff;
}

.profile-shell--showcase .myprof-toolbar__back {
    background: var(--prof-accent-soft);
    color: var(--prof-accent-text);
}

/* —— Hero —— */
.myprof-head.myprof-head--showcase {
    border-bottom-color: var(--prof-border-soft) !important;
    background: linear-gradient(135deg, var(--prof-accent-soft), transparent 72%) !important;
}

.myprof-head--showcase .myprof-avatar-ring {
    background: linear-gradient(135deg, var(--prof-accent-light), var(--prof-accent), var(--prof-accent-deep)) !important;
    box-shadow: 0 4px 14px var(--prof-accent-glow);
}

.myprof-showcase-line--meta {
    color: var(--text-muted);
}

/* —— Bölüm ritmi —— */
.myprof--showcase {
    padding: 0 0.8rem 0.9rem;
}

.myprof-showcase-block {
    padding: 0.7rem 0 0;
    margin-top: 0.55rem;
    border-top: 1px solid var(--prof-border-soft) !important;
}

.myprof-showcase-block:first-child,
.myprof-showcase-block--about {
    margin-top: 0;
    padding-top: 0.5rem;
    border-top: none !important;
}

/* Ortak bölüm etiketi */
.myprof-showcase-block__title,
.mprof-about__label,
.mprof-id__label,
.pubprof-card--identity .pubprof-section-title {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.42rem;
    font-size: var(--fs-2xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.myprof-showcase-block__title::before,
.mprof-about__label::before,
.mprof-id__label::before,
.pubprof-card--identity .pubprof-section-title::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--prof-accent-light), var(--prof-accent));
    box-shadow: 0 0 0 2px var(--prof-accent-soft);
    flex-shrink: 0;
}

.mprof-id__group--genre .mprof-id__label::before {
    background: linear-gradient(135deg, color-mix(in srgb, var(--prof-accent-light) 70%, var(--surface)), var(--prof-accent-deep)) !important;
    box-shadow: 0 0 0 2px var(--prof-accent-soft) !important;
}

/* —— Görünüm: iç paneller düz (çift kutu yok) —— */
.profile-shell--showcase .mprof-about,
.profile-shell--showcase .mprof-id,
.profile-shell--showcase .avail-cal {
    background: var(--prof-panel-bg) !important;
    border: 1px solid var(--prof-border-soft) !important;
    box-shadow: none !important;
    border-radius: var(--radius);
}

.profile-shell--showcase .mprof-about::after {
    color: var(--prof-accent-soft);
}

.profile-shell--showcase .mprof-about__text {
    border-left-color: var(--prof-accent);
}

/* —— Kimlik —— */
.mprof-id__facts {
    border-bottom-color: var(--prof-border-soft) !important;
}

.mprof-id__fact {
    background: color-mix(in srgb, var(--surface) 90%, var(--gold-50)) !important;
    border-color: var(--prof-border-soft) !important;
    box-shadow: none !important;
    min-height: 1.85rem;
}

.mprof-id__fact--gender,
.mprof-id__fact--city {
    border-color: var(--prof-border) !important;
}

.mprof-id__fact--city {
    background: var(--prof-chip-bg) !important;
}

.mprof-id__fact--city .mprof-id__icon,
.mprof-id__fact--gender .mprof-id__icon {
    color: var(--prof-accent-deep);
    opacity: 1;
}

.mprof-id__chip {
    min-height: 1.75rem;
    border-radius: var(--radius-sm);
}

.mprof-id__chip--inst {
    background: var(--prof-chip-bg) !important;
    border-color: var(--prof-border) !important;
    color: var(--prof-accent-text) !important;
    box-shadow: none !important;
}

.mprof-id__chip--genre {
    background: var(--prof-chip-bg-deep) !important;
    border-color: color-mix(in srgb, var(--prof-accent) 30%, var(--border)) !important;
    color: var(--prof-accent-text) !important;
    box-shadow: none !important;
}

:root[data-theme="dark"] .mprof-id__chip--inst,
:root[data-theme="dark"] .mprof-id__chip--genre {
    color: var(--prof-accent-text) !important;
}

/* —— Hakkında —— */
.mprof-about {
    background: var(--prof-panel-bg) !important;
    border-color: var(--prof-border-soft) !important;
    box-shadow: none !important;
}

.mprof-about__label::before {
    background: linear-gradient(135deg, var(--prof-accent-light), var(--prof-accent)) !important;
    box-shadow: 0 0 0 2px var(--prof-accent-soft) !important;
}

.mprof-about__text {
    border-left-color: var(--prof-accent);
    font-size: var(--fs-sm);
    line-height: 1.62;
    color: var(--text-secondary);
}

/* —— Müsaitlik —— */
.avail-cal {
    background: var(--prof-panel-bg) !important;
    border-color: var(--prof-border-soft) !important;
    box-shadow: none !important;
    border-radius: var(--radius);
}

.avail-cal__top {
    border-bottom-color: var(--prof-border-soft) !important;
}

.avail-cal__legend-item.is-available i {
    background: var(--prof-accent-soft) !important;
    border-color: var(--prof-accent) !important;
}

.avail-cal__track {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.avail-cal__seg {
    background: color-mix(in srgb, var(--prof-accent) 8%, transparent) !important;
    border-color: var(--prof-border-soft) !important;
}

.avail-cal__seg.is-available {
    background: color-mix(in srgb, var(--prof-accent) 8%, transparent) !important;
}

.avail-cal__seg.is-available i {
    background: color-mix(in srgb, var(--prof-accent) 55%, transparent) !important;
}

.avail-cal__note {
    border-top-color: var(--prof-border-soft) !important;
}

/* —— Önizleme sayfası —— */
.pubprof--musician .pubprof-card {
    background: var(--prof-shell-bg);
    border: 1px solid var(--prof-border);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
}

.pubprof--musician .pubprof-header {
    background: var(--prof-shell-bg);
    border: 1px solid var(--prof-border);
    border-radius: var(--radius-lg);
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0.9rem;
}

.pubprof--musician .pubprof-avatar {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 3px var(--prof-accent-glow);
}

.pubprof--musician .pubprof-name-row h1 {
    font-size: 1.15rem;
}

.pubprof--musician .pubprof-role-tag {
    margin-top: 0.25rem;
    padding: 0.12rem 0.45rem;
    font-size: 0.62rem;
}

.pubprof--musician .pubprof-meta {
    margin-top: 0.3rem;
    gap: 0.35rem 0.55rem;
}

.pubprof--musician .pubprof-meta-item {
    font-size: 0.72rem;
}

.pubprof--musician .pubprof-meta-item--stage {
    font-weight: 700;
    color: var(--text);
}

.pubprof--musician .pubprof-section-title {
    color: var(--text);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.02em;
    text-transform: none;
}

.pubprof-card--about .mprof-about,
.pubprof-card--identity .mprof-id {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
}

.pubprof-preview-banner {
    background: var(--prof-chip-bg);
    border: 1px solid var(--prof-border);
    color: var(--prof-accent-text);
    border-radius: var(--radius);
}

.pubprof--musician .pubprof-back {
    color: var(--prof-accent-text);
    font-weight: var(--fw-semibold);
}

/* —— Medya bölümü —— */
.myprof-showcase-block--media {
    padding-top: 0.65rem;
}

.myprof-showcase-block--media .profile-media-audio,
.pubprof--musician .profile-media-audio {
    width: 100%;
    border-radius: var(--radius-sm);
}

/* —— Kullanılabilirlik: dokunma alanı —— */
.profile-shell--showcase .myprof-toolbar__actions .btn,
.profile-shell--dual .myprof-toolbar__save {
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
}

.mprof-id__chip,
.mprof-id__fact {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 480px) {
    .myprof--showcase {
        padding: 0 0.65rem 0.8rem;
    }

    .mprof-about__text {
        font-size: var(--fs-sm);
    }
}

/* profile-page-full-cohesive-deployed — palet tüm sayfaya */

/* Token kökü: görünüm + düzenleme + önizleme */
.profile-shell--dual,
.pubprof--musician {
    --prof-accent: var(--primary);
    --prof-accent-light: var(--accent-light);
    --prof-accent-deep: var(--accent-deep);
    --prof-accent-soft: var(--primary-soft);
    --prof-accent-glow: var(--primary-glow);
    --prof-accent-text: var(--gold-700);
    --prof-surface-warm: var(--gold-50);
    --prof-border: color-mix(in srgb, var(--primary) 22%, var(--border));
    --prof-border-soft: color-mix(in srgb, var(--primary) 12%, var(--border));
    --prof-shell-bg: linear-gradient(165deg, var(--surface) 0%, var(--gold-50) 100%);
    --prof-panel-bg: color-mix(in srgb, var(--surface) 88%, var(--gold-50));
    --prof-chip-bg: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--gold-50) 80%, var(--surface)));
    --prof-chip-bg-deep: linear-gradient(145deg, color-mix(in srgb, var(--gold-50) 90%, var(--surface)), color-mix(in srgb, var(--primary) 14%, var(--gold-50)));
    --prof-input-bg: color-mix(in srgb, var(--gold-50) 45%, var(--surface-2));
}

:root[data-theme="dark"] .profile-shell--dual,
:root[data-theme="dark"] .pubprof--musician {
    --prof-accent-text: #f0d78c;
    --prof-surface-warm: color-mix(in srgb, var(--primary) 8%, var(--surface-2));
    --prof-border: color-mix(in srgb, var(--primary) 18%, var(--border));
    --prof-border-soft: color-mix(in srgb, var(--primary) 10%, var(--border));
    --prof-shell-bg: linear-gradient(165deg, var(--surface) 0%, color-mix(in srgb, var(--primary) 6%, var(--surface-2)) 100%);
    --prof-panel-bg: color-mix(in srgb, var(--surface-2) 92%, transparent);
    --prof-chip-bg: linear-gradient(145deg, color-mix(in srgb, var(--primary) 14%, var(--surface-2)), color-mix(in srgb, var(--primary) 8%, var(--surface)));
    --prof-chip-bg-deep: linear-gradient(145deg, color-mix(in srgb, var(--primary) 20%, var(--surface-2)), color-mix(in srgb, var(--primary) 10%, var(--surface)));
    --prof-input-bg: color-mix(in srgb, var(--primary) 8%, var(--surface-2));
}

/* Sayfa zemini */
.profile-page .profile-shell--dual {
    padding-bottom: 1.5rem;
}

/* —— Düzenleme kabuğu —— */
.profile-shell--editing .myprof-sheet--edit {
    background: var(--prof-shell-bg) !important;
    border: 1px solid var(--prof-border) !important;
    box-shadow: var(--shadow-card) !important;
    border-radius: 18px;
    overflow: hidden;
}

:root[data-theme="dark"] .profile-shell--editing .myprof-sheet--edit {
    box-shadow: var(--shadow-lg) !important;
}

.profile-shell--editing .myprof-toolbar__mode {
    color: var(--prof-accent-text);
    font-weight: var(--fw-bold);
}

.profile-shell--editing .myprof-toolbar__back {
    background: var(--prof-accent-soft);
    color: var(--prof-accent-text);
}

.profile-shell--editing .myprof-toolbar__save {
    background: var(--prof-accent);
    border-color: var(--prof-accent-deep);
    color: #fff;
}

/* —— Hero düzenleme —— */
.myprof-head--compact {
    border-bottom: 1px solid var(--prof-border-soft) !important;
    background: linear-gradient(135deg, var(--prof-accent-soft), transparent 75%) !important;
    padding: 0.6rem 0.75rem 0.5rem !important;
}

.myprof-head--compact .myprof-avatar-ring {
    padding: 2px;
    background: linear-gradient(135deg, var(--prof-accent-light), var(--prof-accent), var(--prof-accent-deep)) !important;
    border-radius: 50%;
}

.myprof-head--compact .myprof-inline-input--name {
    color: var(--text);
}

.myprof-head--compact .myprof-inline-input--name:focus {
    box-shadow: 0 2px 0 var(--prof-accent) !important;
}

.myprof-avatar-actions--compact .myprof-avatar-btn {
    background: var(--prof-accent-soft);
    border: 1px solid var(--prof-border-soft);
    color: var(--prof-accent-text);
    border-radius: var(--radius-sm);
}

.myprof-avatar-actions--compact .myprof-avatar-btn--muted {
    background: transparent;
    border-color: var(--border);
    color: var(--text-muted);
}

/* —— Düzenleme kartları —— */
.myprof--studio {
    padding: 0.5rem 0.75rem 0.85rem;
    gap: 0.5rem;
}

.myprof-edit-card {
    background: var(--prof-panel-bg) !important;
    border: 1px solid var(--prof-border-soft) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
    padding: 0.55rem 0.6rem 0.6rem !important;
}

.myprof-edit-card__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted) !important;
    font-size: var(--fs-2xs);
    letter-spacing: 0.1em;
}

.myprof-edit-card__label::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--prof-accent-light), var(--prof-accent));
    box-shadow: 0 0 0 2px var(--prof-accent-soft);
    flex-shrink: 0;
}

.myprof-edit-card__hint {
    color: var(--text-muted);
    font-size: var(--fs-2xs);
}

.myprof-textarea--studio {
    background: var(--prof-input-bg) !important;
    border: 1px solid var(--prof-border-soft) !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text);
    font-size: var(--fs-sm);
    line-height: 1.5;
}

.myprof-textarea--studio:focus {
    outline: none;
    border-color: var(--prof-accent) !important;
    box-shadow: 0 0 0 3px var(--prof-accent-soft);
}

.myprof-char-count {
    color: var(--text-muted);
    font-size: var(--fs-2xs);
}

/* —— Müzik paneli —— */
.myprof--studio .profile-music-identity {
    background: var(--prof-accent-soft) !important;
    border: 1px solid var(--prof-border-soft) !important;
    border-radius: var(--radius-sm);
}

.myprof--studio .profile-city-field--inline input,
.myprof--studio .profile-city-field--inline select {
    background: var(--prof-input-bg);
    border-color: var(--prof-border-soft);
    border-radius: var(--radius-sm);
}

.myprof--studio .profile-city-field--inline input:focus,
.myprof--studio .profile-city-field--inline select:focus {
    border-color: var(--prof-accent);
    box-shadow: 0 0 0 3px var(--prof-accent-soft);
}

.myprof--studio .profile-chip-card {
    background: color-mix(in srgb, var(--surface) 70%, var(--gold-50)) !important;
    border: 1px solid var(--prof-border-soft) !important;
    border-radius: var(--radius-sm) !important;
}

.myprof--studio .profile-chip-section--instrument.profile-chip-card,
.myprof--studio .profile-chip-section--genre.profile-chip-card {
    border-color: var(--prof-border-soft) !important;
}

.myprof--studio .profile-chip-section-label {
    color: var(--text);
    font-weight: var(--fw-semibold);
}

.myprof--studio .profile-chip-counter {
    background: var(--prof-accent-soft);
    color: var(--prof-accent-text);
    border: 1px solid var(--prof-border-soft);
    border-radius: 999px;
    padding: 0.1rem 0.4rem;
    font-size: var(--fs-2xs);
}

.myprof--studio .profile-chip-flow__label {
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.myprof--studio .profile-chip-flow__group--selected {
    background: color-mix(in srgb, var(--gold-50) 60%, var(--surface)) !important;
    border: 1px dashed var(--prof-border) !important;
    border-radius: var(--radius-sm);
}

.myprof--studio .profile-chip-section--instrument .profile-chip-flow__group--selected,
.myprof--studio .profile-chip-section--genre .profile-chip-flow__group--selected {
    background: color-mix(in srgb, var(--gold-50) 55%, var(--surface)) !important;
    border-color: var(--prof-border-soft) !important;
}

.myprof--studio .profile-chip-section--instrument .profile-chip-grid--selected .profile-chip.is-selected span {
    background: var(--prof-chip-bg) !important;
    border-color: var(--prof-border) !important;
    color: var(--prof-accent-text) !important;
    box-shadow: none !important;
}

.myprof--studio .profile-chip-section--genre .profile-chip-grid--selected .profile-chip.is-selected span {
    background: var(--prof-chip-bg-deep) !important;
    border-color: color-mix(in srgb, var(--prof-accent) 32%, var(--border)) !important;
    color: var(--prof-accent-text) !important;
    box-shadow: none !important;
}

.myprof--studio .profile-chip-grid--rest .profile-chip span {
    border-color: var(--prof-border-soft);
    background: var(--surface);
}

.myprof--studio .profile-chip-section--gender .profile-chip.is-selected span,
.myprof--studio .profile-chip-section--gender .profile-chip input:checked + span {
    background: var(--prof-chip-bg) !important;
    border-color: var(--prof-border) !important;
    color: var(--prof-accent-text) !important;
}

/* —— Tanıtım medya —— */
.myprof--studio .profile-media-tab {
    background: var(--surface);
    border: 1px solid var(--prof-border-soft);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
}

.myprof--studio .profile-media-tab.is-active,
.myprof--studio .profile-media-tab[aria-selected="true"] {
    background: var(--prof-accent-soft);
    border-color: var(--prof-border);
    color: var(--prof-accent-text);
    font-weight: var(--fw-semibold);
}

.myprof--studio .profile-media-input,
.myprof--studio .profile-media-section input[type="url"],
.myprof--studio .profile-media-section input[type="text"] {
    background: var(--prof-input-bg);
    border: 1px solid var(--prof-border-soft);
    border-radius: var(--radius-sm);
}

.myprof--studio .profile-media-input:focus,
.myprof--studio .profile-media-section input:focus {
    border-color: var(--prof-accent);
    box-shadow: 0 0 0 3px var(--prof-accent-soft);
    outline: none;
}

/* —— Müsaitlik düzenleme —— */
.myprof--studio .availability-editor-card {
    background: var(--prof-panel-bg) !important;
    border-color: var(--prof-border) !important;
    border-radius: var(--radius) !important;
}

.myprof--studio .availability-editor-day {
    color: var(--prof-accent-text);
    font-weight: var(--fw-semibold);
}

.myprof--studio .availability-editor-track {
    background: var(--prof-accent-soft);
    border-color: var(--prof-border-soft);
}

.myprof--studio .availability-cell.is-available {
    background: var(--av-free-bg, rgba(250, 204, 21, 0.28)) !important;
    border-color: var(--av-free-border, rgba(202, 138, 4, 0.42)) !important;
}

.myprof--studio .availability-cell.is-busy {
    background: var(--av-busy-bg, #ef4444) !important;
    border-color: var(--av-busy-border, #dc2626) !important;
}

.myprof--studio .availability-legend-item.is-available::before {
    background-color: rgba(250, 204, 21, 0.28);
    border-color: rgba(202, 138, 4, 0.42);
}

/* —— Uyarılar —— */
.profile-shell--dual .myprof-sheet__alert,
.profile-shell--dual .profile-shell-alert {
    margin: 0.45rem 0.65rem 0;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
}

.profile-shell--dual .alert-error.profile-complete-alert {
    background: var(--error-soft);
    border: 1px solid color-mix(in srgb, var(--error) 25%, var(--border));
}

.profile-shell--dual .profile-complete-alert-link {
    color: var(--prof-accent-deep);
    font-weight: var(--fw-semibold);
}

/* —— Önizleme: kalan kartlar —— */
.pubprof--musician .pubprof-card .avail-cal {
    background: var(--prof-panel-bg) !important;
    border-color: var(--prof-border-soft) !important;
    box-shadow: none !important;
}

.pubprof--musician .pubprof-availability-note {
    color: var(--text-muted);
    font-size: var(--fs-xs);
    margin-bottom: 0.45rem;
}

.pubprof--musician .pubprof-video {
    border-radius: var(--radius);
    border: 1px solid var(--prof-border-soft);
}

.pubprof--musician .profile-rating .on {
    color: var(--prof-accent);
}

/* —— Toolbar görünüm: düzenle butonu —— */
.profile-shell--showcase .myprof-toolbar__actions .btn-primary {
    background: var(--prof-accent);
    border-color: var(--prof-accent-deep);
    color: #fff;
}

/* —— Form genel —— */
.profile-shell--dual .field-error {
    color: var(--error);
    font-size: var(--fs-xs);
    margin-top: 0.25rem;
    display: block;
}

.profile-shell--dual .myprof-inline-input {
    border-bottom-color: var(--prof-border-soft);
}

.profile-shell--dual .myprof-inline-input:focus {
    border-bottom-color: var(--prof-accent);
}

@media (max-width: 480px) {
    .myprof--studio {
        padding: 0.45rem 0.6rem 0.75rem;
    }

    .myprof-edit-card {
        padding: 0.5rem !important;
    }
}

/* —— Profil: kompakt etiketler (header) —— */
.pubprof-chips,
.myprof-chips {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.28rem;
    margin-top: 0.4rem;
}

.pubprof-chips__row,
.myprof-chips__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.28rem;
    max-width: 100%;
}

.pubprof-chip,
.myprof-chip {
    display: inline-flex;
    padding: 0.14rem 0.42rem;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 600;
    line-height: 1.2;
}

.pubprof-chip--inst,
.myprof-chip--inst {
    background: color-mix(in srgb, var(--primary) 10%, var(--surface));
    color: var(--primary);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
}

.pubprof-chip--genre,
.myprof-chip--genre {
    background: color-mix(in srgb, #3b82f6 12%, var(--surface));
    color: #1d4ed8;
    border: 1px solid color-mix(in srgb, #3b82f6 22%, transparent);
}

:root[data-theme="dark"] .pubprof-chip--genre,
:root[data-theme="dark"] .myprof-chip--genre {
    color: #93c5fd;
    background: color-mix(in srgb, #3b82f6 18%, var(--surface));
    border-color: color-mix(in srgb, #60a5fa 28%, transparent);
}

/* —— Profil: açık ilanlar (kompakt satır) —— */
.pubprof-listings-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.pubprof-listings-head .pubprof-section-title {
    margin: 0;
}

.pubprof-listings-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 12%, var(--surface));
    color: var(--primary);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}

.pubprof-listings {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.pubprof-card--listings-compact {
    padding-bottom: 0.5rem;
}

.pubprof-listings--compact {
    gap: 0.28rem;
}

.pubprof-listing-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0.5rem;
    border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.pubprof-listing-row:hover {
    border-color: color-mix(in srgb, var(--primary) 24%, var(--border));
    background: color-mix(in srgb, var(--primary) 4%, var(--surface));
}

.pubprof-listing-row__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.06rem;
}

.pubprof-listing-row__main strong {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pubprof-listing-row__main em {
    font-style: normal;
    font-size: 0.64rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pubprof-listing-row__end {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.pubprof-listing-row__badge {
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: right;
}

.pubprof-listing-row__badge--applied {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.pubprof-listing-row--applied .pubprof-listing-row__cta {
    color: color-mix(in srgb, var(--text-muted, #64748b) 88%, transparent);
}

.pubprof-listing-row__cta {
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* —— Profil: değerlendirmeler (sidebar) —— */
.pubprof-card--reviews {
    padding-bottom: 0.55rem;
}

.pubprof-reviews-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.pubprof-reviews-head .pubprof-section-title {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
}

.pubprof-reviews-note {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.pubprof-reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.pubprof-reviews-summary__stars {
    display: inline-flex;
    gap: 0.02rem;
    font-size: 0.68rem;
    color: color-mix(in srgb, var(--border) 80%, transparent);
}

.pubprof-reviews-summary__stars .is-on {
    color: #f5b301;
}

.pubprof-reviews-summary__score {
    font-size: 0.82rem;
    font-weight: 800;
}

.pubprof-reviews-summary__count {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.pubprof-reviews--compact {
    gap: 0.55rem;
}

.pubprof-review--compact {
    padding-bottom: 0.55rem;
}

.pubprof-review--compact .pubprof-review-head strong {
    font-size: 0.74rem;
}

.pubprof-review--compact .pubprof-review-stars {
    font-size: 0.62rem;
}

.pubprof-review--compact .pubprof-review-body {
    margin-top: 0.25rem;
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.pubprof-review--compact .pubprof-review-date {
    font-size: 0.62rem;
}

.pubprof-empty--compact {
    font-size: 0.74rem;
    margin: 0;
}

@media (max-width: 720px) {
    .pubprof--musician .pubprof-header {
        flex-direction: row;
        text-align: left;
    }

    .pubprof--musician .pubprof-name-row,
    .pubprof--musician .pubprof-meta,
    .pubprof--musician .pubprof-chips {
        justify-content: flex-start;
    }
}

/* —— Profil: itibar (yıldız) — güven skoru arka planda kalır —— */
.pubprof-reputation,
.myprof-reputation {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.45rem;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: color-mix(in srgb, #f5b301 10%, var(--surface));
    border: 1px solid color-mix(in srgb, #f5b301 22%, var(--border));
}

.pubprof-reputation__stars,
.myprof-reputation__stars {
    display: inline-flex;
    gap: 0.05rem;
    font-size: 0.72rem;
    line-height: 1;
    color: color-mix(in srgb, var(--border) 80%, transparent);
}

.pubprof-reputation__stars .is-on,
.myprof-reputation__stars .is-on {
    color: #f5b301;
}

.pubprof-reputation__score,
.myprof-reputation__score {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.pubprof-reputation__count,
.myprof-reputation__count {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1;
}

:root[data-theme="dark"] .pubprof-reputation,
:root[data-theme="dark"] .myprof-reputation {
    background: color-mix(in srgb, #f5b301 8%, var(--surface-2));
    border-color: color-mix(in srgb, #f5b301 18%, var(--border));
}

/* —— Site fix pack (2026-07) —— */
.pubprof-safety-menu {
    position: relative;
    margin-left: auto;
}

.pubprof-safety-menu__trigger {
    list-style: none;
    width: 2rem;
    height: 2rem;
    border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--text-muted);
    background: var(--surface);
    font-size: 1.1rem;
    line-height: 1;
}

.pubprof-safety-menu__trigger::-webkit-details-marker { display: none; }

.pubprof-safety-menu__panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 30;
    width: min(18rem, 78vw);
    padding: 0.65rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.pubprof-name-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.pubprof-listings-head__end {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.pubprof-listings-all {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.pubprof-listings-all:hover { text-decoration: underline; }

.account-settings-stack {
    display: grid;
    gap: 0.75rem;
    max-width: 720px;
}

.account-settings-card--compact {
    padding: 0.9rem 1rem;
    margin-bottom: 0;
}

.account-settings-note--compact {
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
}

.account-settings-form--inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.55rem 0.7rem;
    align-items: end;
}

.account-settings-form--inline .btn {
    justify-self: start;
}

/* Hesap ayarları — opak kart, soluk cam efekti yok */
.account-settings-page .app-main-inner {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.account-settings-page .account-settings-card,
.account-settings-page .profile-card.account-settings-card {
    background: var(--surface) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: var(--shadow-card) !important;
    border: 1px solid var(--border) !important;
}

.browse-filter-chip--sort .browse-filter-chip-value {
    font-weight: 700;
}

.myprof--edit .profile-chip-card,
.myprof--edit .profile-chip-section-label,
.myprof--edit .profile-chip-section-hint,
.myprof--edit .mprof-id__label {
    overflow: visible;
    white-space: normal;
}

.myprof--edit .profile-chip-card {
    overflow: visible;
}

.myprof--edit .profile-photo-block,
.myprof--edit .mprof-id__photo-wrap {
    overflow: visible;
}

.myprof--edit .profile-music-duo .profile-chip-grid--selected,
.myprof--edit .profile-music-duo .profile-chip-grid--rest {
    max-height: none;
    overflow: visible;
}

/* —— Mobil: başkasının profili (mekan → müzisyen vb.) —— */
.pubprof-sticky-actions {
    display: none;
}

@media (max-width: 720px) {
    html:not(.ios-app-shell) .pubprof-view-page .app-main-inner,
    html:not(.ios-app-shell) .pubprof-view-page .page-content {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }

    html.ios-app-shell .pubprof-view-page .app-main-inner,
    html.ios-app-shell .pubprof-view-page .page-content {
        padding-bottom: 0.85rem;
    }

    .pubprof--public-view {
        max-width: none;
        margin: 0;
    }

    .pubprof--public-view .pubprof-back {
        margin-bottom: 0.55rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-muted);
    }

    .pubprof--public-view .pubprof-card {
        padding: 0.8rem 0.9rem;
        margin-bottom: 0.65rem;
        border-radius: 14px;
        box-shadow: none;
    }

    .pubprof--public-view.pubprof--musician .pubprof-card,
    .pubprof--public-view.pubprof--musician .pubprof-header {
        background: var(--surface);
        border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
        box-shadow: none;
    }

    .pubprof--public-view .pubprof-header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
        padding: 0.85rem 0.9rem;
    }

    .pubprof--public-view .pubprof-avatar {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        box-shadow: none;
        border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
    }

    .pubprof--public-view .pubprof-avatar-emoji {
        font-size: 1.65rem;
    }

    .pubprof--public-view .pubprof-headinfo {
        padding-top: 0.1rem;
    }

    .pubprof--public-view .pubprof-name-row {
        align-items: flex-start;
        gap: 0.35rem;
    }

    .pubprof--public-view .pubprof-name-row h1 {
        font-size: 1.08rem;
        line-height: 1.25;
        flex: 1;
        min-width: 0;
    }

    .pubprof--public-view .profile-verified-badge {
        font-size: 0.62rem;
        padding: 0.12rem 0.38rem;
    }

    .pubprof--public-view .pubprof-role-tag--hidden {
        display: none;
    }

    .pubprof--public-view .pubprof-meta {
        gap: 0.35rem 0.55rem;
        margin-top: 0.35rem;
        justify-content: flex-start;
    }

    .pubprof--public-view .pubprof-meta-item {
        font-size: 0.76rem;
        color: var(--text-muted);
    }

    .pubprof--public-view .pubprof-meta-item--city::before {
        content: '📍 ';
        font-size: 0.72rem;
    }

    .pubprof--public-view .pubprof-meta-item--secondary {
        display: none;
    }

    .pubprof--public-view .pubprof-chips {
        gap: 0.28rem;
        margin-top: 0.45rem;
        max-height: none;
        overflow: visible;
        align-items: flex-start;
    }

    .pubprof--public-view .pubprof-chips__row {
        justify-content: flex-start;
    }

    .pubprof--public-view .pubprof-chip {
        font-size: 0.72rem;
        padding: 0.22rem 0.55rem;
        background: color-mix(in srgb, var(--surface-2) 90%, transparent);
        border-color: color-mix(in srgb, var(--border) 90%, transparent);
    }

    .pubprof--public-view .pubprof-reputation {
        margin-top: 0.4rem;
        padding: 0.22rem 0.48rem;
    }

    .pubprof--public-view .pubprof-reputation__count {
        font-size: 0.62rem;
    }

    .pubprof--public-view .pubprof-section-title {
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 0.55rem;
    }

    .pubprof--public-view .pubprof-card--media {
        padding-top: 0.75rem;
    }

    .pubprof--public-view .pubprof-video {
        border-radius: 10px;
    }

    .pubprof--public-view .profile-media-audio {
        width: 100%;
    }

    .pubprof--public-view .pubprof-card--about {
        padding-top: 0.7rem;
        padding-bottom: 0.75rem;
    }

    .pubprof--public-view .pubprof-card--about .mprof-about {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .pubprof--public-view .pubprof-card--about .mprof-about__label::before {
        display: none;
    }

    .pubprof--public-view .pubprof-card--about .mprof-about__text {
        padding-left: 0;
        border-left: none;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .pubprof--public-view .pubprof-card--about.is-clamped .mprof-about__text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pubprof--public-view .pubprof-bio-more {
        margin-top: 0.45rem;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--primary);
        font-size: 0.78rem;
        font-weight: 700;
        cursor: pointer;
    }

    .pubprof--public-view .pubprof-weekly-program__note,
    .pubprof--public-view .pubprof-reviews-note {
        font-size: 0.74rem;
        line-height: 1.4;
        color: var(--text-muted);
        margin: -0.2rem 0 0.55rem;
    }

    .pubprof--public-view .pubprof-listing-row {
        padding: 0.65rem 0.1rem;
        gap: 0.45rem;
    }

    .pubprof--public-view .pubprof-listing-row__main strong {
        font-size: 0.86rem;
    }

    .pubprof--public-view .pubprof-listing-row__main em,
    .pubprof--public-view .pubprof-listing-row__cta {
        font-size: 0.72rem;
    }

    .pubprof--public-view .plat-showcase,
    .pubprof--public-view .pubprof-block {
        margin-top: 0;
    }

    .pubprof-reviews-collapsible {
        padding: 0;
        overflow: hidden;
    }

    .pubprof-reviews-collapsible__summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        padding: 0.8rem 0.9rem;
        cursor: pointer;
        list-style: none;
    }

    .pubprof-reviews-collapsible__summary::-webkit-details-marker {
        display: none;
    }

    .pubprof-reviews-collapsible__title {
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    .pubprof-reviews-collapsible__score {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--text);
        white-space: nowrap;
    }

    .pubprof-reviews-collapsible__score em {
        font-style: normal;
        font-size: 0.68rem;
        color: var(--text-muted);
        font-weight: 600;
    }

    .pubprof-reviews-collapsible__body {
        padding: 0 0.9rem 0.85rem;
        border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
    }

    .pubprof-sticky-actions {
        display: flex;
        gap: 0.45rem;
        position: fixed;
        left: max(0.65rem, env(safe-area-inset-left, 0px));
        right: max(0.65rem, env(safe-area-inset-right, 0px));
        bottom: calc(3.65rem + env(safe-area-inset-bottom, 0px));
        z-index: 8050;
        padding: 0.35rem;
        border-radius: 14px;
        background: color-mix(in srgb, var(--glass, var(--surface)) 92%, transparent);
        border: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
        backdrop-filter: blur(14px) saturate(1.4);
        -webkit-backdrop-filter: blur(14px) saturate(1.4);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    }

    .pubprof-sticky-actions__btn {
        flex: 1;
        min-height: 2.35rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
        background: var(--surface);
        color: var(--text);
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        cursor: pointer;
    }

    .pubprof-sticky-actions__btn--primary {
        background: var(--primary);
        border-color: transparent;
        color: #fff;
    }
}


/* profile-compact-hero-width-fix */
/* Edit mode: avatar block width:100% was collapsing .myprof-head__info to 0px (letters stacked). */
.myprof-head--compact .myprof-head__avatar-block {
    flex: 0 0 auto;
    width: auto !important;
    max-width: none !important;
    align-items: flex-start;
}

.myprof-head--compact .myprof-head__info {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
}

.myprof-head--compact .myprof-edit-identity,
.myprof-head--compact .myprof-edit-label,
.myprof-head--compact .myprof-edit-hint,
.myprof-head--compact .myprof-inline-input {
    max-width: 100%;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

.myprof-head.myprof-head--showcase .myprof-name {
    overflow-wrap: break-word !important;
}

.myprof-reputation__stars > span,
.pubprof-reputation__stars > span {
    display: inline-block;
    line-height: 1;
}

@media (max-width: 768px) {
    .myprof-head--compact {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .myprof-head--compact .myprof-head__avatar-block {
        width: 100% !important;
        align-items: center;
    }

    .myprof-head--compact .myprof-head__info {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* pubprof-preview-banner-refined */
.pubprof-preview-banner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1.1rem;
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(176, 138, 58, 0.32);
    background:
        linear-gradient(135deg, rgba(255, 249, 236, 0.98), rgba(247, 238, 214, 0.92));
    color: #5c4518;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.75) inset,
        0 8px 22px rgba(80, 58, 18, 0.07);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.35;
}

.pubprof-preview-banner__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 12px;
    background: linear-gradient(165deg, #b08a3a, #7a5a1f);
    color: #fff;
    box-shadow: 0 4px 12px rgba(110, 82, 25, 0.28);
}

.pubprof-preview-banner__icon svg {
    display: block;
}

.pubprof-preview-banner__copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.pubprof-preview-banner__title {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #4a3814;
    line-height: 1.25;
}

.pubprof-preview-banner__text {
    display: block;
    font-size: 0.88rem;
    font-weight: 550;
    color: #7a6550;
    line-height: 1.35;
}

:root[data-theme="dark"] .pubprof-preview-banner {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.16), rgba(166, 124, 46, 0.1));
    border-color: rgba(212, 168, 83, 0.28);
    color: #f0d78c;
    box-shadow: none;
}

:root[data-theme="dark"] .pubprof-preview-banner__title {
    color: #f6e4b0;
}

:root[data-theme="dark"] .pubprof-preview-banner__text {
    color: rgba(240, 215, 140, 0.78);
}

@media (max-width: 480px) {
    .pubprof-preview-banner {
        gap: 0.75rem;
        padding: 0.9rem 0.95rem;
    }

    .pubprof-preview-banner__icon {
        width: 2.4rem;
        height: 2.4rem;
    }

    .pubprof-preview-banner__title {
        font-size: 0.98rem;
    }

    .pubprof-preview-banner__text {
        font-size: 0.84rem;
    }
}

/* —— Mobil önizleme: telefon vitrin —— */
@media (max-width: 768px) {
    body.pubprof-view-page,
    .pubprof-view-page {
        background:
            radial-gradient(ellipse 140% 70% at 50% -8%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 52%),
            linear-gradient(180deg, #f7f4ef 0%, #fbfaf8 45%, #f3efe8 100%);
    }

    :root[data-theme="dark"] body.pubprof-view-page,
    :root[data-theme="dark"] .pubprof-view-page {
        background:
            radial-gradient(ellipse 140% 70% at 50% -8%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 55%),
            var(--bg, #121212);
    }

    html:not(.ios-app-shell) .pubprof-view-page .app-main-inner,
    html:not(.ios-app-shell) .pubprof-view-page .page-content {
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    html.ios-app-shell .pubprof-view-page .app-main-inner,
    html.ios-app-shell .pubprof-view-page .page-content {
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
        padding-bottom: 0.85rem !important;
    }

    .pubprof-preview-banner {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        margin: 0 0 0.55rem;
        padding: 0.7rem 0.85rem;
        border-radius: 14px;
        border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border));
        background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, #fff), color-mix(in srgb, var(--primary) 5%, var(--surface)));
        color: var(--gold-700, #6e5219);
        font-size: 0.78rem;
        line-height: 1.35;
        box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
    }

    .pubprof-preview-banner strong,
    .pubprof-preview-banner .pubprof-preview-banner__title {
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.02em;
    }

    .pubprof--public-view .pubprof-back {
        display: inline-flex;
        align-items: center;
        min-height: 2.2rem;
        margin-bottom: 0.45rem !important;
        padding: 0.35rem 0.65rem;
        border-radius: 10px;
        background: color-mix(in srgb, var(--primary) 8%, var(--surface));
        border: 1px solid color-mix(in srgb, var(--primary) 18%, var(--border));
        color: var(--gold-700, #6e5219) !important;
        font-size: 0.8rem !important;
        font-weight: 750 !important;
        text-decoration: none;
    }

    .pubprof--public-view.pubprof--musician .pubprof-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.65rem !important;
        padding: 1rem 0.85rem 1.05rem !important;
        border-radius: 18px !important;
        border: none !important;
        background:
            radial-gradient(ellipse 90% 80% at 50% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%),
            var(--surface) !important;
        box-shadow: none !important;
    }

    .pubprof--public-view .pubprof-avatar {
        width: 92px !important;
        height: 92px !important;
        border-radius: 24px !important;
        border: 3px solid color-mix(in srgb, var(--primary) 45%, transparent) !important;
        box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 20%, transparent) !important;
    }

    .pubprof--public-view .pubprof-headinfo {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pubprof--public-view .pubprof-name-row {
        justify-content: center !important;
        width: 100%;
    }

    .pubprof--public-view .pubprof-name-row h1 {
        font-size: clamp(1.35rem, 6vw, 1.65rem) !important;
        font-weight: 800 !important;
        letter-spacing: -0.03em;
        text-align: center;
    }

    .pubprof--public-view .pubprof-meta {
        justify-content: center !important;
        text-align: center;
    }

    .pubprof--public-view .pubprof-meta-item--city::before {
        content: none !important;
    }

    .pubprof--public-view .pubprof-chips {
        align-items: center !important;
        width: 100%;
    }

    .pubprof--public-view .pubprof-chips__row {
        justify-content: center !important;
    }

    .pubprof--public-view .pubprof-chip--inst {
        background: color-mix(in srgb, var(--primary) 10%, var(--surface)) !important;
        color: var(--primary) !important;
        border-color: color-mix(in srgb, var(--primary) 20%, transparent) !important;
    }

    .pubprof--public-view .pubprof-chip--genre {
        background: color-mix(in srgb, #3b82f6 12%, var(--surface)) !important;
        color: #1d4ed8 !important;
        border-color: color-mix(in srgb, #3b82f6 22%, transparent) !important;
    }

    .pubprof--public-view .pubprof-reputation {
        margin-left: auto;
        margin-right: auto;
    }

    .pubprof--public-view .pubprof-card {
        padding: 0.85rem 0.85rem !important;
        margin-bottom: 0.55rem !important;
        border-radius: 16px !important;
        border: 1px solid color-mix(in srgb, var(--border) 85%, transparent) !important;
        background: color-mix(in srgb, var(--surface) 96%, transparent) !important;
        box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset !important;
    }

    .pubprof--public-view .pubprof-section-title {
        font-size: 0.7rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
        font-weight: 800 !important;
        color: color-mix(in srgb, var(--primary) 65%, var(--text)) !important;
    }

    .pubprof--public-view .pubprof-card--weekly-program .wkpg-roulette__hint {
        opacity: 0.85;
    }
}

/* —— Önizleme (preview) mobil vitrin —— */
@media (max-width: 768px) {
    .pubprof--preview .pubprof-preview-banner {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.65rem;
        margin: 0.15rem 0 0.65rem;
        padding: 0.75rem 0.85rem;
        border-radius: 14px;
    }

    .pubprof--preview .pubprof-preview-banner__icon {
        flex-shrink: 0;
        display: grid;
        place-items: center;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 10px;
        background: color-mix(in srgb, var(--primary) 14%, transparent);
        color: var(--gold-700, #6e5219);
    }

    .pubprof--preview .pubprof-preview-banner__copy {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
        min-width: 0;
    }

    .pubprof--preview .pubprof-preview-banner__title {
        font-size: 0.84rem;
        font-weight: 800;
    }

    .pubprof--preview .pubprof-preview-banner__text {
        font-size: 0.74rem;
        opacity: 0.9;
    }

    html:not(.ios-app-shell) .pubprof-view-page.profile-page .app-main-inner {
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    html.ios-app-shell .pubprof-view-page.profile-page .app-main-inner {
        padding-bottom: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    .pubprof-view-page .pubprof-grid,
    .pubprof-view-page .pubprof-main,
    .pubprof--public-view .pubprof-grid,
    .pubprof--public-view .pubprof-main {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden;
    }
}
