/* Ortak masaustu + mobil uyumluluk katmani */
:root {
    --site-bg: #0b1220;
    --site-bg-soft: #0f172a;
    --site-panel: #111c31;
    --site-panel-strong: #17233a;
    --site-panel-soft: rgba(23, 35, 58, .72);
    --site-border: rgba(71, 85, 105, .48);
    --site-border-soft: rgba(51, 65, 85, .58);
    --site-text: #f8fafc;
    --site-muted: #94a3b8;
    --site-orange: #f97316;
    --site-content-max: 1500px;
    --site-readable-max: 1040px;
    --site-radius: 18px;
    --site-shadow: 0 18px 50px rgba(2, 6, 23, .24);
    --desktop-sidebar-width: 275px;
    --mobile-nav-offset: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { width: 100%; min-width: 0; background: var(--site-bg); }
html, body { margin: 0; background: var(--site-bg); color: var(--site-text); overflow-x: clip; }
body {
    min-width: 0;
    background:
        radial-gradient(circle at 14% -10%, rgba(249, 115, 22, .07), transparent 32rem),
        radial-gradient(circle at 90% 10%, rgba(59, 130, 246, .055), transparent 30rem),
        var(--site-bg);
}

img, svg, video, canvas { max-width: 100%; }
img { height: auto; }
iframe { max-width: 100%; }
pre, code { max-width: 100%; overflow-wrap: anywhere; }
button, input, select, textarea { max-width: 100%; font: inherit; }
textarea { resize: vertical; }

.no-scrollbar::-webkit-scrollbar,
.scrollbar-none::-webkit-scrollbar { display: none; }
.no-scrollbar,
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }

.text-slate-200 { color: #e2e8f0 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-505, .text-slate-550 { color: #64748b !important; }
.text-slate-650 { color: #475569 !important; }
.text-orange-500 { color: var(--site-orange) !important; }
.hover\:text-orange-500:hover { color: var(--site-orange) !important; }
.bg-slate-850 { background-color: #172033 !important; }
.bg-rose-955 { background-color: #3f0d1a !important; }
.bg-rose-955\/15 { background-color: rgba(63, 13, 26, .15) !important; }
.hover\:bg-rose-955\/30:hover { background-color: rgba(63, 13, 26, .30) !important; }
.active\:bg-rose-955\/40:active { background-color: rgba(63, 13, 26, .40) !important; }
.border-rose-900\/10 { border-color: rgba(127, 29, 29, .10) !important; }
.hover\:border-rose-900\/50:hover { border-color: rgba(127, 29, 29, .50) !important; }

main { width: 100%; min-width: 0; }
main > * { min-width: 0; }
.grid > *, .flex > * { min-width: 0; }
[class*="grid-cols-"] { align-items: stretch; }

.site-content-card,
.page-card,
main [class*="bg-[#"]:is(.rounded-xl, .rounded-2xl, .rounded-3xl) {
    border-color: var(--site-border-soft);
}
.site-content-card,
.page-card {
    background: linear-gradient(145deg, rgba(23, 35, 58, .82), rgba(15, 23, 42, .68));
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
select,
textarea {
    min-height: 42px;
    border-radius: 12px;
}
input, select, textarea { color-scheme: dark; }
button, a { overflow-wrap: anywhere; }

.site-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.site-table-scroll > table { min-width: 720px; width: 100%; }
table { border-collapse: collapse; }
th, td { vertical-align: middle; }

/* Eski mobil sidebar gorunumu - PC ve mobilde ortak.
   Mobil performans icin blur yerine GPU uyumlu transform kullanilir. */
.site-sidebar.old-mobile-sidebar {
    width: min(275px, calc(100vw - 44px));
    background: #0a0f1d !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 14px 0 34px rgba(2, 6, 23, .34);
    transform: translate3d(-100%, 0, 0);
    transition: transform .18s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
    contain: layout paint;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.site-sidebar.old-mobile-sidebar:not(.-translate-x-full) {
    transform: translate3d(0, 0, 0);
}
.site-sidebar-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: opacity .16s linear;
    will-change: opacity;
}
.site-sidebar .site-sidebar-icon {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: currentColor;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    transition: color .18s ease, background-color .18s ease;
}
.site-sidebar .old-sidebar-link:hover .site-sidebar-icon,
.site-sidebar .old-sidebar-link.is-active .site-sidebar-icon {
    color: #fff;
    background: transparent;
}
.site-sidebar .old-sidebar-link.is-active {
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(71, 85, 105, .18), 0 8px 24px rgba(2, 6, 23, .10);
}
.site-sidebar .old-sidebar-link.is-active::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    width: 3px;
    height: 20px;
    border-radius: 999px;
    background: #f97316;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(249, 115, 22, .55);
}
.site-sidebar .site-sidebar-badge {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: #f97316;
    color: #fff;
    font-size: 8px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 0 9px rgba(249, 115, 22, .35);
}
.site-sidebar nav { padding-bottom: 4px; }
.site-sidebar .old-sidebar-link { min-height: 41px; }
.site-sidebar .old-sidebar-add { min-height: 43px; }
.site-sidebar [data-purpose="user-profile"] { flex: 0 0 auto; }
.site-sidebar { overscroll-behavior: contain; }

/* Masaustu: sabit sol sidebar + genis, dengeli sayfa tuvali */
@media (min-width: 1024px) {
    body:not(.admin-page) {
        padding-left: var(--desktop-sidebar-width) !important;
        padding-bottom: 0 !important;
    }

    body:not(.admin-page) #sidebar {
        width: var(--desktop-sidebar-width) !important;
        transform: translateX(0) !important;
        top: 0 !important;
        bottom: 0 !important;
        z-index: 90 !important;
        visibility: visible !important;
    }
    body:not(.admin-page) #sidebar[aria-hidden="true"] { visibility: visible !important; }
    body:not(.admin-page) #sidebar-overlay { display: none !important; }
    body:not(.admin-page) #sidebar-close-btn { display: none !important; }
    body:not(.admin-page) #sidebar-open-btn { display: none !important; }
    body:not(.admin-page) .site-header-brand { display: flex !important; }
    body:not(.admin-page) .site-header-search { max-width: 720px !important; }

    body:not(.admin-page) > header {
        width: 100%;
        border-bottom-color: rgba(51,65,85,.58) !important;
        box-shadow: 0 10px 30px rgba(2,6,23,.13);
    }
    body:not(.admin-page) > header > .max-w-7xl,
    body:not(.admin-page) > header .max-w-7xl,
    body:not(.admin-page) > footer > .max-w-7xl,
    body:not(.admin-page) > footer .max-w-7xl {
        max-width: var(--site-content-max) !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    body:not(.admin-page) > main,
    body:not(.admin-page) > main.max-w-4xl,
    body:not(.admin-page) > main.max-w-5xl,
    body:not(.admin-page) > main.max-w-6xl,
    body:not(.admin-page) > main.max-w-7xl,
    body:not(.admin-page) > main[data-no-live-patch] {
        width: 100% !important;
        max-width: var(--site-content-max) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        padding-top: 28px !important;
        padding-bottom: 46px !important;
        background: transparent !important;
        min-height: auto !important;
    }

    /* Ilan detay/profil gibi eskiden dar kalan sayfalari yorumlar sayfasi genisligine getirir. */
    body:not(.admin-page) > main.max-w-4xl,
    body:not(.admin-page) > main.max-w-5xl,
    body:not(.admin-page) > main.max-w-6xl { max-width: var(--site-content-max) !important; }

    body:not(.admin-page) > footer { width: 100%; }

    main > .rounded-2xl,
    main > .rounded-3xl,
    main > [class*="rounded-2xl"],
    main > [class*="rounded-3xl"] { box-shadow: var(--site-shadow); }

    main .gap-3 { gap: .9rem !important; }
    main .gap-4 { gap: 1.1rem !important; }
    main .gap-5 { gap: 1.35rem !important; }
    main .gap-6 { gap: 1.6rem !important; }
    main .gap-8 { gap: 2rem !important; }

    /* Mesajlar, masaustu ekraninda sayfa kaydirmadan tam gorunur. */
    body:not(.admin-page) .message-page {
        max-width: var(--site-content-max) !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        min-height: 0 !important;
    }
    body:not(.admin-page) .message-shell {
        height: calc(100dvh - 98px) !important;
        min-height: 480px !important;
        max-height: 920px !important;
        grid-template-columns: minmax(290px, 330px) minmax(0, 1fr) !important;
    }
    body:not(.admin-page) .message-chat { min-height: 0 !important; overflow: hidden !important; }
    body:not(.admin-page) .message-stream { min-height: 0 !important; }
    body:not(.admin-page) .message-page.is-sticky-composer .message-composer {
        position: sticky !important;
        bottom: 0 !important;
        z-index: 25 !important;
        flex: 0 0 auto !important;
        box-shadow: 0 -14px 32px rgba(2, 6, 23, .34) !important;
    }
}

@media (min-width: 1536px) {
    :root { --desktop-sidebar-width: 285px; --site-content-max: 1580px; }
    body:not(.admin-page) > header > .max-w-7xl,
    body:not(.admin-page) > header .max-w-7xl,
    body:not(.admin-page) > footer > .max-w-7xl,
    body:not(.admin-page) > footer .max-w-7xl,
    body:not(.admin-page) > main {
        padding-left: 38px !important;
        padding-right: 38px !important;
    }
}

/* Eski sidebar, mobil ve tablette soldan acilan cekmece olarak kalir. */
@media (max-width: 1023px) {
    body:not(.admin-page) #sidebar.old-mobile-sidebar {
        width: min(275px, calc(100vw - 38px)) !important;
        max-width: calc(100vw - 38px) !important;
        z-index: 1010 !important;
        box-shadow: 12px 0 28px rgba(2, 6, 23, .46);
    }
    body:not(.admin-page) #sidebar-overlay { z-index: 1000 !important; }

    /* Sabit cam efektleri, cekmece hareket ederken dusuk cihazlarda takilma yapar. */
    .nav-shape,
    .glass-premium,
    #sidebar,
    #sidebar [class*="backdrop-blur"] {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .nav-shape { background: rgba(30, 41, 59, .97) !important; }
    #sidebar .transition-all {
        transition-property: color, background-color, border-color, opacity !important;
        transition-duration: .12s !important;
    }
    body.site-menu-open .site-mobile-bottom-nav {
        pointer-events: none;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    body:not(.admin-page) {
        padding-left: 0 !important;
        padding-bottom: calc(var(--mobile-nav-offset) + env(safe-area-inset-bottom, 0px)) !important;
    }
    body > main { padding-left: 20px !important; padding-right: 20px !important; }
    .site-table-scroll > table { min-width: 680px; }
}

/* Mobil */
@media (max-width: 767px) {
    body {
        padding-left: 0 !important;
        padding-bottom: calc(var(--mobile-nav-offset) + env(safe-area-inset-bottom, 0px)) !important;
    }
    body > main {
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 16px !important;
        padding-bottom: 24px !important;
    }
    main.max-w-4xl,
    main.max-w-5xl,
    main.max-w-6xl,
    main.max-w-7xl { max-width: 100% !important; }

    main .rounded-3xl { border-radius: 18px !important; }
    main .rounded-2xl { border-radius: 15px !important; }
    main .rounded-xl { border-radius: 12px !important; }

    h1 { line-height: 1.2; }
    h2, h3 { line-height: 1.3; }

    .site-table-scroll {
        margin-left: -2px;
        width: calc(100% + 4px);
        border: 1px solid rgba(51, 65, 85, .5);
    }
    .site-table-scroll > table { min-width: 640px; }

    form .site-mobile-stack,
    .site-mobile-stack { flex-direction: column !important; align-items: stretch !important; }
    .site-mobile-stack > * { width: 100% !important; }

    [class*="min-w-[980px]"],
    [class*="min-w-[1280px]"],
    [class*="min-w-[760px]"] { max-width: none; }

    #desktop-notif-dropdown,
    #mobile-notif-dropdown {
        width: min(92vw, 360px) !important;
        right: -8px !important;
    }
}

@media (max-width: 380px) {
    body > main { padding-left: 9px !important; padding-right: 9px !important; }
    header > div { padding-left: 10px !important; padding-right: 10px !important; }
    button, a { letter-spacing: normal !important; }
}

/* Mesaj sayfasi aktifken mobil alt bar yazma alanini kapatmasin */
@media (max-width: 767px) {
    body.has-active-chat { padding-bottom: 0 !important; }
    body.has-active-chat #mobile-bottom-nav-content,
    body.has-active-chat #mobile-bottom-nav-toggle { display: none !important; }
}


/* 2026 modern masaustu ust menusu */
.site-top-header {
    background: rgba(8, 13, 24, .92) !important;
    border-bottom: 1px solid rgba(71, 85, 105, .42) !important;
    box-shadow: 0 12px 34px rgba(2, 6, 23, .20);
}
.site-top-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,.9), rgba(59,130,246,.75), transparent);
    pointer-events: none;
}
.site-topbar-shell { min-height: 66px; }
.site-brand-link { max-width: 245px; }
.site-brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg,#fb923c,#ea580c);
    border: 1px solid rgba(251,146,60,.45);
    box-shadow: 0 10px 24px rgba(249,115,22,.22);
}
.site-brand-title { font-size: 15px; line-height: 1.15; font-weight: 900; letter-spacing: -.02em; }
.site-brand-subtitle { max-width: 180px; margin-top: 3px; color: #64748b; font-size: 9px; line-height: 1; font-weight: 700; letter-spacing: .04em; }
.site-pc-quick-nav {
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(51,65,85,.58);
    border-radius: 15px;
    background: rgba(15,23,42,.62);
}
.site-pc-nav-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border-radius: 11px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    transition: color .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.site-pc-nav-link:hover { color: #fff; background: rgba(51,65,85,.72); }
.site-pc-nav-link.is-active { color: #fff; background: linear-gradient(145deg,#f97316,#ea580c); box-shadow: 0 8px 18px rgba(249,115,22,.18); }
.site-pc-nav-link i { font-size: 11px; }
.site-header-search {
    isolation: isolate;
    padding: 3px;
    border: 1px solid rgba(71,85,105,.50);
    border-radius: 17px;
    background:
        linear-gradient(135deg, rgba(249,115,22,.14), rgba(30,41,59,.82) 34%, rgba(15,23,42,.94) 70%, rgba(59,130,246,.12));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 10px 28px rgba(2,6,23,.18);
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.site-header-search:hover,
.site-header-search:focus-within {
    border-color: rgba(249,115,22,.58);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 0 0 3px rgba(249,115,22,.08), 0 12px 30px rgba(2,6,23,.22);
}
.site-top-header .site-header-search button {
    min-height: 42px;
    border-radius: 13px !important;
    border-color: rgba(71,85,105,.46) !important;
    background: linear-gradient(180deg, rgba(15,23,42,.96), rgba(10,16,29,.94)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025) !important;
}
.site-top-header .site-header-search button:hover {
    border-color: rgba(249,115,22,.34) !important;
    background: linear-gradient(180deg, rgba(20,31,51,.98), rgba(11,18,32,.98)) !important;
}
.site-search-leading-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border-radius: 9px;
    color: #fb923c;
    background: rgba(249,115,22,.10);
    border: 1px solid rgba(249,115,22,.18);
}
.site-search-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #64748b;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .02em;
}
.site-search-shortcut span {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(71,85,105,.62);
    border-bottom-color: rgba(100,116,139,.72);
    border-radius: 6px;
    background: rgba(30,41,59,.72);
    box-shadow: inset 0 -1px 0 rgba(2,6,23,.42);
}
#trigger-mobile-search-header {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(71,85,105,.54);
    border-radius: 12px;
    color: #cbd5e1 !important;
    background: linear-gradient(145deg, rgba(30,41,59,.88), rgba(15,23,42,.96)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
#trigger-mobile-search-header:hover,
#trigger-mobile-search-header:active {
    color: #fff !important;
    border-color: rgba(249,115,22,.48);
    background: rgba(249,115,22,.12) !important;
}
.site-search-modal-field {
    padding: 3px;
    border: 1px solid rgba(71,85,105,.52);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(30,41,59,.88), rgba(59,130,246,.10));
    box-shadow: 0 14px 34px rgba(2,6,23,.28);
}
.site-search-modal-field:focus-within {
    border-color: rgba(249,115,22,.62);
    box-shadow: 0 0 0 3px rgba(249,115,22,.08), 0 14px 34px rgba(2,6,23,.30);
}
.site-search-modal-field #modal-search-input {
    min-height: 48px;
    border-radius: 14px !important;
    border-color: rgba(71,85,105,.42) !important;
    background: linear-gradient(180deg, rgba(15,23,42,.98), rgba(9,15,27,.98)) !important;
}
.site-top-header .site-header-actions > .hidden.lg\:flex { gap: 8px !important; }
.site-header-compact .site-topbar-shell { min-height: 56px; padding-top: 7px !important; padding-bottom: 7px !important; }
.site-header-compact .site-brand-mark { width: 34px; height: 34px; border-radius: 11px; }
.site-header-compact .site-brand-subtitle { display: none !important; }
.site-header-compact .site-pc-nav-link { min-height: 32px; padding: 0 9px; }

@media (min-width: 1024px) and (max-width: 1279px) {
    .site-brand-link { max-width: 190px; }
    .site-brand-subtitle { display: none !important; }
    .site-top-header .site-header-search { max-width: 560px !important; }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .site-search-shortcut { display: none; }
}

@media (max-width: 767px) {
    .site-search-modal-field { border-radius: 15px; }
    .site-search-modal-field #modal-search-input { min-height: 46px; border-radius: 12px !important; }
}

@media (max-width: 1023px) {
    .site-top-header { background: #0b1220 !important; }
    .site-topbar-shell { min-height: 58px; padding-top: 9px !important; padding-bottom: 9px !important; }
    .site-brand-mark { width: 34px; height: 34px; border-radius: 11px; }
    .site-brand-title { font-size: 14px; }
}

/* Detay sayfalarinda mobil alt navigasyon tamamen kapaliyken bosluk birakma. */
@media (max-width: 1023px) {
    body.no-mobile-bottom-nav { padding-bottom: 0 !important; }
    body.no-mobile-bottom-nav #mobile-bottom-nav-content,
    body.no-mobile-bottom-nav #mobile-bottom-nav-toggle { display: none !important; }
}

/* 2026-07 performans, marka ve ortak bildirim duzenlemesi */
body {
    background: var(--site-bg) !important;
}

.site-top-header,
.glass-premium,
.site-top-header [class*="backdrop-blur"] {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-top-header::before {
    content: none !important;
    display: none !important;
}

.site-brand-mark {
    display: none !important;
}

.site-brand-link {
    gap: 0 !important;
    max-width: 260px;
}

/* Sunucu mesajlari: hata, basari, uyari ve bilgi icin tek gorunum. */
.site-alert {
    position: relative;
    width: 100%;
    min-height: 50px;
    display: flex !important;
    align-items: flex-start !important;
    gap: 11px !important;
    margin-block: 12px;
    padding: 14px 16px 14px 18px !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 700 !important;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(2, 6, 23, .16) !important;
    animation: none !important;
    transform: none !important;
}

.site-alert::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: currentColor;
    opacity: .92;
}

.site-alert-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: inline-grid !important;
    place-items: center;
    margin-top: -1px;
    border-radius: 8px;
    font-size: 12px !important;
    color: currentColor !important;
    background: rgba(255, 255, 255, .08);
}

.site-alert > span:not(.site-alert-icon),
.site-alert > p,
.site-alert > div {
    min-width: 0;
    overflow-wrap: anywhere;
}

.site-alert a {
    color: inherit !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-alert-error {
    color: #fecaca !important;
    background: #3a111b !important;
    border-color: rgba(244, 63, 94, .42) !important;
}

.site-alert-success {
    color: #bbf7d0 !important;
    background: #0d2f24 !important;
    border-color: rgba(34, 197, 94, .40) !important;
}

.site-alert-warning {
    color: #fde68a !important;
    background: #38260b !important;
    border-color: rgba(245, 158, 11, .42) !important;
}

.site-alert-info {
    color: #bfdbfe !important;
    background: #102b4c !important;
    border-color: rgba(59, 130, 246, .42) !important;
}

/* Masaustunde sayfa basindaki hareketli/dekoratif efektleri tamamen kapat. */
@media (min-width: 1024px) {
    body:not(.admin-page) > main > :first-child .animate-pulse,
    body:not(.admin-page) > main > :first-child .animate-ping,
    body:not(.admin-page) > main > :first-child .animate-bounce,
    body:not(.admin-page) > main > :first-child [class*="animate-"] {
        animation: none !important;
    }
}

/* Mobilde sadece ucuz transform/opacity gecisleri kalir. */
@media (max-width: 1023px) {
    html {
        scroll-behavior: auto !important;
    }

    body {
        background: var(--site-bg) !important;
    }

    [class*="backdrop-blur"],
    [class*="blur-["],
    .glass-premium,
    .nav-shape,
    #advanced-search-modal {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    footer > .absolute.pointer-events-none,
    #advanced-search-modal > .absolute.pointer-events-none {
        display: none !important;
    }

    .animate-pulse,
    .animate-ping,
    .animate-bounce {
        animation: none !important;
    }

    .transition-all {
        transition-property: color, background-color, border-color, opacity, transform !important;
        transition-duration: .12s !important;
    }

    .hover\:scale-105:hover,
    .hover\:scale-110:hover,
    .group:hover .group-hover\:scale-105,
    .group:hover .group-hover\:scale-110,
    .active\:scale-95:active {
        transform: none !important;
    }

    .site-alert {
        min-height: 46px;
        gap: 9px !important;
        margin-block: 9px;
        padding: 12px 13px 12px 16px !important;
        border-radius: 12px !important;
        font-size: 12px !important;
        box-shadow: none !important;
    }

    .site-alert-icon {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
        border-radius: 7px;
        font-size: 11px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto !important; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

@media (max-width: 480px) {
    .site-header-brand {
        flex: 1 1 auto;
        min-width: 0;
    }
    .site-brand-link {
        max-width: calc(100vw - 145px) !important;
        min-width: 0;
    }
    .site-brand-title {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    body:not(.admin-page) main .listing-card {
        content-visibility: auto;
        contain-intrinsic-size: 260px;
    }
}


/* ========================================================================== */
/* Hesap sayfalari, sidebar cikis ve mobil yakinlastirma kilidi                */
/* ========================================================================== */
html, body {
    touch-action: pan-x pan-y;
}

.site-sidebar-logout {
    color: #fecaca;
    border-color: rgba(244, 63, 94, .22);
    background: linear-gradient(135deg, rgba(127, 29, 29, .22), rgba(15, 23, 42, .72));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.site-sidebar-logout:hover {
    color: #fff;
    border-color: rgba(244, 63, 94, .48);
    background: linear-gradient(135deg, rgba(190, 24, 93, .25), rgba(127, 29, 29, .32));
}
.site-sidebar-logout-icon {
    color: #fb7185;
    background: rgba(244, 63, 94, .12);
    border: 1px solid rgba(244, 63, 94, .18);
}

.page-profile,
.page-my-listings,
.page-promotion,
.page-favorites,
.page-notifications {
    background:
        radial-gradient(circle at 18% 0%, rgba(79, 70, 229, .11), transparent 28rem),
        radial-gradient(circle at 85% 8%, rgba(249, 115, 22, .075), transparent 25rem),
        #0f172a !important;
}

.dashboard-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 174px;
    margin-bottom: 22px;
    padding: 28px 30px;
    overflow: hidden;
    border: 1px solid rgba(100, 116, 139, .2);
    border-radius: 24px;
    background:
        linear-gradient(125deg, rgba(30, 41, 59, .96), rgba(15, 23, 42, .88)),
        #111827;
    box-shadow: 0 22px 60px rgba(2, 6, 23, .25), inset 0 1px 0 rgba(255,255,255,.035);
}
.dashboard-page-hero::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    right: -90px;
    top: -100px;
    border-radius: 999px;
    background: rgba(99, 102, 241, .11);
    filter: blur(2px);
    pointer-events: none;
}
.dashboard-page-hero > * { position: relative; z-index: 1; }
.dashboard-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #a5b4fc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.dashboard-page-hero h1 {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -.035em;
}
.dashboard-page-hero p {
    max-width: 650px;
    margin: 10px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.65;
}
.dashboard-primary-action,
.dashboard-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.dashboard-primary-action {
    color: #fff;
    border: 1px solid rgba(129, 140, 248, .48);
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 12px 26px rgba(79, 70, 229, .2);
}
.dashboard-secondary-action {
    color: #cbd5e1;
    border: 1px solid rgba(100, 116, 139, .3);
    background: rgba(15, 23, 42, .7);
}
.dashboard-primary-action:hover,
.dashboard-secondary-action:hover { transform: translateY(-1px); }

.dashboard-stat-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 15px;
    border: 1px solid rgba(100, 116, 139, .18);
    border-radius: 17px;
    background: rgba(15, 23, 42, .72);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}
.dashboard-stat > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #a5b4fc;
    background: rgba(99, 102, 241, .11);
    border: 1px solid rgba(99, 102, 241, .16);
}
.dashboard-stat strong { display: block; color: #f8fafc; font-size: 20px; line-height: 1; }
.dashboard-stat small { display: block; margin-top: 5px; color: #64748b; font-size: 10px; font-weight: 750; }

.dashboard-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 310px;
    padding: 40px 24px;
    text-align: center;
    border: 1px dashed rgba(100, 116, 139, .35);
    border-radius: 22px;
    background: rgba(15, 23, 42, .68);
}
.dashboard-empty-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    border-radius: 18px;
    color: #818cf8;
    font-size: 22px;
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .18);
}
.dashboard-empty-state h1,
.dashboard-empty-state h2 { margin: 0; color: #f1f5f9; font-size: 20px; font-weight: 850; }
.dashboard-empty-state p { max-width: 480px; margin: 8px 0 20px; color: #64748b; font-size: 12px; line-height: 1.65; }

/* Profil */
.account-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr);
    gap: 18px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, .25);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 0%, rgba(99,102,241,.22), transparent 290px),
        linear-gradient(135deg, rgba(30,41,59,.96), rgba(15,23,42,.93));
    box-shadow: 0 28px 70px rgba(2, 6, 23, .28), inset 0 1px 0 rgba(255,255,255,.04);
}
.account-hero-main { display: flex; align-items: center; gap: 18px; min-width: 0; }
.account-avatar-wrap { position: relative; flex: 0 0 auto; }
.account-avatar {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    overflow: hidden;
    border: 3px solid rgba(165,180,252,.72);
    border-radius: 24px;
    color: #e0e7ff;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #312e81, #111827);
    box-shadow: 0 14px 34px rgba(49,46,129,.28);
}
.account-online-dot { position: absolute; right: -3px; bottom: -3px; width: 18px; height: 18px; border: 4px solid #172033; border-radius: 50%; background: #22c55e; }
.account-eyebrow { color: #a5b4fc; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.account-identity-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border-radius: 999px; font-size: 9px; font-weight: 850; }
.account-name { overflow: hidden; margin: 0; color: #fff; font-size: clamp(21px, 4vw, 30px); font-weight: 900; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.account-email { overflow: hidden; margin: 4px 0 0; color: #94a3b8; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.account-quick-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.account-quick-actions a { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 0 10px; color: #cbd5e1; border: 1px solid rgba(100,116,139,.25); border-radius: 9px; background: rgba(15,23,42,.62); font-size: 9px; font-weight: 750; }
.account-quick-actions a:hover { color: #fff; border-color: rgba(129,140,248,.45); }
.account-balance-panel { display: flex; flex-direction: column; justify-content: center; min-height: 130px; padding: 20px; border: 1px solid rgba(52,211,153,.18); border-radius: 20px; background: linear-gradient(145deg, rgba(6,78,59,.2), rgba(15,23,42,.72)); }
.account-balance-label { color: #94a3b8; font-size: 10px; font-weight: 750; }
.account-balance-panel strong { margin-top: 7px; color: #6ee7b7; font-size: clamp(24px, 4vw, 31px); line-height: 1; font-weight: 900; letter-spacing: -.035em; }
.account-balance-note { margin-top: 10px; color: #64748b; font-size: 9px; font-weight: 650; }
.account-balance-note i { margin-right: 4px; color: #34d399; }
.account-stat-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.account-stat-card { display: flex; align-items: center; gap: 10px; min-height: 66px; padding: 12px; border: 1px solid rgba(100,116,139,.18); border-radius: 15px; background: rgba(15,23,42,.55); }
.account-stat-card:hover { border-color: rgba(129,140,248,.42); background: rgba(30,41,59,.72); }
.account-stat-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #a5b4fc; background: rgba(99,102,241,.1); }
.account-stat-card strong { display: block; color: #f8fafc; font-size: 16px; line-height: 1; }
.account-stat-card small { display: block; margin-top: 4px; color: #64748b; font-size: 9px; font-weight: 750; }
.account-tabbar { display: flex; gap: 7px; padding: 7px; border: 1px solid rgba(100,116,139,.2); border-radius: 18px; background: rgba(15,23,42,.82); box-shadow: 0 14px 32px rgba(2,6,23,.16); }
.account-tabbar .profile-tab-btn { display: inline-flex; flex: 1 0 auto; align-items: center; justify-content: center; gap: 8px; min-width: 130px; min-height: 43px; padding: 0 15px; color: #64748b; border: 1px solid transparent; border-radius: 12px; font-size: 11px; font-weight: 800; transition: .16s ease; }
.account-tabbar .profile-tab-btn:hover { color: #cbd5e1; background: rgba(30,41,59,.5); }
.account-tabbar .profile-tab-btn.is-active { color: #fff; border-color: rgba(129,140,248,.35); background: linear-gradient(135deg, #4338ca, #6366f1); box-shadow: 0 9px 22px rgba(79,70,229,.2); }
.page-profile .profile-tab-content > div { border-color: rgba(100,116,139,.19) !important; border-radius: 22px !important; background: linear-gradient(145deg, rgba(30,41,59,.83), rgba(15,23,42,.9)) !important; box-shadow: 0 20px 52px rgba(2,6,23,.2) !important; }
.page-profile .profile-tab-content input,
.page-profile .profile-tab-content textarea,
.page-profile .profile-tab-content select { border-color: rgba(100,116,139,.26) !important; background: rgba(15,23,42,.78) !important; }
.page-profile .profile-tab-content input:focus,
.page-profile .profile-tab-content textarea:focus,
.page-profile .profile-tab-content select:focus { border-color: rgba(129,140,248,.72) !important; box-shadow: 0 0 0 3px rgba(99,102,241,.1) !important; }

/* Ilanlarim */
.my-listings-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.my-listing-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(100,116,139,.2); border-radius: 21px; background: rgba(15,23,42,.82); box-shadow: 0 18px 46px rgba(2,6,23,.18); transition: transform .18s ease, border-color .18s ease; }
.my-listing-card:hover { transform: translateY(-3px); border-color: rgba(129,140,248,.45); }
.my-listing-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #0b1120; }
.my-listing-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.my-listing-card:hover .my-listing-media > img { transform: scale(1.035); }
.my-listing-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: #334155; font-size: 34px; }
.listing-status-pill,
.listing-promotion-pill { position: absolute; top: 12px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; font-size: 9px; font-weight: 850; backdrop-filter: blur(8px); }
.listing-status-pill { left: 12px; color: #cbd5e1; border: 1px solid rgba(148,163,184,.25); background: rgba(15,23,42,.84); }
.listing-status-pill i { font-size: 6px; }
.listing-status-pill.is-active { color: #86efac; border-color: rgba(34,197,94,.28); }
.listing-status-pill.is-active i { color: #22c55e; }
.listing-status-pill.is-pending { color: #fde68a; border-color: rgba(245,158,11,.28); }
.listing-status-pill.is-pending i { color: #f59e0b; }
.listing-promotion-pill { right: 12px; color: #fde68a; border: 1px solid rgba(234,179,8,.3); background: rgba(66,32,6,.82); }
.my-listing-content { flex: 1; padding: 17px; }
.my-listing-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
.my-listing-meta span { overflow: hidden; color: #818cf8; font-size: 9px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.my-listing-content h2 { min-height: 42px; margin: 0; color: #f8fafc; font-size: 14px; line-height: 1.5; font-weight: 850; }
.my-listing-price { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.my-listing-price del { color: #475569; font-size: 10px; }
.my-listing-price strong { color: #a5b4fc; font-size: 18px; font-weight: 900; }
.my-listing-promotion-info { display: flex; align-items: center; gap: 9px; margin-top: 13px; padding: 10px; border: 1px solid rgba(234,179,8,.17); border-radius: 12px; color: #facc15; background: rgba(234,179,8,.055); font-size: 9px; font-weight: 800; }
.my-listing-promotion-info small { display: block; margin-top: 2px; color: #64748b; font-weight: 650; }
.my-listing-actions { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border-top: 1px solid rgba(100,116,139,.16); background: rgba(100,116,139,.13); }
.my-listing-actions a,
.my-listing-actions button { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 100%; min-height: 60px; color: #94a3b8; background: #111827; font-size: 9px; font-weight: 750; }
.my-listing-actions a:hover,
.my-listing-actions button:hover { color: #fff; background: #1e293b; }
.my-listing-actions .is-doping { color: #facc15; }
.my-listing-actions button { color: #fb7185; }

/* Doping */
.promotion-page-hero::after { background: rgba(234,179,8,.12); }
.promotion-page-hero .dashboard-page-kicker { color: #fde047; }
.promotion-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 20px; align-items: start; }
.promotion-summary-card { position: sticky; top: 90px; padding: 18px; border: 1px solid rgba(100,116,139,.2); border-radius: 21px; background: rgba(15,23,42,.84); box-shadow: 0 18px 44px rgba(2,6,23,.2); }
.promotion-listing-preview { display: flex; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid rgba(100,116,139,.16); }
.promotion-summary-icon { display: grid; place-items: center; width: 39px; height: 39px; flex: 0 0 auto; color: #fde047; border-radius: 12px; background: rgba(234,179,8,.1); }
.promotion-listing-preview small,
.promotion-listing-preview span { display: block; color: #64748b; font-size: 9px; }
.promotion-listing-preview strong { display: -webkit-box; margin: 3px 0 4px; overflow: hidden; color: #e2e8f0; font-size: 11px; line-height: 1.45; font-weight: 800; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.promotion-balance-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 0; color: #64748b; font-size: 10px; }
.promotion-balance-row strong { color: #6ee7b7; font-size: 15px; }
.promotion-active-box { padding: 12px; border: 1px solid rgba(234,179,8,.18); border-radius: 13px; background: rgba(234,179,8,.06); }
.promotion-active-box span { display: block; color: #eab308; font-size: 9px; font-weight: 850; }
.promotion-active-box strong { display: block; margin-top: 7px; color: #fef3c7; font-size: 11px; }
.promotion-active-box small { display: block; margin-top: 4px; color: #64748b; font-size: 8px; }
.promotion-no-active { padding: 11px; color: #64748b; border: 1px dashed rgba(100,116,139,.25); border-radius: 12px; font-size: 9px; text-align: center; }
.promotion-deposit-link { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 39px; margin-top: 12px; color: #c7d2fe; border: 1px solid rgba(99,102,241,.23); border-radius: 11px; background: rgba(99,102,241,.09); font-size: 10px; font-weight: 800; }
.promotion-info-list { display: grid; gap: 8px; margin-top: 16px; padding-top: 15px; border-top: 1px solid rgba(100,116,139,.14); }
.promotion-info-list span { color: #64748b; font-size: 8px; font-weight: 650; }
.promotion-info-list i { margin-right: 6px; color: #34d399; }
.promotion-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 0 0 14px; }
.promotion-section-heading span { color: #eab308; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.promotion-section-heading h2 { margin: 4px 0 0; color: #f8fafc; font-size: 18px; font-weight: 900; }
.promotion-section-heading > small { color: #64748b; font-size: 9px; }
.promotion-package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.promotion-package-card { position: relative; display: flex; flex-direction: column; min-height: 340px; padding: 20px; overflow: hidden; border: 1px solid rgba(100,116,139,.2); border-radius: 21px; background: linear-gradient(145deg, rgba(30,41,59,.8), rgba(15,23,42,.9)); box-shadow: 0 18px 42px rgba(2,6,23,.17); }
.promotion-package-card.is-featured { border-color: rgba(234,179,8,.38); box-shadow: 0 20px 50px rgba(113,63,18,.14); }
.promotion-popular-label { position: absolute; top: 13px; right: 13px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; color: #422006; border-radius: 999px; background: #facc15; font-size: 8px; font-weight: 900; }
.promotion-placement { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: #fde047; border: 1px solid rgba(234,179,8,.2); border-radius: 999px; background: rgba(234,179,8,.08); font-size: 8px; font-weight: 850; }
.promotion-package-top h3 { margin: 15px 0 8px; color: #fff; font-size: 18px; font-weight: 900; }
.promotion-description { min-height: 54px; color: #94a3b8 !important; font-size: 10px !important; line-height: 1.65; }
.promotion-package-features { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px 0; }
.promotion-package-features > span { display: grid; grid-template-columns: 22px 1fr; column-gap: 7px; padding: 10px; border: 1px solid rgba(100,116,139,.16); border-radius: 12px; background: rgba(15,23,42,.6); }
.promotion-package-features i { grid-row: 1 / 3; align-self: center; color: #facc15; }
.promotion-package-features small { color: #64748b; font-size: 8px; }
.promotion-package-features strong { color: #e2e8f0; font-size: 9px; }
.promotion-package-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(100,116,139,.16); }
.promotion-package-footer small { display: block; color: #64748b; font-size: 8px; }
.promotion-package-footer strong { display: block; margin-top: 3px; color: #f8fafc; font-size: 19px; font-weight: 900; }
.promotion-package-footer button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 39px; padding: 0 13px; color: #422006; border-radius: 11px; background: #facc15; font-size: 9px; font-weight: 900; }
.promotion-package-footer button:hover { background: #fde047; }

/* Favoriler */
.favorites-page-hero::after { background: rgba(244,63,94,.1); }
.favorites-page-hero .dashboard-page-kicker { color: #fda4af; }
.favorites-count-box { display: flex; align-items: center; gap: 10px; min-width: 145px; padding: 14px 16px; border: 1px solid rgba(244,63,94,.18); border-radius: 16px; background: rgba(244,63,94,.07); }
.favorites-count-box strong { color: #fda4af; font-size: 24px; line-height: 1; }
.favorites-count-box span { color: #94a3b8; font-size: 9px; font-weight: 750; }
.favorites-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.favorite-listing-card { position: relative; display: flex; flex-direction: column; overflow: visible; border: 1px solid rgba(100,116,139,.19); border-radius: 20px; background: rgba(15,23,42,.84); box-shadow: 0 18px 46px rgba(2,6,23,.18); }
.favorite-card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 19px 19px 0 0; background: #0b1120; }
.favorite-card-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.favorite-listing-card:hover .favorite-card-media > img { transform: scale(1.035); }
.favorite-card-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: #334155; font-size: 32px; }
.favorite-remove-form { position: absolute; top: 11px; right: 11px; z-index: 3; }
.favorite-remove-form button { display: grid; place-items: center; width: 35px; height: 35px; color: #fff; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(225,29,72,.92); box-shadow: 0 8px 22px rgba(136,19,55,.32); }
.favorite-promotion-badge { position: absolute; left: 11px; bottom: 11px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; color: #fde68a; border: 1px solid rgba(234,179,8,.26); border-radius: 999px; background: rgba(66,32,6,.86); font-size: 8px; font-weight: 850; }
.favorite-card-body { flex: 1; padding: 16px; }
.favorite-card-category { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; }
.favorite-card-category span { color: #818cf8; font-size: 8px; font-weight: 850; }
.favorite-card-body h2 { min-height: 42px; margin: 0; color: #f8fafc; font-size: 14px; line-height: 1.5; font-weight: 850; }
.favorite-card-body h2 a:hover { color: #fb923c; }
.favorite-card-body p { display: -webkit-box; min-height: 38px; margin: 8px 0 0; overflow: hidden; color: #64748b; font-size: 10px; line-height: 1.65; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.favorite-price-row { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: 15px; padding-top: 13px; border-top: 1px solid rgba(100,116,139,.14); }
.favorite-price-row del { display: block; color: #475569; font-size: 8px; }
.favorite-price-row strong { display: block; color: #f8fafc; font-size: 17px; font-weight: 900; }
.favorite-price-row > a { display: inline-flex; align-items: center; gap: 6px; min-height: 34px; padding: 0 11px; color: #fff; border-radius: 10px; background: #ea580c; font-size: 9px; font-weight: 850; }
.favorite-card-seller { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-top: 1px solid rgba(100,116,139,.14); border-radius: 0 0 20px 20px; background: rgba(2,6,23,.22); }
.favorite-seller-profile { display: flex; align-items: center; gap: 9px; min-width: 0; }
.favorite-seller-avatar { display: grid; place-items: center; width: 31px; height: 31px; flex: 0 0 auto; overflow: hidden; color: #fff; border: 1px solid rgba(100,116,139,.25); border-radius: 10px; background: #1e293b; font-size: 9px; }
.favorite-seller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.favorite-seller-profile strong { display: block; max-width: 150px; overflow: hidden; color: #cbd5e1; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.favorite-seller-profile small { display: block; margin-top: 2px; color: #64748b; font-size: 7px; font-weight: 700; }
.favorite-seller-profile small.is-online { color: #4ade80; }
.favorite-card-menu { position: relative; }
.favorite-card-menu > button { display: grid; place-items: center; width: 31px; height: 31px; color: #94a3b8; border: 1px solid rgba(100,116,139,.22); border-radius: 10px; background: rgba(30,41,59,.55); }
.favorite-card-menu > button:hover { color: #fff; border-color: rgba(148,163,184,.42); }
.page-favorites .card-dropdown-menu { position: absolute; right: 0; bottom: calc(100% + 8px); z-index: 80; width: 150px; overflow: hidden; border: 1px solid rgba(100,116,139,.34); border-radius: 12px; background: #0b1220; box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.page-favorites .card-dropdown-menu.hidden { display: none !important; }
.page-favorites .card-dropdown-menu:not(.hidden) { display: block !important; }
.page-favorites .card-dropdown-menu a { display: flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 11px; color: #cbd5e1; border-bottom: 1px solid rgba(100,116,139,.15); font-size: 9px; font-weight: 750; }
.page-favorites .card-dropdown-menu a:last-child { border-bottom: 0; }
.page-favorites .card-dropdown-menu a:hover { color: #fff; background: #1e293b; }

/* Bildirimler */
.notifications-page-hero::after { background: rgba(249,115,22,.11); }
.notifications-page-hero .dashboard-page-kicker { color: #fdba74; }
.notification-summary-box { display: flex; align-items: center; gap: 11px; min-width: 160px; padding: 14px 16px; border: 1px solid rgba(34,197,94,.17); border-radius: 16px; background: rgba(34,197,94,.065); }
.notification-summary-box > span { display: grid; place-items: center; width: 35px; height: 35px; color: #4ade80; border-radius: 11px; background: rgba(34,197,94,.1); }
.notification-summary-box strong { display: block; color: #f8fafc; font-size: 18px; line-height: 1; }
.notification-summary-box small { display: block; margin-top: 4px; color: #64748b; font-size: 8px; font-weight: 750; }
.notifications-panel { padding: 22px; border: 1px solid rgba(100,116,139,.19); border-radius: 22px; background: rgba(15,23,42,.78); box-shadow: 0 20px 52px rgba(2,6,23,.19); }
.notifications-panel-head { display: flex; align-items: end; justify-content: space-between; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(100,116,139,.15); }
.notifications-panel-head span { color: #fb923c; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.notifications-panel-head h2 { margin: 4px 0 0; color: #f8fafc; font-size: 17px; font-weight: 900; }
.notifications-panel-head > a { display: inline-flex; align-items: center; gap: 6px; color: #94a3b8; font-size: 9px; font-weight: 750; }
.notifications-panel-head > a:hover { color: #fff; }
.notifications-list { display: grid; gap: 11px; }
.notification-card { display: flex; gap: 13px; padding: 15px; border: 1px solid rgba(100,116,139,.17); border-radius: 16px; background: rgba(30,41,59,.45); transition: border-color .16s ease, transform .16s ease; }
.notification-card:hover { transform: translateY(-1px); border-color: rgba(148,163,184,.34); }
.notification-card-icon { display: grid; place-items: center; width: 39px; height: 39px; flex: 0 0 auto; color: #a5b4fc; border: 1px solid rgba(99,102,241,.16); border-radius: 12px; background: rgba(99,102,241,.09); }
.notification-card.is-order .notification-card-icon { color: #fdba74; border-color: rgba(249,115,22,.17); background: rgba(249,115,22,.08); }
.notification-card.is-money .notification-card-icon { color: #6ee7b7; border-color: rgba(16,185,129,.17); background: rgba(16,185,129,.08); }
.notification-card.is-security .notification-card-icon { color: #93c5fd; border-color: rgba(59,130,246,.17); background: rgba(59,130,246,.08); }
.notification-card.is-message .notification-card-icon { color: #c4b5fd; border-color: rgba(139,92,246,.17); background: rgba(139,92,246,.08); }
.notification-card-content { flex: 1; min-width: 0; }
.notification-card-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.notification-kind { display: block; margin-bottom: 3px; color: #64748b; font-size: 7px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.notification-card h2 { margin: 0; color: #e2e8f0; font-size: 12px; font-weight: 850; }
.notification-card time { display: inline-flex; align-items: center; gap: 5px; color: #475569; font-size: 8px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; }
.notification-card p { margin: 7px 0 0; color: #94a3b8; font-size: 10px; line-height: 1.65; }
.notification-action-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; color: #fb923c; font-size: 9px; font-weight: 850; }
.notification-action-link:hover { color: #fdba74; }
.notifications-load-more { display: flex; justify-content: center; padding-top: 18px; }
.notifications-load-more button { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 16px; color: #cbd5e1; border: 1px solid rgba(100,116,139,.26); border-radius: 12px; background: rgba(30,41,59,.55); font-size: 9px; font-weight: 800; }
.notifications-load-more button:hover { color: #fff; border-color: rgba(148,163,184,.42); }
.notifications-empty-state { border: 0; background: transparent; }

@media (max-width: 1100px) {
    .my-listings-grid,
    .favorites-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .dashboard-page-hero { align-items: flex-start; flex-direction: column; min-height: auto; padding: 23px; }
    .dashboard-page-hero .dashboard-primary-action,
    .dashboard-page-hero .dashboard-secondary-action { width: 100%; }
    .dashboard-stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .account-hero { grid-template-columns: 1fr; padding: 18px; }
    .account-balance-panel { min-height: 105px; }
    .account-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .promotion-layout { grid-template-columns: 1fr; }
    .promotion-summary-card { position: static; }
    .promotion-package-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .account-hero-main { align-items: flex-start; }
    .account-avatar { width: 68px; height: 68px; border-radius: 19px; font-size: 25px; }
    .account-quick-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; }
    .account-quick-actions a { justify-content: center; padding: 0 6px; }
    .account-tabbar .profile-tab-btn { min-width: 105px; min-height: 40px; padding: 0 10px; font-size: 10px; }
    .my-listings-grid,
    .favorites-grid { grid-template-columns: 1fr; gap: 14px; }
    .my-listing-card:hover { transform: none; }
    .notification-card { padding: 13px; }
    .notification-card-top { flex-direction: column; gap: 5px; }
    .notification-card time { order: -1; }
    .notifications-panel { padding: 15px; border-radius: 18px; }
    .notifications-panel-head { align-items: flex-start; flex-direction: column; }
    .favorite-seller-profile strong { max-width: 190px; }
}

@media (max-width: 420px) {
    .dashboard-stat-row { gap: 8px; }
    .dashboard-stat { min-height: 72px; padding: 11px; }
    .dashboard-stat > span { width: 32px; height: 32px; }
    .dashboard-stat strong { font-size: 17px; }
    .account-hero-main { gap: 12px; }
    .account-stat-grid { gap: 7px; }
    .account-stat-card { min-height: 60px; padding: 9px; }
    .account-stat-icon { width: 30px; height: 30px; }
    .promotion-package-footer { align-items: stretch; flex-direction: column; }
    .promotion-package-footer button { width: 100%; }
    .notification-card-icon { width: 34px; height: 34px; }
}

/* Profil - sade site temasi */
.page-profile .account-hero {
    gap: 16px;
    padding: 20px;
    border: 0;
    border-radius: 18px;
    background: #111827;
    box-shadow: none;
}
.page-profile .account-avatar {
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: #1f2937;
    box-shadow: none;
}
.page-profile .account-online-dot {
    width: 14px;
    height: 14px;
    right: -2px;
    bottom: -2px;
    border: 3px solid #111827;
}
.page-profile .account-eyebrow { color: #f97316; }
.page-profile .account-identity-badge {
    border: 0 !important;
    color: #cbd5e1 !important;
    background: #1f2937 !important;
}
.page-profile .account-name { font-size: clamp(20px, 4vw, 27px); }
.page-profile .account-quick-actions a {
    border: 0;
    color: #cbd5e1;
    background: #1f2937;
    box-shadow: none;
}
.page-profile .account-quick-actions a:hover {
    border: 0;
    color: #fff;
    background: #273449;
}
.page-profile .account-balance-panel {
    min-height: 112px;
    border: 0;
    border-radius: 15px;
    background: #0f172a;
}
.page-profile .account-balance-panel strong { color: #f97316; }
.page-profile .account-balance-note i { color: #f97316; }
.page-profile .account-stat-card {
    border: 0;
    border-radius: 13px;
    background: #0f172a;
    box-shadow: none;
}
.page-profile .account-stat-card:hover { border: 0; background: #1f2937; }
.page-profile .account-stat-icon { color: #f97316; background: #1f2937; }

.page-profile .account-tabbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 5px;
    overflow: visible !important;
    border: 0;
    border-radius: 14px;
    background: #111827;
    box-shadow: none;
}
.page-profile .account-tabbar .profile-tab-btn {
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 10px;
    color: #94a3b8;
    background: transparent;
    box-shadow: none !important;
}
.page-profile .account-tabbar .profile-tab-btn:hover {
    color: #e2e8f0;
    background: #1f2937;
}
.page-profile .account-tabbar .profile-tab-btn.is-active {
    border: 0 !important;
    color: #fff;
    background: #ea580c;
    box-shadow: none !important;
}
.page-profile .account-tabbar .profile-tab-btn:focus,
.page-profile .account-tabbar .profile-tab-btn:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.page-profile .profile-tab-content > div {
    border: 1px solid #1f2937 !important;
    border-radius: 16px !important;
    background: #111827 !important;
    box-shadow: none !important;
}
.page-profile .profile-tab-content > div > .absolute { display: none !important; }
.page-profile .profile-tab-content h3 {
    border-color: #1f2937 !important;
    color: #e5e7eb !important;
}
.page-profile .profile-tab-content h3 i,
.page-profile .profile-tab-content p i { color: #f97316 !important; }
.page-profile .profile-tab-content input,
.page-profile .profile-tab-content textarea,
.page-profile .profile-tab-content select {
    border: 1px solid #263244 !important;
    background: #0f172a !important;
    box-shadow: none !important;
}
.page-profile .profile-tab-content input:focus,
.page-profile .profile-tab-content textarea:focus,
.page-profile .profile-tab-content select:focus {
    border-color: #f97316 !important;
    outline: 0 !important;
    box-shadow: none !important;
}
.page-profile .profile-tab-content input[type="file"]::file-selector-button {
    border: 0;
    color: #fff;
    background: #273449;
    box-shadow: none;
}
.page-profile .profile-tab-content form button[type="submit"] {
    border: 0 !important;
    outline: 0 !important;
    color: #fff !important;
    background: #ea580c !important;
    box-shadow: none !important;
}
.page-profile .profile-tab-content form button[type="submit"]:hover { background: #f97316 !important; }
.page-profile .profile-tab-content form button[type="submit"]:focus,
.page-profile .profile-tab-content form button[type="submit"]:focus-visible {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}
.page-profile .profile-tab-content form:has(input[name="disable_2fa"]) button[type="submit"] {
    background: #b91c1c !important;
}

.page-profile #tab-content-hesap .grid > div,
.page-profile #tab-content-hesap .grid > a {
    border: 0 !important;
    color: #cbd5e1 !important;
    background: #0f172a !important;
    box-shadow: none !important;
}
.page-profile #tab-content-hesap .grid > a:hover { background: #1f2937 !important; }
.page-profile #tab-content-hesap .grid > div span:last-child,
.page-profile #tab-content-hesap .grid > a div:first-child { color: #f97316 !important; }
.page-profile #tab-content-hesap .grid:last-child > a {
    color: #fff !important;
    background: #273449 !important;
}
.page-profile #tab-content-hesap .grid:last-child > a:first-child { background: #ea580c !important; }

.page-profile #tab-content-guvenlik > div > div:not(.absolute),
.page-profile #tab-content-guvenlik form[class*="bg-"] {
    border-color: #1f2937 !important;
    background: #0f172a !important;
    box-shadow: none !important;
}

.page-profile #tab-content-menu > div {
    gap: 12px !important;
    border: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}
.page-profile #tab-content-menu > div > a,
.page-profile #tab-content-menu > div > div {
    border: 0 !important;
    border-radius: 14px !important;
    background: #111827 !important;
    box-shadow: none !important;
}
.page-profile #tab-content-menu > div > a:hover { background: #1f2937 !important; }
.page-profile #tab-content-menu > div > a > .absolute { display: none !important; }
.page-profile #tab-content-menu h4 { color: #e5e7eb !important; border-color: #273449 !important; }
.page-profile #tab-content-menu h4 i,
.page-profile #tab-content-menu > div > a > div i,
.page-profile #tab-content-menu a span i { color: #f97316 !important; }
.page-profile #tab-content-menu > div > div a {
    border: 0 !important;
    color: #cbd5e1 !important;
    background: #0f172a !important;
    box-shadow: none !important;
}
.page-profile #tab-content-menu > div > div a:hover { color: #fff !important; background: #1f2937 !important; }
.page-profile #tab-content-menu a:focus,
.page-profile #tab-content-menu a:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 620px) {
    .page-profile .account-hero { padding: 15px; border-radius: 15px; }
    .page-profile .account-avatar { width: 62px; height: 62px; border-radius: 14px; }
    .page-profile .account-tabbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-profile .account-tabbar .profile-tab-btn { min-width: 0; min-height: 40px; font-size: 10px; }
    .page-profile .profile-tab-content > div { padding: 18px !important; border-radius: 14px !important; }
}

/* Kullanici profil detay - sade turuncu/koyu tema */
.page-profile-detail .seller-profile-page {
    padding: 28px 16px 48px;
}
.page-profile-detail .seller-profile-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.page-profile-detail .seller-profile-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px;
    border: 1px solid #1f2937;
    border-radius: 18px;
    background: #111827;
}
.page-profile-detail .seller-profile-identity {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}
.page-profile-detail .seller-profile-avatar-wrap {
    position: relative;
    flex: 0 0 auto;
}
.page-profile-detail .seller-profile-avatar {
    width: 92px;
    height: 92px;
    overflow: hidden;
    border: 3px solid #1f2937;
    border-radius: 20px;
    background: #0f172a;
}
.page-profile-detail .seller-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-profile-detail .seller-profile-avatar > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #f97316;
    font-size: 34px;
    font-weight: 900;
}
.page-profile-detail .seller-profile-status-dot {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 17px;
    height: 17px;
    border: 4px solid #111827;
    border-radius: 50%;
    background: #64748b;
}
.page-profile-detail .seller-profile-status-dot.is-online { background: #22c55e; }
.page-profile-detail .seller-profile-copy { min-width: 0; }
.page-profile-detail .seller-profile-name-line {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.page-profile-detail .seller-profile-eyebrow,
.page-profile-detail .seller-section-eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #f97316;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.page-profile-detail .seller-profile-name-line h1 {
    margin: 0;
    color: #f8fafc;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 850;
    line-height: 1.15;
    word-break: break-word;
}
.page-profile-detail .seller-profile-online-label {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    margin-top: 2px;
    padding: 0 9px;
    border-radius: 8px;
    color: #94a3b8;
    background: #1f2937;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}
.page-profile-detail .seller-profile-online-label.is-online { color: #bbf7d0; }
.page-profile-detail .seller-profile-fullname {
    margin: 5px 0 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 650;
}
.page-profile-detail .seller-profile-bio {
    max-width: 650px;
    margin-top: 13px;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.7;
}
.page-profile-detail .seller-profile-bio.is-empty { color: #64748b; }
.page-profile-detail .seller-profile-bio p:last-child { margin-bottom: 0; }
.page-profile-detail .seller-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 14px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
}
.page-profile-detail .seller-profile-meta i {
    margin-right: 5px;
    color: #f97316;
}
.page-profile-detail .seller-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
}
.page-profile-detail .seller-profile-actions {
    display: flex;
    flex: 0 0 190px;
    flex-direction: column;
    gap: 8px;
}
.page-profile-detail .seller-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 43px;
    padding: 0 14px;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 11px;
    box-shadow: none !important;
    font-size: 11px;
    font-weight: 850;
    transition: background .15s ease, color .15s ease;
}
.page-profile-detail .seller-action-primary { color: #fff; background: #ea580c; }
.page-profile-detail .seller-action-primary:hover { color: #fff; background: #f97316; }
.page-profile-detail .seller-action-muted { color: #cbd5e1; background: #1f2937; }
.page-profile-detail .seller-action-muted:hover { color: #fff; background: #273449; }

.page-profile-detail .seller-profile-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}
.page-profile-detail .seller-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 14px;
    border: 1px solid #1f2937;
    border-radius: 14px;
    background: #111827;
}
.page-profile-detail .seller-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #f97316;
    background: #1f2937;
}
.page-profile-detail .seller-stat-card div { min-width: 0; }
.page-profile-detail .seller-stat-card small {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}
.page-profile-detail .seller-stat-card strong {
    display: block;
    overflow: hidden;
    color: #e5e7eb;
    font-size: 17px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-profile-detail .seller-listings-section {
    margin-top: 28px;
}
.page-profile-detail .seller-listings-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #1f2937;
}
.page-profile-detail .seller-listings-head h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 21px;
    font-weight: 850;
}
.page-profile-detail .seller-listings-head p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 11px;
}
.page-profile-detail .seller-listing-count {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 9px;
    color: #cbd5e1;
    background: #1f2937;
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}
.page-profile-detail .seller-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.page-profile-detail .seller-listing-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #1f2937;
    border-radius: 15px;
    background: #111827;
    transition: border-color .15s ease, transform .15s ease;
}
.page-profile-detail .seller-listing-card:hover {
    border-color: #334155;
    transform: translateY(-2px);
}
.page-profile-detail .seller-listing-image {
    position: relative;
    display: block;
    height: 178px;
    overflow: hidden;
    background: #0b1220;
}
.page-profile-detail .seller-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
.page-profile-detail .seller-listing-card:hover .seller-listing-image img { transform: scale(1.025); }
.page-profile-detail .seller-listing-image > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #475569;
    font-size: 28px;
}
.page-profile-detail .seller-listing-stock {
    position: absolute;
    right: 9px;
    bottom: 9px;
    padding: 5px 8px;
    border-radius: 7px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, .9);
    font-size: 9px;
    font-weight: 850;
}
.page-profile-detail .seller-listing-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 14px;
}
.page-profile-detail .seller-listing-category {
    align-self: flex-start;
    max-width: 100%;
    overflow: hidden;
    padding: 4px 7px;
    border-radius: 6px;
    color: #fdba74;
    background: #292016;
    font-size: 8px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-profile-detail .seller-listing-content h3 {
    margin: 10px 0 5px;
    overflow: hidden;
    color: #f1f5f9;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-profile-detail .seller-listing-content h3 a:hover { color: #fb923c; }
.page-profile-detail .seller-listing-content p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #64748b;
    font-size: 10px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.page-profile-detail .seller-listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid #1f2937;
    background: #0f172a;
}
.page-profile-detail .seller-listing-price del {
    display: block;
    color: #64748b;
    font-size: 8px;
    line-height: 1;
}
.page-profile-detail .seller-listing-price strong {
    display: block;
    margin-top: 3px;
    color: #fb923c;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}
.page-profile-detail .seller-listing-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 0 10px;
    border: 0 !important;
    border-radius: 8px;
    color: #e2e8f0;
    background: #1f2937;
    box-shadow: none !important;
    font-size: 9px;
    font-weight: 850;
}
.page-profile-detail .seller-listing-open:hover { color: #fff; background: #273449; }
.page-profile-detail .seller-listings-empty {
    padding: 58px 20px;
    border: 1px dashed #334155;
    border-radius: 16px;
    color: #64748b;
    text-align: center;
    background: #111827;
}
.page-profile-detail .seller-listings-empty i {
    display: block;
    margin-bottom: 12px;
    color: #f97316;
    font-size: 30px;
}
.page-profile-detail .seller-listings-empty strong {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
}
.page-profile-detail .seller-listings-empty p { margin: 5px 0 0; font-size: 10px; }

@media (max-width: 900px) {
    .page-profile-detail .seller-profile-hero { align-items: stretch; flex-direction: column; }
    .page-profile-detail .seller-profile-actions { display: grid; flex: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-profile-detail .seller-profile-actions .seller-action:only-child { grid-column: 1 / -1; }
    .page-profile-detail .seller-profile-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-profile-detail .seller-listings-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
    .page-profile-detail .seller-profile-page { padding: 14px 12px 36px; }
    .page-profile-detail .seller-profile-hero { gap: 18px; padding: 16px; border-radius: 15px; }
    .page-profile-detail .seller-profile-identity { gap: 13px; }
    .page-profile-detail .seller-profile-avatar { width: 70px; height: 70px; border-radius: 16px; }
    .page-profile-detail .seller-profile-avatar > span { font-size: 27px; }
    .page-profile-detail .seller-profile-name-line { display: block; }
    .page-profile-detail .seller-profile-online-label { margin-top: 7px; }
    .page-profile-detail .seller-profile-bio { font-size: 11px; }
    .page-profile-detail .seller-profile-meta { display: grid; gap: 6px; }
    .page-profile-detail .seller-profile-actions { grid-template-columns: 1fr; }
    .page-profile-detail .seller-profile-actions .seller-action:only-child { grid-column: auto; }
    .page-profile-detail .seller-profile-stats { gap: 8px; }
    .page-profile-detail .seller-stat-card { gap: 9px; min-height: 68px; padding: 10px; }
    .page-profile-detail .seller-stat-icon { flex-basis: 33px; width: 33px; height: 33px; }
    .page-profile-detail .seller-stat-card strong { font-size: 14px; }
    .page-profile-detail .seller-listings-section { margin-top: 23px; }
    .page-profile-detail .seller-listings-head { align-items: flex-start; }
    .page-profile-detail .seller-listings-head h2 { font-size: 18px; }
    .page-profile-detail .seller-listings-head p { display: none; }
    .page-profile-detail .seller-listings-grid { grid-template-columns: 1fr; }
    .page-profile-detail .seller-listing-image { height: 190px; }
    .page-profile-detail .seller-listing-card:hover { transform: none; }
}
@media (max-width: 390px) {
    .page-profile-detail .seller-profile-identity { align-items: center; flex-direction: column; text-align: center; }
    .page-profile-detail .seller-profile-name-line { text-align: center; }
    .page-profile-detail .seller-profile-bio { text-align: left; }
    .page-profile-detail .seller-profile-meta { justify-items: center; }
    .page-profile-detail .seller-profile-badges { justify-content: center; }
    .page-profile-detail .seller-stat-card { align-items: flex-start; flex-direction: column; }
}

/* Profil detay - mevcut satici degerlendirmeleri */
.page-profile-detail .seller-reviews-section {
    margin-top: 28px;
}
.page-profile-detail .seller-reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 0 2px 14px;
    border-bottom: 1px solid #1f2937;
}
.page-profile-detail .seller-reviews-head h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 21px;
    font-weight: 850;
}
.page-profile-detail .seller-reviews-head p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 11px;
}
.page-profile-detail .seller-review-count {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 9px;
    color: #cbd5e1;
    background: #1f2937;
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}
.page-profile-detail .seller-review-overview {
    display: grid;
    grid-template-columns: minmax(170px, .75fr) minmax(240px, 1.15fr) minmax(280px, 1.5fr);
    gap: 12px;
    padding: 16px;
    border: 1px solid #1f2937;
    border-radius: 15px;
    background: #111827;
}
.page-profile-detail .seller-review-score {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 155px;
    padding: 14px;
    border-radius: 12px;
    background: #0f172a;
    text-align: center;
}
.page-profile-detail .seller-review-score > strong {
    color: #f8fafc;
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}
.page-profile-detail .seller-review-stars,
.page-profile-detail .seller-review-card-stars {
    display: flex;
    gap: 3px;
    color: #f97316;
}
.page-profile-detail .seller-review-stars {
    margin-top: 10px;
    font-size: 13px;
}
.page-profile-detail .seller-review-score > span {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 750;
}
.page-profile-detail .seller-review-score > small {
    margin-top: 9px;
    color: #cbd5e1;
    font-size: 9px;
    font-weight: 750;
}
.page-profile-detail .seller-review-score > small i {
    margin-right: 4px;
    color: #f97316;
}
.page-profile-detail .seller-rating-bars {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    padding: 10px 4px;
}
.page-profile-detail .seller-rating-bar-row {
    display: grid;
    align-items: center;
    grid-template-columns: 31px minmax(80px, 1fr) 25px;
    gap: 8px;
}
.page-profile-detail .seller-rating-bar-row > span,
.page-profile-detail .seller-rating-bar-row > em {
    color: #94a3b8;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}
.page-profile-detail .seller-rating-bar-row > span i {
    color: #f97316;
    font-size: 7px;
}
.page-profile-detail .seller-rating-bar-row > em { text-align: right; }
.page-profile-detail .seller-rating-bar-track {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #1f2937;
}
.page-profile-detail .seller-rating-bar-track b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #f97316;
}
.page-profile-detail .seller-review-criteria {
    display: grid;
    align-content: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.page-profile-detail .seller-review-criterion {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 68px;
    padding: 10px;
    border-radius: 11px;
    background: #0f172a;
}
.page-profile-detail .seller-review-criterion > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #f97316;
    background: #1f2937;
    font-size: 11px;
}
.page-profile-detail .seller-review-criterion small {
    display: block;
    color: #64748b;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}
.page-profile-detail .seller-review-criterion strong {
    display: block;
    margin-top: 2px;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 900;
}
.page-profile-detail .seller-review-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.page-profile-detail .seller-review-card {
    min-width: 0;
    padding: 15px;
    border: 1px solid #1f2937;
    border-radius: 14px;
    background: #111827;
}
.page-profile-detail .seller-review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.page-profile-detail .seller-review-author {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.page-profile-detail .seller-review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #f97316;
    background: #1f2937;
    font-size: 13px;
    font-weight: 900;
}
.page-profile-detail .seller-review-author div { min-width: 0; }
.page-profile-detail .seller-review-author strong {
    display: block;
    overflow: hidden;
    color: #e5e7eb;
    font-size: 11px;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-profile-detail .seller-review-author small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 8px;
    font-weight: 700;
}
.page-profile-detail .seller-review-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 27px;
    padding: 0 8px;
    border-radius: 8px;
    color: #fed7aa;
    background: #292016;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}
.page-profile-detail .seller-review-rating i { font-size: 8px; }
.page-profile-detail .seller-review-listing {
    margin-top: 12px;
    overflow: hidden;
    color: #94a3b8;
    font-size: 9px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page-profile-detail .seller-review-listing i {
    margin-right: 5px;
    color: #f97316;
}
.page-profile-detail .seller-review-card-stars {
    margin-top: 10px;
    font-size: 9px;
}
.page-profile-detail .seller-review-card > p {
    margin: 10px 0 0;
    color: #cbd5e1;
    font-size: 10px;
    line-height: 1.65;
    word-break: break-word;
}
.page-profile-detail .seller-review-card > p.is-empty {
    color: #64748b;
    font-style: italic;
}
.page-profile-detail .seller-review-recommend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 25px;
    margin-top: 12px;
    padding: 0 8px;
    border-radius: 7px;
    color: #94a3b8;
    background: #1f2937;
    font-size: 8px;
    font-weight: 800;
}
.page-profile-detail .seller-review-recommend.is-positive { color: #bbf7d0; }
.page-profile-detail .seller-review-recommend.is-negative { color: #fecaca; }
.page-profile-detail .seller-reviews-empty {
    padding: 48px 20px;
    border: 1px dashed #334155;
    border-radius: 16px;
    color: #64748b;
    text-align: center;
    background: #111827;
}
.page-profile-detail .seller-reviews-empty i {
    display: block;
    margin-bottom: 12px;
    color: #f97316;
    font-size: 28px;
}
.page-profile-detail .seller-reviews-empty strong {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
}
.page-profile-detail .seller-reviews-empty p {
    margin: 5px 0 0;
    font-size: 10px;
}
@media (max-width: 900px) {
    .page-profile-detail .seller-review-overview {
        grid-template-columns: minmax(170px, .8fr) minmax(220px, 1.2fr);
    }
    .page-profile-detail .seller-review-criteria { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .page-profile-detail .seller-reviews-section { margin-top: 23px; }
    .page-profile-detail .seller-reviews-head { align-items: flex-start; }
    .page-profile-detail .seller-reviews-head h2 { font-size: 18px; }
    .page-profile-detail .seller-reviews-head p { display: none; }
    .page-profile-detail .seller-review-overview { grid-template-columns: 1fr; padding: 11px; }
    .page-profile-detail .seller-review-score { min-height: 135px; }
    .page-profile-detail .seller-rating-bars { padding: 8px 2px; }
    .page-profile-detail .seller-review-criteria { grid-column: auto; }
    .page-profile-detail .seller-review-list { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
    .page-profile-detail .seller-reviews-head { display: block; }
    .page-profile-detail .seller-review-count { margin-top: 9px; }
    .page-profile-detail .seller-review-criteria { grid-template-columns: 1fr; }
}

/* Profil detay - değerlendirmeleri varsayılan kapalı aç/kapat paneli */
.page-profile-detail details.seller-reviews-section {
    display: block;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #1f2937;
    border-radius: 16px;
    background: #111827;
}
.page-profile-detail details.seller-reviews-section > summary {
    list-style: none;
}
.page-profile-detail details.seller-reviews-section > summary::-webkit-details-marker {
    display: none;
}
.page-profile-detail .seller-reviews-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 96px;
    padding: 18px;
    cursor: pointer;
    user-select: none;
    transition: background-color .18s ease;
}
.page-profile-detail .seller-reviews-toggle:hover {
    background: #151e2d;
}
.page-profile-detail .seller-reviews-toggle:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: -3px;
}
.page-profile-detail .seller-reviews-toggle-copy {
    min-width: 0;
}
.page-profile-detail .seller-reviews-toggle-copy h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 20px;
    font-weight: 850;
}
.page-profile-detail .seller-reviews-toggle-copy p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 10px;
}
.page-profile-detail .seller-reviews-toggle-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}
.page-profile-detail .seller-review-quick-score {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 9px;
    color: #fed7aa;
    background: #292016;
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}
.page-profile-detail .seller-review-quick-score i {
    color: #f97316;
    font-size: 9px;
}
.page-profile-detail .seller-reviews-toggle-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 9px;
    color: #f8fafc;
    background: #f97316;
    font-size: 9px;
    font-weight: 850;
    white-space: nowrap;
}
.page-profile-detail .seller-reviews-toggle-action i {
    font-size: 8px;
    transition: transform .2s ease;
}
.page-profile-detail .seller-reviews-toggle-open {
    display: none;
}
.page-profile-detail details.seller-reviews-section[open] .seller-reviews-toggle-open {
    display: inline;
}
.page-profile-detail details.seller-reviews-section[open] .seller-reviews-toggle-closed {
    display: none;
}
.page-profile-detail details.seller-reviews-section[open] .seller-reviews-toggle-action i {
    transform: rotate(180deg);
}
.page-profile-detail details.seller-reviews-section[open] .seller-reviews-toggle {
    border-bottom: 1px solid #1f2937;
    background: #0f172a;
}
.page-profile-detail .seller-reviews-content {
    padding: 16px;
    animation: sellerReviewsReveal .2s ease;
}
@keyframes sellerReviewsReveal {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.page-profile-detail .seller-reviews-content .seller-review-overview {
    border: 0;
    padding: 0;
    background: transparent;
}
.page-profile-detail .seller-reviews-content .seller-review-list {
    margin-top: 12px;
}
.page-profile-detail .seller-reviews-content .seller-reviews-empty {
    border: 0;
    background: #0f172a;
}

@media (max-width: 620px) {
    .page-profile-detail details.seller-reviews-section {
        margin-top: 23px;
        border-radius: 14px;
    }
    .page-profile-detail .seller-reviews-toggle {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        min-height: 0;
        padding: 15px;
    }
    .page-profile-detail .seller-reviews-toggle-copy h2 {
        font-size: 17px;
    }
    .page-profile-detail .seller-reviews-toggle-copy p {
        display: block;
        font-size: 9px;
        line-height: 1.5;
    }
    .page-profile-detail .seller-reviews-toggle-side {
        justify-content: flex-start;
        width: 100%;
    }
    .page-profile-detail .seller-reviews-toggle-action {
        margin-left: auto;
    }
    .page-profile-detail .seller-reviews-content {
        padding: 11px;
    }
}

@media (max-width: 390px) {
    .page-profile-detail .seller-reviews-toggle-side {
        display: grid;
        grid-template-columns: auto 1fr;
    }
    .page-profile-detail .seller-review-count {
        justify-self: start;
    }
    .page-profile-detail .seller-reviews-toggle-action {
        grid-column: 1 / -1;
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 390px) {
    .page-profile-detail .seller-reviews-toggle-side .seller-review-count {
        margin-top: 0;
    }
}

/* Profil detay - yatay satıcı değerlendirme kaydırıcısı */
.page-profile-detail .seller-review-carousel {
    margin-top: 12px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid #1f2937;
    border-radius: 14px;
    background: #0f172a;
}
.page-profile-detail .seller-review-carousel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}
.page-profile-detail .seller-review-carousel-head > div:first-child {
    min-width: 0;
}
.page-profile-detail .seller-review-carousel-head strong {
    display: block;
    color: #e5e7eb;
    font-size: 12px;
    font-weight: 850;
}
.page-profile-detail .seller-review-carousel-head small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 9px;
    line-height: 1.4;
}
.page-profile-detail .seller-review-carousel-controls {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 7px;
}
.page-profile-detail .seller-review-carousel-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 9px;
    color: #94a3b8;
    background: #111827;
    font-size: 9px;
    font-weight: 800;
}
.page-profile-detail .seller-review-carousel-counter b {
    color: #f97316;
    font: inherit;
}
.page-profile-detail .seller-review-carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: #f8fafc;
    background: #f97316;
    box-shadow: none;
    cursor: pointer;
    transition: opacity .18s ease, background-color .18s ease, transform .18s ease;
}
.page-profile-detail .seller-review-carousel-button:hover:not(:disabled) {
    background: #ea580c;
    transform: translateY(-1px);
}
.page-profile-detail .seller-review-carousel-button:focus-visible {
    outline: 2px solid #fb923c;
    outline-offset: 2px;
}
.page-profile-detail .seller-review-carousel-button:disabled {
    color: #64748b;
    background: #1f2937;
    opacity: .65;
    cursor: default;
}
.page-profile-detail .seller-review-carousel-button i {
    font-size: 10px;
}
.page-profile-detail .seller-review-carousel .seller-review-list {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    margin-top: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
}
.page-profile-detail .seller-review-carousel .seller-review-list::-webkit-scrollbar {
    display: none;
}
.page-profile-detail .seller-review-carousel .seller-review-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 185px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.page-profile-detail .seller-review-carousel .seller-review-list:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 3px;
    border-radius: 12px;
}

@media (max-width: 620px) {
    .page-profile-detail .seller-review-carousel {
        padding: 11px;
        border-radius: 12px;
    }
    .page-profile-detail .seller-review-carousel-head {
        align-items: flex-start;
        margin-bottom: 10px;
    }
    .page-profile-detail .seller-review-carousel-head small {
        max-width: 160px;
    }
    .page-profile-detail .seller-review-carousel-counter {
        min-width: 44px;
        min-height: 30px;
    }
    .page-profile-detail .seller-review-carousel-button {
        width: 32px;
        height: 32px;
    }
    .page-profile-detail .seller-review-carousel .seller-review-card {
        min-height: 0;
        padding: 13px;
    }
}

@media (max-width: 390px) {
    .page-profile-detail .seller-review-carousel-head {
        display: block;
    }
    .page-profile-detail .seller-review-carousel-controls {
        justify-content: flex-end;
        margin-top: 9px;
    }
    .page-profile-detail .seller-review-carousel-head small {
        max-width: none;
    }
}


/* ========================================================================== */
/* Site geneli islem mesaji ve bildirim kutulari                              */
/* ========================================================================== */
.site-alert {
    align-items: center !important;
    gap: 12px !important;
    padding: 13px 46px 13px 15px !important;
    border-color: #334155 !important;
    background: #151f31 !important;
    color: #d6e0ec !important;
    box-shadow: 0 12px 28px rgba(2, 6, 23, .2) !important;
    transition: opacity .18s ease, transform .18s ease !important;
}
.site-alert::after {
    width: 3px;
    opacity: 1;
}
.site-alert-error {
    border-color: rgba(225, 29, 72, .36) !important;
    background: #241722 !important;
    color: #fecdd3 !important;
}
.site-alert-success {
    border-color: rgba(22, 163, 74, .34) !important;
    background: #14251f !important;
    color: #dcfce7 !important;
}
.site-alert-warning {
    border-color: rgba(217, 119, 6, .38) !important;
    background: #282015 !important;
    color: #fef3c7 !important;
}
.site-alert-info {
    border-color: rgba(59, 130, 246, .32) !important;
    background: #162235 !important;
    color: #dbeafe !important;
}
.site-alert-icon {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    margin: 0 !important;
    border: 1px solid currentColor;
    border-radius: 9px !important;
    background: transparent !important;
    opacity: .92;
}
.site-alert-content {
    min-width: 0;
    flex: 1 1 auto;
}
.site-alert-title {
    display: block;
    margin: 0 0 2px;
    color: currentColor;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -.01em;
}
.site-alert-body {
    color: inherit;
    font-size: 11px;
    line-height: 1.55;
    font-weight: 650;
    opacity: .87;
    overflow-wrap: anywhere;
}
.site-alert-body > :first-child { margin-top: 0 !important; }
.site-alert-body > :last-child { margin-bottom: 0 !important; }
.site-alert-close {
    position: absolute;
    top: 50%;
    right: 11px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: currentColor;
    font-size: 11px;
    opacity: .58;
    cursor: pointer;
}
.site-alert-close:hover {
    background: rgba(255, 255, 255, .07);
    opacity: 1;
}
.site-alert.is-leaving {
    opacity: 0 !important;
    transform: translateY(-5px) !important;
}
.site-message-stack {
    position: fixed;
    top: 78px;
    right: 14px;
    z-index: 2400;
    width: min(380px, calc(100vw - 28px));
    display: grid;
    gap: 9px;
    pointer-events: none;
}
.site-message-stack .site-toast {
    width: 100%;
    margin: 0 !important;
    pointer-events: auto;
    animation: site-toast-enter .2s ease both !important;
}
@keyframes site-toast-enter {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
    .site-alert {
        gap: 10px !important;
        padding: 11px 42px 11px 13px !important;
        border-radius: 11px !important;
    }
    .site-alert-icon {
        width: 27px !important;
        height: 27px !important;
        flex-basis: 27px !important;
        border-radius: 8px !important;
    }
    .site-alert-title { font-size: 11px; }
    .site-alert-body { font-size: 10.5px; }
    .site-message-stack {
        top: auto;
        right: 10px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        width: calc(100vw - 20px);
    }
}


/* 2026-07-19: Ana sayfa kategori satırı tamamen düz ve arka plansız. */
.home-category-section,
.home-category-section #popular-categories-track,
.home-category-card,
.home-category-icon,
.home-category-icon > div {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.home-category-card {
    border: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
}
.home-category-card:hover,
.home-category-card:focus-visible {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}
.home-category-icon {
    border: 0 !important;
    border-radius: 0 !important;
}
.home-category-card:hover .home-category-icon,
.home-category-card:focus-visible .home-category-icon {
    border: 0 !important;
    background: transparent !important;
}

/* 2026-07-19 v6: Arama katmani — masaustunde odakli modal, mobilde tam ekran. */
html.search-modal-open,
body.search-modal-open {
    overflow: hidden !important;
}

#advanced-search-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483000 !important;
    isolation: isolate !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100vw !important;
    width: 100dvw !important;
    min-height: 100vh !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 48px 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: transparent !important;
    transition: opacity .22s ease, visibility 0s linear .22s !important;
}

#advanced-search-modal.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .22s ease !important;
}

#advanced-search-modal .site-search-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    cursor: zoom-out;
    background:
        radial-gradient(circle at 16% 4%, rgba(249, 115, 22, .16), transparent 35rem),
        radial-gradient(circle at 88% 12%, rgba(59, 130, 246, .13), transparent 34rem),
        rgba(2, 6, 23, .66) !important;
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    opacity: 0;
    transition: opacity .28s ease;
}

#advanced-search-modal.show .site-search-modal-backdrop {
    opacity: 1;
}

#advanced-search-modal .site-search-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100vw - 64px)) !important;
    max-width: 920px !important;
    height: min(720px, calc(100dvh - 96px)) !important;
    max-height: 720px !important;
    margin: 0 !important;
    padding: 22px !important;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, .97), rgba(7, 12, 23, .97)) !important;
    -webkit-backdrop-filter: blur(28px) saturate(125%);
    backdrop-filter: blur(28px) saturate(125%);
    box-shadow:
        0 42px 120px rgba(0, 0, 0, .62),
        0 14px 40px rgba(2, 6, 23, .42),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    opacity: 0;
    transform: translateY(18px) scale(.975);
    transform-origin: center;
    transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}

#advanced-search-modal .site-search-modal-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 140px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(249, 115, 22, .075), transparent);
}

#advanced-search-modal.show .site-search-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#advanced-search-modal .site-search-modal-topbar {
    position: relative;
    z-index: 4;
    flex: 0 0 auto;
}

#advanced-search-modal #search-modal-back {
    width: 48px !important;
    height: 48px !important;
    border-color: rgba(100, 116, 139, .42) !important;
    border-radius: 15px !important;
    color: #cbd5e1 !important;
    background: rgba(15, 23, 42, .78) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 10px 24px rgba(0, 0, 0, .2);
}

#advanced-search-modal #search-modal-back:hover {
    border-color: rgba(249, 115, 22, .65) !important;
    color: #fff !important;
    background: rgba(249, 115, 22, .14) !important;
    transform: translateY(-1px);
}

#advanced-search-modal .search-back-icon { display: none; }
#advanced-search-modal .search-close-icon { display: inline-block; }

#advanced-search-modal .site-search-modal-field {
    padding: 3px;
    border: 1px solid rgba(100, 116, 139, .48);
    border-radius: 17px;
    background: linear-gradient(120deg, rgba(249, 115, 22, .20), rgba(30, 41, 59, .86) 36%, rgba(59, 130, 246, .12));
    box-shadow: 0 16px 34px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .035);
}

#advanced-search-modal .site-search-modal-field:focus-within {
    border-color: rgba(249, 115, 22, .78);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .10), 0 18px 38px rgba(0, 0, 0, .30);
}

#advanced-search-modal .site-search-modal-field #modal-search-input {
    min-height: 50px;
    border: 0 !important;
    border-radius: 14px !important;
    color: #f8fafc !important;
    background: rgba(7, 12, 23, .94) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

#advanced-search-modal #search-type-tabs {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
    margin-top: 14px !important;
    padding: 5px;
    border: 1px solid rgba(100, 116, 139, .30);
    border-radius: 16px;
    background: rgba(7, 12, 23, .66) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

#advanced-search-modal #search-type-tabs .search-type-tab {
    min-height: 36px;
    border-radius: 11px !important;
    transition: color .16s ease, border-color .16s ease, background-color .16s ease, transform .16s ease;
}

#advanced-search-modal #search-type-tabs .search-type-tab:hover {
    transform: translateY(-1px);
}

#advanced-search-modal .site-search-modal-content {
    min-height: 0;
    margin-top: 14px !important;
    padding: 16px 17px 18px !important;
    border: 1px solid rgba(100, 116, 139, .30);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(30, 41, 59, .60), rgba(10, 16, 29, .78)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 18px 45px rgba(0, 0, 0, .20);
    scrollbar-width: thin !important;
    scrollbar-color: rgba(100, 116, 139, .58) transparent !important;
}

#advanced-search-modal .site-search-modal-content::-webkit-scrollbar { display: block !important; width: 6px; }
#advanced-search-modal .site-search-modal-content::-webkit-scrollbar-track { background: transparent; }
#advanced-search-modal .site-search-modal-content::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(100, 116, 139, .58);
}

#advanced-search-modal #search-default-views > section {
    padding: 15px;
    border: 1px solid rgba(71, 85, 105, .34);
    border-radius: 17px;
    background: rgba(15, 23, 42, .48);
}

#advanced-search-modal #search-default-views > section + section {
    margin-top: 12px;
}

#advanced-search-modal #search-history-container > * {
    background: rgba(15, 23, 42, .82) !important;
}

@media (max-width: 767px) {
    #advanced-search-modal {
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 !important;
    }

    #advanced-search-modal .site-search-modal-backdrop {
        cursor: default;
        background:
            radial-gradient(circle at 20% 0%, rgba(249, 115, 22, .14), transparent 27rem),
            radial-gradient(circle at 90% 20%, rgba(59, 130, 246, .10), transparent 25rem),
            rgba(2, 6, 23, .62) !important;
        -webkit-backdrop-filter: blur(16px) saturate(120%);
        backdrop-filter: blur(16px) saturate(120%);
    }

    #advanced-search-modal .site-search-modal-panel {
        width: 100vw !important;
        width: 100dvw !important;
        max-width: none !important;
        min-height: 100vh !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        padding:
            max(12px, env(safe-area-inset-top))
            12px
            max(12px, env(safe-area-inset-bottom)) !important;
        border: 0 !important;
        border-radius: 0 !important;
        background:
            linear-gradient(160deg, rgba(15, 23, 42, .94), rgba(5, 10, 20, .97) 58%, rgba(7, 12, 23, .98)) !important;
        -webkit-backdrop-filter: blur(24px) saturate(120%);
        backdrop-filter: blur(24px) saturate(120%);
        box-shadow: none !important;
        transform: translateY(20px);
    }

    #advanced-search-modal.show .site-search-modal-panel {
        transform: translateY(0);
    }

    #advanced-search-modal .site-search-modal-panel::before {
        height: 120px;
        background: linear-gradient(180deg, rgba(249, 115, 22, .07), transparent);
    }

    #advanced-search-modal #search-modal-back {
        width: 44px !important;
        height: 44px !important;
        border-radius: 14px !important;
    }

    #advanced-search-modal .search-back-icon { display: inline-block; }
    #advanced-search-modal .search-close-icon { display: none; }

    #advanced-search-modal .site-search-modal-field {
        border-radius: 15px;
    }

    #advanced-search-modal .site-search-modal-field #modal-search-input {
        min-height: 46px;
        border-radius: 12px !important;
        font-size: 16px !important;
    }

    #advanced-search-modal #search-type-tabs {
        margin: 12px -12px 0 !important;
        padding: 5px 12px 6px;
        border-width: 1px 0;
        border-radius: 0;
        background: rgba(7, 12, 23, .60) !important;
    }

    #advanced-search-modal .site-search-modal-content {
        margin: 10px -4px 0 !important;
        padding: 10px 4px 18px !important;
        border: 0 !important;
        border-radius: 0;
        background: transparent !important;
        box-shadow: none !important;
    }

    #advanced-search-modal #search-default-views {
        padding-bottom: 24px !important;
    }

    #advanced-search-modal #search-default-views > section {
        padding: 14px;
        border-radius: 16px;
        background: rgba(15, 23, 42, .58);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
    }
}

@media (prefers-reduced-motion: reduce) {
    #advanced-search-modal,
    #advanced-search-modal .site-search-modal-backdrop,
    #advanced-search-modal .site-search-modal-panel {
        transition: none !important;
    }
}

/* 2026-07-19 v8: Ana sayfa kategori ikonlari ve adlari kartin ust-orta alaninda. */
.home-category-card {
    align-items: center !important;
    text-align: center !important;
}
.home-category-card .home-category-icon {
    margin-left: auto !important;
    margin-right: auto !important;
}
.home-category-card > span {
    width: 100%;
    text-align: center !important;
}
