/* Nav: İlan Ara / Blog spacing */
.main-nav-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

/* User menu chip + connected dropdown */
.nav-user-menu {
    position: relative;
}

    .nav-user-menu .nav-user-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: 210px;
        max-width: 100%;
        padding: 5px 12px 5px 5px;
        border: 1px solid #d0d7de;
        border-radius: 12px;
        background: #fff;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: border-color .35s ease, box-shadow .35s ease, border-radius .35s ease;
        font-size: 15px;
    }

        .nav-user-menu .nav-user-chip:hover,
        .nav-user-menu.show .nav-user-chip,
        .nav-user-menu.is-open .nav-user-chip {
            border-color: #0d6efd;
            color: #333;
        }

    .nav-user-menu.show .nav-user-chip,
    .nav-user-menu.is-open .nav-user-chip,
    .nav-user-menu.is-opening .nav-user-chip {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-color: transparent;
        box-shadow: 0 4px 12px rgba(13, 110, 253, .1);
    }

.nav-user-center {
    gap: 8px;
}

.nav-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.nav-user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-menu .nav-user-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    margin: 0 !important;
    padding: 8px;
    min-width: 100%;
    border: 1px solid #0d6efd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scaleY(.98);
    transform-origin: top center;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    pointer-events: none;
}

.nav-user-menu.show .nav-user-dropdown,
.nav-user-menu.is-open .nav-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

.nav-user-menu.is-closing .nav-user-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px) scaleY(.98);
    pointer-events: none;
}

/* Auth + profile pages */
.auth-page-card {
    border-radius: 16px;
}

.profile-page-card .form-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.profile-avatar-upload {
    cursor: pointer;
}

.profile-avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 1.25rem;
}

.profile-avatar-upload:hover .profile-avatar-overlay {
    opacity: 1;
}

.section-header--title-only {
    justify-content: flex-start;
}

.section-see-all-footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 0.25rem;
}

.section-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

    .section-see-all:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.section-see-all--blog {
    border-color: #f76707;
    color: #f76707;
}

    .section-see-all--blog:hover {
        background: linear-gradient(135deg, #f76707, #ffa94d);
        box-shadow: 0 6px 18px rgba(247, 103, 7, 0.35);
    }

.section-see-all--listing {
    border-color: #ff5a5f;
    color: #ff5a5f;
}

    .section-see-all--listing:hover {
        background: linear-gradient(135deg, #ff5a5f, #ff7a7f);
        box-shadow: 0 6px 18px rgba(255, 90, 95, 0.35);
    }

.section-see-all--discover {
    border-color: #7048e8;
    color: #7048e8;
}

    .section-see-all--discover:hover {
        background: linear-gradient(135deg, #7048e8, #9775fa);
        box-shadow: 0 6px 18px rgba(112, 72, 232, 0.35);
    }

.home-popular-section {
    padding: 1rem 0;
}

    .home-popular-section .blog-grid {
        display: block;
    }

.popular-blog-slider-section--grid {
    width: 100%;
    max-width: 100%;
}

    .popular-blog-slider-section--grid .container-fluid {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

.popular-blog-grid-row .listing-card,
.popular-blog-grid-row .blog-img,
.popular-blog-grid-row .blog-img img {
    width: 100%;
}

.similar-listings-fullwidth {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.similar-listings-row .listing-card {
    height: 100%;
}

/* Discover hero */
.discover-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
}

.discover-hero--purple .discover-hero-overlay {
    background: linear-gradient(128deg, rgba(59, 28, 140, 0.97) 0%, rgba(88, 52, 200, 0.96) 28%, rgba(112, 72, 232, 0.95) 52%, rgba(91, 45, 190, 0.96) 78%, rgba(68, 32, 160, 0.97) 100%);
}

.discover-hero--purple .discover-hero-bg {
    opacity: 0.35;
    filter: saturate(0.6) hue-rotate(15deg);
}

.discover-hero--purple .discover-hero-mesh {
    background: radial-gradient(circle at 12% 20%, rgba(183, 148, 255, 0.35) 0%, transparent 48%), radial-gradient(circle at 88% 80%, rgba(134, 88, 230, 0.3) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.discover-hero--purple .discover-hero-glass {
/*    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 180, 255, 0.35);*/
}

.discover-hero--purple .discover-hero-badge {
    background: rgba(183, 148, 255, 0.35);
    color: #fff;
}

.discover-hero--purple {
    min-height: 320px;
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 40%, #7c3aed 70%, #5b21b6 100%);
    overflow: hidden;
}

.discover-hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 440px;
    min-width: 260px;
}

.discover-brand-orbit {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 460 / 360;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0.85;
}

.discover-orbit-ring--brand {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.95);
    animation: discover-orbit-brand 14s linear infinite;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.discover-orbit-ring--slogan {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.78);
    animation: discover-orbit-slogan 18s linear infinite reverse;
}

@keyframes discover-orbit-brand {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(168px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(168px) rotate(-360deg); }
}

@keyframes discover-orbit-slogan {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(142px) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg) translateX(142px) rotate(360deg); }
}

.discover-hero-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.2));
    animation: discover-float 4.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes discover-float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.discover-hero-stats--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.discover-hero-stat--purple {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .discover-hero-stat--purple i {
        opacity: 0.9;
    }

    .discover-hero-stat--purple strong {
        font-weight: 700;
    }

.discover-hero-btn-outline {
    border-color: rgba(255, 255, 255, 0.55) !important;
    color: #fff !important;
}

    .discover-hero-btn-outline:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #fff !important;
    }

@media (max-width: 991.98px) {
    .discover-hero-visual {
        max-width: 100%;
        min-width: 0;
        margin-top: 0.5rem;
    }

    .discover-hero-svg {
        max-width: 300px;
    }
}

.discover-hero--v2 .discover-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.discover-hero-glass {
/*    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;*/
    margin: 1rem;
/*    padding: 2rem 2rem !important;*/
}

.discover-hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 300px;
    max-width: 360px;
}

.discover-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .discover-feature-card:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
        transform: translateX(4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

.discover-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.25);
}

.discover-feature-icon--red {
    color: #ffc9c9;
}

.discover-feature-icon--orange {
    color: #ffe8cc;
}

.discover-feature-icon--blue {
    color: #d0ebff;
}

.discover-feature-icon--green {
    color: #d3f9d8;
}

.discover-feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

    .discover-feature-text strong {
        font-size: 0.9375rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .discover-feature-text small {
        font-size: 0.75rem;
        opacity: 0.88;
        line-height: 1.35;
    }

@media (max-width: 991.98px) {
    .discover-hero-glass {
        flex-direction: column !important;
        margin: 0.75rem;
        padding: 1.5rem 1.25rem !important;
    }

    .discover-hero-features {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

.discover-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.discover-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(13, 110, 253, 0.92) 0%, rgba(247, 103, 7, 0.88) 48%, rgba(25, 135, 84, 0.85) 100%);
}

.discover-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 2rem;
    min-height: 280px;
}

.discover-hero-content {
    max-width: 560px;
    color: #fff;
}

.discover-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.discover-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    font-family: inherit;
}

.discover-hero-text {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    font-family: inherit;
}

/* Keşfet — sayfa geneli tipografi uyumu */
.search-index-page--enterprise {
    font-family: inherit;
}

    .search-index-page--enterprise .section-header h2,
    .search-index-page--enterprise .h4,
    .search-index-page--enterprise .stat-label,
    .search-index-page--enterprise .discover-hero-actions .btn {
        font-family: inherit;
    }

    .search-index-page--enterprise .page-highlights h3,
    .search-index-page--enterprise .page-top-bands .card-header {
        font-size: 1rem;
        font-weight: 700;
    }

    .search-index-page--enterprise .stat-value {
        font-variant-numeric: tabular-nums;
    }

.discover-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .discover-hero-actions .btn-outline-light {
        border-width: 2px;
        font-weight: 600;
    }

        .discover-hero-actions .btn-outline-light:hover {
            background: #fff;
            color: #333;
        }

.discover-hero-stats {
    flex-direction: column;
    gap: 14px;
}

.discover-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

    .discover-hero-stat i {
        font-size: 1.35rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.25);
    }

.discover-hero-stat--blue {
    background: rgba(13, 110, 253, 0.55);
}

.discover-hero-stat--orange {
    background: rgba(247, 103, 7, 0.55);
}

.discover-hero-stat--green {
    background: rgba(25, 135, 84, 0.55);
}

@media (max-width: 991.98px) {
    .discover-hero-inner {
        padding: 2rem 1.25rem;
        min-height: 240px;
    }
}

.blog-author-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    border-radius: 12px;
    transition: background .2s ease;
}

    .blog-author-link:hover {
        background: #f4f7fb;
        color: inherit;
    }

.user-profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f5e9;
}

.user-stat-card .user-stat-icon {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.user-stat-card .user-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.user-stat-card .user-stat-label {
    color: #6c757d;
    font-size: .9rem;
}

.latest-blog .similar-item .listing-card,
.home-blog-slider .similar-item .listing-card {
    height: 100%;
}

a.blog-top-commenter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    border-radius: 8px;
    transition: background .2s ease;
}

    a.blog-top-commenter:hover {
        background: #f4f7fb;
    }

/* Breadcrumb + keyword chips */
.page-nav-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-breadcrumb-nav .breadcrumb {
    /*background: #f8fafc;
    border: 1px solid #e8ecef;
    border-radius: 10px;*/
    padding: 10px 14px;
    margin: 0;
    font-size: 14px;
}

.page-breadcrumb-nav .breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

.page-breadcrumb-nav .breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.seo-keyword-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-keyword-chip {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #e85d26;
    background: #fff5f0;
    border: 1px solid #ffd8c2;
    border-radius: 20px;
}

/* Platform stats */
.platform-stats--cards {
    padding: 8px 0 24px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f6;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
    }

.stat-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.stat-card--listings .stat-card-icon {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
}

.stat-card--users .stat-card-icon {
    background: linear-gradient(135deg, #2f9e44, #69db7c);
}

.stat-card--cities .stat-card-icon {
    background: linear-gradient(135deg, #f76707, #ffa94d);
}

.stat-card--blog .stat-card-icon {
    background: linear-gradient(135deg, #ae3ec9, #da77f2);
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1d21;
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: #5c6570;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-highlights {
    padding: 48px 0;
}

.highlight-board {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecef;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    padding: 18px;
    height: 100%;
}

.highlight-board--blog {
    border-top: 4px solid #f76707;
}

.highlight-board--listing {
    border-top: 4px solid #0d6efd;
}

.highlight-board-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f6;
}

.highlight-board-badge {
    font-weight: 700;
    font-size: 15px;
    color: #1a1d21;
}

.highlight-board-sub {
    font-size: 12px;
    color: #868e96;
}

.page-highlights {
    margin-bottom: 0;
}

.home-highlights .row > [class*="col-"] {
    display: flex;
}

.home-highlights .page-highlights {
    flex: 1;
    width: 100%;
}

    .home-highlights .page-highlights .highlight-board {
        height: 100%;
    }

.home-highlights-row > [class*="col-"] {
    display: flex;
}

.home-highlights-row .highlight-board {
    flex: 1;
    width: 100%;
}

.search-index-layout .search-filters-card {
    position: sticky;
    top: 84px;
    align-self: start;
}

@media (max-width: 991.98px) {
    .search-index-layout .search-filters-card {
        position: static;
    }
}

.highlight-rank-panel {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    height: 100%;
}

.highlight-rank-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #495057;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rank-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rank-dot--views {
    background: #339af0;
}

.rank-dot--likes {
    background: #ff6b6b;
}

.rank-dot--fav {
    background: #fab005;
}

.rank-dot--comment {
    background: #845ef7;
}

.highlight-rank-list--users .blog-top-commenter {
    width: 100%;
}

.blog-results-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity .2s ease;
}

.blog-search-clear {
    border: none;
    background: transparent;
}

:root {
    --highlight-item-h: 54px;
    --highlight-rank-count: 5;
}

.highlight-rank-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: calc(var(--highlight-item-h) * var(--highlight-rank-count) + 4px * (var(--highlight-rank-count) - 1));
}

    .highlight-rank-list > li:not(.highlight-rank-empty) {
        height: var(--highlight-item-h);
        flex-shrink: 0;
    }

        .highlight-rank-list > li:not(.highlight-rank-empty) .blog-top-item,
        .highlight-rank-list > li:not(.highlight-rank-empty) a.blog-top-commenter {
            height: 100%;
            min-height: var(--highlight-item-h);
            box-sizing: border-box;
        }

.highlight-rank-empty {
    height: auto !important;
    min-height: 0 !important;
    padding: 8px 4px;
}

.highlight-rank-board > [class*="col-"] {
    display: flex;
}

.highlight-rank-board .highlight-rank-panel {
    flex: 1;
    width: 100%;
}

.highlight-rank-list li {
    margin: 0;
    padding: 0;
}

.highlight-rank-no {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #e9ecef;
    color: #495057;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.highlight-rank-list li:nth-child(1) .highlight-rank-no {
    background: linear-gradient(135deg, #ffd43b, #fab005);
    color: #5c4a00;
}

.highlight-rank-list li:nth-child(2) .highlight-rank-no {
    background: linear-gradient(135deg, #dee2e6, #adb5bd);
    color: #343a40;
}

.highlight-rank-list li:nth-child(3) .highlight-rank-no {
    background: linear-gradient(135deg, #f0c8a8, #e59972);
    color: #5c3d2e;
}

.blog-top-meta {
    display: block;
    font-size: 11px;
    color: #868e96;
    margin-top: 2px;
}

/* Blog search */
.blog-search-panel {
    border-radius: 14px;
}

.blog-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

    .blog-search-input-wrap > i {
        position: absolute;
        left: 14px;
        color: #868e96;
        pointer-events: none;
        z-index: 2;
    }

    .blog-search-input-wrap .form-control {
        padding-left: 42px;
        padding-right: 40px;
        border-radius: 10px;
        min-height: 46px;
    }

.blog-search-clear {
    position: absolute;
    right: 10px;
    color: #868e96;
    padding: 6px;
    z-index: 2;
}

    .blog-search-clear:hover {
        color: #495057;
    }

.blog-sort-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-sort-pill {
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}

    .blog-sort-pill:hover {
        border-color: #1864ab;
        color: #1864ab;
    }

    .blog-sort-pill.active {
        background: linear-gradient(135deg, #1864ab, #4dabf7);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 12px rgba(24, 100, 171, 0.35);
    }
/*.blog-sort-pill {
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}

    .blog-sort-pill:hover {
        border-color: #ff5a5f;
        color: #c92a2a;
    }

    .blog-sort-pill.active {
        background: linear-gradient(135deg, #ff5a5f, #ff8787);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 12px rgba(255, 90, 95, 0.35);
    }*/

.blog-load-sentinel {
    height: 1px;
    width: 100%;
}

.blog-load-status .spinner-border {
    vertical-align: middle;
}

/* Legal / KVKK */
.legal-page {
    max-width: 820px;
    margin: 0 auto 48px;
}

.legal-page-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 16px;
}

.legal-section {
    margin-bottom: 28px;
}

    .legal-section h2 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #1a1d21;
    }

    .legal-section p,
    .legal-section li {
        color: #495057;
        line-height: 1.7;
    }

.legal-toc a {
    color: #0d6efd;
    text-decoration: none;
}

    .legal-toc a:hover {
        text-decoration: underline;
    }

.legal-table th {
    background: #f8fafc;
    font-size: 13px;
}

/* Blog slider: görseller tam genişlik */
.home-blog-slider .similar-item .listing-card,
.home-listing-slider .similar-item .listing-card {
    width: 100%;
    min-width: 0;
}

.home-blog-slider .similar-item .blog-img,
.home-blog-slider .similar-item .listing-img,
.home-listing-slider .similar-item .blog-img,
.home-listing-slider .similar-item .listing-img
{
    width: 100%;
    overflow: hidden;
}

    .home-blog-slider .similar-item .blog-img img,
    .home-blog-slider .similar-item .listing-img img,
    .home-listing-slider .similar-item .blog-img img,
    .home-listing-slider .similar-item .listing-img img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

/* Blog slider: 4 or 3 cards per view */
.home-blog-slider .similar-item--quad,
.home-listing-slider .similar-item--quad {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
    min-width: 0;
}

.home-blog-slider--4 .similar-slider,
.home-listing-slider--4 .similar-slider {
    gap: 10px;
}


.home-blog-slider .similar-item--triple,
.home-listing-slider .similar-item--triple {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

@media (max-width: 1200px) {
    .home-blog-slider--4 .similar-item--quad,
    .home-listing-slider--4 .similar-item--quad {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .home-blog-slider .similar-item--quad,
    .home-blog-slider .similar-item--triple {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .home-blog-slider .similar-item--quad,
    .home-blog-slider .similar-item--triple {
        flex: 0 0 100%;
    }

    .stat-card .stat-value {
        font-size: 28px;
    }
}

/* Home blog cards distinct from listings */
.latest-blog .blog-card--home {
    border-left: 4px solid #f76707;
}

    .latest-blog .blog-card--home .blog-img::after {
        left: 0;
        width: 100%;
        height: 55%;
        top: auto;
        bottom: 0;
        transform: none;
        background: linear-gradient(to top, rgba(247, 103, 7, 0.75), transparent);
        animation: none;
    }

    .latest-blog .blog-card--home:hover .blog-img::after {
        animation: none;
        opacity: 1;
    }

    .latest-blog .blog-card--home .blog-img::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(135deg, rgba(255, 154, 61, 0.15), transparent 50%);
    }

    .latest-blog .blog-card--home:hover .blog-img img {
        transform: scale(1.05);
    }

.blog-card-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    /*    background: linear-gradient(135deg, #f76707, #ffa94d);*/
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.latest-blog .blog-card--home .blog-body h3 {
    color: #c2410c;
}

/* Top bands thumb — original size */
.page-top-bands .blog-top-thumb {
    flex: 0 0 48px;
    height: 48px;
}

.blog-top-thumb {
    flex: 0 0 48px;
    height: 48px;
}

/* Account subnav polish */
.account-subnav {
    background: #f8fafc;
    border: 1px solid #e8ecef;
    border-radius: 10px;
    padding: 10px 14px;
}

/* ——— Responsive ——— */
@media (max-width: 991.98px) {
    .hero {
        height: auto;
        min-height: 520px;
    }

    .hero-content {
        padding: 100px 24px 40px;
    }

    .hero-search {
        grid-template-columns: 1fr 1fr;
    }

        .hero-search .search-btn {
            grid-column: 1 / -1;
            width: 100%;
        }

    .main-nav-actions {
        width: 100%;
        margin-bottom: 8px;
    }

    .nav-user-name {
        max-width: 100px;
    }

    .platform-stats .stat-value {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .hero-content {
        padding: 90px 16px 32px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .listing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .platform-stats {
        margin-left: 0;
        margin-right: 0;
        padding: 32px 16px !important;
    }

        .platform-stats .stat-value {
            font-size: 28px;
        }

    .page-top-bands .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .preview-page,
    .blog-detail-page .container {
        padding-left: 0;
        padding-right: 0;
    }

    .listing-detail-page .main-image,
    .blog-detail-page .main-image {
        height: 240px !important;
    }

    .listing-meta {
        flex-direction: column;
        gap: 6px;
    }

    .nav-user-name {
        display: none;
    }

    .nav-user-chip {
        padding: 4px 8px 4px 4px;
    }
}

@media (max-width: 575.98px) {
    .main-content {
        padding-top: 88px;
    }

    .navbar-nav.ms-auto {
        width: 100%;
    }

        .navbar-nav.ms-auto .nav-item {
            width: 100%;
        }

        .navbar-nav.ms-auto .btn {
            width: 100%;
            justify-content: center;
        }
}

/* Online status indicators */
.user-avatar-wrap {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .user-avatar-wrap .online-dot {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #22c55e;
        border: 2px solid #fff;
        box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
    }

.detail-author .user-avatar-wrap {
    flex-shrink: 0;
}

.online-text-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 600;
    vertical-align: middle;
}

.header-seen.is-online {
    color: #15803d;
    font-weight: 600;
}


.listing-preview-shell .detail-author {
    align-items: center;
}

.listing-preview-shell .user-avatar-wrap .detail-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.listing-preview-shell .main-image-wrapper {
    position: relative;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    overflow: hidden;
    border-radius: 16px;
    background: #eef2ff;
}

.listing-preview-shell .main-image-wrapper .main-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767.98px) {
    .listing-preview-shell .main-image-wrapper {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }
}

.chat-item .avatar-link .user-avatar-wrap,
.header-profile-link .user-avatar-wrap {
    display: inline-flex;
}

.chat-item .avatar-link .avatar,
.header-profile-link .avatar {
    display: block;
}

.blog-comment-item .user-avatar-wrap .blog-comment-avatar {
    display: block;
}
