:root {
    --tyn-font-sans-serif: Inter, "Trebuchet MS", sans-serif;
    --tyn-font-sans: Inter, "Trebuchet MS", sans-serif;
    --tyn-body-font-family: Inter, "Trebuchet MS", sans-serif;
}

body {
    font-family: Inter, "Trebuchet MS", sans-serif;
}

:root,
[data-bs-theme="light"] {
    --tyn-primary: #000000;
    --tyn-primary-rgb: 0, 0, 0;
    --tyn-primary-text-emphasis: #1a1a1a;
    --tyn-primary-bg-subtle: #f0f0f0;
    --tyn-primary-border-subtle: #e0e0e0;
}

[data-bs-theme="dark"] {
    --tyn-primary-text-emphasis: #cccccc;
    --tyn-primary-bg-subtle: #1a1a1a;
    --tyn-primary-border-subtle: #2d2d2d;
}

.btn-primary {
    --tyn-btn-bg: #000000;
    --tyn-btn-border-color: #000000;
    --tyn-btn-hover-bg: #222222;
    --tyn-btn-hover-border-color: #222222;
    --tyn-btn-active-bg: #333333;
    --tyn-btn-active-border-color: #333333;
    --tyn-btn-disabled-bg: #000000;
    --tyn-btn-disabled-border-color: #000000;
}

.btn-outline-primary {
    --tyn-btn-color: #000000;
    --tyn-btn-border-color: #000000;
    --tyn-btn-hover-bg: #000000;
    --tyn-btn-hover-border-color: #000000;
    --tyn-btn-active-bg: #000000;
    --tyn-btn-active-border-color: #000000;
    --tyn-btn-disabled-color: #000000;
    --tyn-btn-disabled-border-color: #000000;
}

label:has(+ input[required])::after,
label:has(+ textarea[required])::after,
label:has(+ select[required])::after,
label:has(+ .tom-select-custom select[required])::after {
    content: " *";
    color: red;
}

.invalid-feedback strong {
    font-weight: 400 !important;
}

.card {
    --tyn-card-spacer-y: .75rem;
    --tyn-card-spacer-x: .75rem;
}

.card.job-card {
    transition: border-color .3s ease-in-out;
    cursor: pointer;
}

.card.job-card:hover {
    border-color: var(--tyn-primary);
    --tyn-card-border-color: var(--tyn-primary);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav>.nav-item>.nav-link:before {
        bottom: -1.1rem !important;
    }

    .navbar-expand-lg .header-secondary .navbar-nav>.nav-item>.nav-link:before {
        bottom: -.5rem !important;
    }

}

.btn-group-xs>.btn-icon.btn,
.btn-icon.btn-xs {
    --tyn-btn-size: 1rem;
}

section.banner .swiper-slide {
    padding: 5rem 0 5rem;
}


section.banner .prev-wrapper {
    top: 50%;
    left: 0;
}

section.banner .next-wrapper {
    top: 50%;
    right: 0;
}

.list-card-link .card {
    transition: border-color .3s ease-in-out;
}

.list-card-link:hover .card {
    border-color: var(--tyn-btn-hover-border-color) !important;
}

.list-card-link .image-wrapper {
    height: 100%;
    min-height: 100%;
    max-height: 200px;
}

.list-card-link .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .list-card-link .row .row .col-md-4 {
        border-left: var(--tyn-border-width) var(--tyn-border-style) var(--tyn-border-color) !important;
    }
}

@media (max-width: 768px) {
    section.banner .swiper-slide {
        padding: 2rem 0 2rem !important;
    }

    section.banner .prev-wrapper {
        top: 70% !important;
        left: 39% !important;
    }

    section.banner .next-wrapper {
        top: 70% !important;
        right: 39% !important;
    }
}

.login-right {
    max-width: 1000px;
}

@media (max-width: 1620px) {
    .login-right {
        max-width: clamp(500px, 55vw, 800px);
    }
}

@media (min-width: 1024px) {
    aside .sticky-lg-top {
        top: 6rem;
    }
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--tyn-primary);
    width: 32px;
    margin: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    margin: 0 3px !important;
    border-radius: 8px !important;
    transition: width 0.3s ease-in-out;
}

.nav-underline .nav-link:before {
    background-color: var(--tyn-primary);
    height: 3px;
}

.avatar-stack {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.avatar-stack .avatar {
    overflow: hidden;
    margin-left: -8px;
    border: 1px solid #fff;
}

.avatar {
    --bs-avatar-width: 24px;
    --bs-avatar-bg: var(--tyn-primary-bg-subtle);
    position: relative;
    width: var(--bs-avatar-width);
    height: var(--bs-avatar-width);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tyn-primary-text-emphasis);
    line-height: 1;
    font-size: 14px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    background-color: var(--bs-avatar-bg);
}


.fade-lr {
    position: relative;
}

/* Mobil (xs) - varsayılan: fade efekti aktif */
.fade-lr {
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .fade-lr {
        mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .fade-lr {
        mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .fade-lr {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 768px) {
    ol.breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }

    ol.breadcrumb>li {
        flex-shrink: 0;
    }

}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
    fill: #000000 !important;
}

.glightbox-clean .gnext, 
.glightbox-clean .gprev {
    height: 40px !important;
    width: 40px !important;
}

#detay,
#konum,
#yorumlar,
#sikayetler,
#benzer {
    scroll-margin-top: 130px;
}

/* ===== Anasayfa ===== */
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .7) 45%, rgba(255, 255, 255, .2) 100%);
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .home-hero::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, .65) 0%, rgba(255, 255, 255, .94) 100%);
    }
}

.homepage-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #000;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.homepage-subtitle {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    line-height: 1.4;
}

@media screen and (max-width: 575px) {
    .home-search-wrapper .homepage-heading {
        font-size: 36px;
        color: #000;
        background: none;
    }
}

.home-search {
    max-width: 460px;
}

@media (max-width: 767.98px) {
    .home-search {
        max-width: 100%;
    }
}

.home-search__box {
    position: relative;
}

.home-search__box>i {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 1.05rem;
}

.home-search__input {
    height: 54px;
    padding-left: 2.8rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e2e6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
    font-size: 1rem;
}

.home-search__input:focus {
    background: #fff;
    border-color: #000;
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .06);
}

.home-search__submit {
    height: 50px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
}

.home-search__browse {
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #dcdce0;
    color: #111;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.home-search__results {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    z-index: 30;
    background: #fff;
    border: 1px solid #ececef;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
    padding: 1rem;
    max-height: min(60vh, 480px);
    overflow-y: auto;
}

.home-cat-section {
    scroll-margin-top: 120px;
}

.home-cat-section--gap {
    margin-top: 3rem;
}

@media (max-width: 767.98px) {
    .home-cat-section--gap {
        margin-top: 2.25rem;
    }
}

.home-cat-all {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .8125rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    background: #f4f4f5;
    border: 1px solid #e9ecef;
    border-radius: 100px;
    padding: .35rem .9rem;
    transition: background .2s ease, color .2s ease;
}

.home-cat-all:hover {
    background: #e9ecef;
    color: #000;
}

.home-cat-all i {
    font-size: .75em;
}

/* ===== Kategori sayfası ===== */
.cat-chips-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .25rem;
}

.cat-chips-row::-webkit-scrollbar {
    display: none;
}

.cat-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8125rem;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    background: #f4f4f5;
    border: 1px solid #e9ecef;
    border-radius: 100px;
    padding: .45rem 1rem;
    white-space: nowrap;
    transition: background .2s ease;
}

.cat-chip:hover {
    background: #e9ecef;
    color: #000;
}

.cat-chip__count {
    font-size: .6875rem;
    line-height: 1;
    padding: .3em .55em;
    border-radius: 100px;
    background: rgba(0, 0, 0, .08);
    color: inherit;
}

.category-toolbar__field {
    position: relative;
    flex: 0 0 auto;
}

.category-toolbar__field>i {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: .9rem;
    pointer-events: none;
    z-index: 1;
}

.category-toolbar__select {
    height: 44px;
    min-width: 170px;
    padding-left: 2.3rem;
    border-radius: 12px;
    border: 1px solid #e2e2e6;
    background-color: #fff;
    font-size: .875rem;
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .category-toolbar__field {
        flex: 1 1 0;
        min-width: 0;
    }

    .category-toolbar__select {
        min-width: 0;
        width: 100%;
    }
}

.home-banner-card {
    border-radius: 16px;
    transition: transform .15s ease;
}

.home-banner-card:active {
    transform: scale(.97);
}

@media (max-width: 767.98px) {
    .home-banner-card {
        border-radius: 14px;
    }

    /* Yatay banner mobilde daha okunaklı yükseklik */
    .home-banner-card .ratio {
        --tyn-aspect-ratio: 40.32%;
    }
}

.model-subnav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
    border-bottom: 1px solid #eceae4;
    transition: top .25s ease;
}

.model-subnav__track {
    display: flex;
    align-items: center;
    gap: .35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .55rem 0;
}

.model-subnav__track::-webkit-scrollbar {
    display: none;
}

.model-subnav__link {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: var(--tyn-nav-link-padding-y, .5rem) .875rem;
    font-size: var(--tyn-nav-link-font-size, .875rem);
    font-weight: var(--tyn-nav-link-font-weight, 500);
    line-height: var(--tyn-nav-link-line-height, 1.375rem);
    color: var(--tyn-nav-link-color, #333d4c);
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s ease-in-out;
}

.model-subnav__link::before {
    content: "";
    position: absolute;
    bottom: -.59rem;
    left: .875rem;
    width: calc(100% - .875rem * 2);
    height: var(--tyn-nav-link-underline-border-width, var(--tyn-underline-thickness, 1px));
    background-color: black;
    transform: scaleX(0);
    transform-origin: right bottom;
    transition: transform .3s ease-out;
}

.model-subnav__link:hover {
    color: var(--tyn-nav-link-hover-color, #181d25);
}

.model-subnav__link.active {
    color: var(--tyn-nav-link-active-color, #181d25);
    font-weight: 700;
}

.model-subnav__link:hover::before,
.model-subnav__link.active::before {
    transform: scaleX(1);
    transform-origin: left bottom;
}

.model-subnav__count {
    font-size: .6875rem;
    line-height: 1;
    padding: .3em .55em;
    border-radius: 100px;
    background: rgba(0, 0, 0, .08);
    color: inherit;
}

.model-ratio {
    aspect-ratio: 130/173 !important;
}

.model-image-radius {
    border-radius: 20px;
}

.model-gallery {
    display: block;
    position: relative;
}

.model-gallery-topbar {
    position: absolute;
    top: calc(.75rem + env(safe-area-inset-top));
    left: .75rem;
    right: .75rem;
    z-index: 5;
    pointer-events: none;
}

.model-gallery-topbar button {
    pointer-events: auto;
}

.model-gallery-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #111;
    font-size: 1.05rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .15s ease;
}

.model-gallery-btn:active {
    transform: scale(.92);
}

@media (min-width: 768px) {
    .model-gallery--has-thumbs {
        display: flex;
        align-items: stretch;
        gap: 12px;
    }

    .model-gallery__thumbs {
        flex: 0 0 84px;
        width: 84px;
        max-width: 84px;
    }

    .model-gallery__thumbs .swiper {
        height: 100%;
    }

    .model-gallery__thumbs .swiper-slide {
        height: 72px !important;
        opacity: .55;
        cursor: pointer;
        transition: opacity .2s ease;
    }

    .model-gallery__thumbs .swiper-slide-thumb-active {
        opacity: 1;
    }

    .model-thumb-frame {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, .08);
    }

    .model-thumb-frame img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .model-gallery__main {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .model-container {
        padding: 0 !important;
    }

    .model-ratio {
        aspect-ratio: 85/113 !important;
    }

    .content-wrapper.has-model-contact-bar {
        padding-bottom: calc(5.25rem + env(safe-area-inset-bottom));
    }

    .model-image-radius {
        border-radius: 0px;
    }
}

@media (max-width: 767.98px) {

    /* Container padding'i sıfırlanınca row'un negatif margin'i viewport'tan
       taşıp yatay kaymaya (CLS) neden oluyordu; margin/padding'i sıfırla */
    .model-container>.row {
        margin-left: 0;
        margin-right: 0;
    }

    .model-container>.row>[class*="col"] {
        padding-left: 0;
        padding-right: 0;
    }

    /* İçerik, görselin üstüne binen app tarzı sheet */
    .model-info-sheet {
        position: relative;
        z-index: 2;
        background: #fff;
        border-radius: 24px 24px 0 0;
        margin-top: -24px;
        padding: .9rem 1rem 1.25rem !important;
    }

    .model-sheet-handle {
        width: 44px;
        height: 5px;
        border-radius: 100px;
        background: #e4e5e7;
        margin: 0 auto 1rem;
    }

    .model-name {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }

    .model-badges-row {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .model-badges-row::-webkit-scrollbar {
        display: none;
    }

    .model-badges-row .badge {
        flex: 0 0 auto;
    }

    /* Galeri pagination görsel üstünde, sheet'in üzerinde kalacak şekilde */
    .model-gallery__main .swiper-pagination {
        bottom: 38px;
    }

    .model-gallery__main .swiper-pagination-bullet {
        background: #fff;
        opacity: .55;
        box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
    }

    .model-gallery__main .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #fff;
        opacity: 1;
    }
}

.model-contact-bar {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100vw;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    box-sizing: border-box;
    z-index: 1030;
    overflow: hidden;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
}

.model-contact-bar .col {
    min-width: 0;
}

.model-contact-bar .btn {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 100px;
    font-weight: 600;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.model-profile-badge {
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: .45em .95em;
    font-size: .8125rem;
    border-radius: 100px;
}

.model-profile-badge i {
    font-size: 1em;
    line-height: 1;
}

.profile-page-heading {
    padding: 16px;
    background: #fbfaf7;
    border: 1px solid #eceae4;
    border-radius: 16px;
    margin-bottom: 16px !important;
}

.model-stats-card {
    padding-top: 14px;
    padding-bottom: 14px;
}

.model-stats-clicks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eceae4;
}

.model-stats-click__label {
    display: block;
    font-size: .75rem;
    color: #6c757d;
    margin-bottom: .15rem;
}

.model-stats-click__value {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.35;
}

.model-stats-click__delta {
    display: inline;
    font-weight: 500;
    color: #6c757d;
    font-size: .8125rem;
}

.model-stats-views__title {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .65rem;
    color: #212529;
}

.model-stats-views__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: .65rem;
}

.model-stats-views__k {
    display: block;
    font-size: .75rem;
    color: #6c757d;
    margin-bottom: .1rem;
}

.model-stats-views__n {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.2;
}

.model-stats-views__note {
    font-size: .8125rem;
    color: #6c757d;
    line-height: 1.45;
}

@media (max-width: 767.98px) {
    .profile-page-heading {
        padding: 14px;
        border-radius: 14px;
        margin-bottom: 12px !important;
    }

    .model-stats-clicks {
        gap: 10px;
    }

    /* Sheet başlığı mobilde kart değil, sheet'in doğal parçası */
    .profile-page-heading.model-head {
        background: transparent;
        border: 0;
        padding: 0;
        margin-bottom: 14px !important;
    }
}

.model-location-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .5rem;
    font-size: .8125rem;
    color: #495057;
    background: #f4f4f5;
    border: 1px solid #e9ecef;
    border-radius: 100px;
    padding: .3em .9em;
    max-width: 100%;
}

.model-location-chip i {
    font-size: .9em;
    flex-shrink: 0;
}

.model-service-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #f4f4f5;
    border: 1px solid #e9ecef;
    color: #212529;
    border-radius: 100px;
    padding: .45em 1em;
    font-size: .8125rem;
    font-weight: 500;
}

.model-service-chip i {
    color: #198754;
    font-size: 1em;
}

.model-empty-state {
    text-align: center;
    padding: 1.1rem 0;
    color: #6c757d;
}

.model-empty-state i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: .35rem;
    opacity: .55;
}

.profile-features {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    border-radius: 16px;
    padding: 0.45em 0.95em;
}

.model-location-map {
    height: 240px;
    width: 100%;
    background: #e9ecef;
}

.model-location-card .leaflet-container {
    font: inherit;
}

@media (min-width: 768px) {
    .model-location-map {
        height: 280px;
    }
}

.model-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.model-feedback-item {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.model-feedback-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.model-feedback-item:first-child {
    padding-top: 0;
}

.model-complaint-item {
    border-left: 3px solid rgba(220, 53, 69, .45);
    padding-left: 0.85rem;
}

.model-feedback-offcanvas.offcanvas-bottom {
    height: auto;
    max-height: 88vh;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    z-index: 1045;
}

.model-feedback-offcanvas .offcanvas-body {
    overflow-y: auto;
    padding-bottom: 1.25rem;
}

@media (max-width: 767.98px) {

    .model-feedback-offcanvas .offcanvas-title {
        font-size: 16px !important;
    }

    .model-complaint-card [data-bs-target="#complaintSheet"] {
        width: 100%;
    }

}

@media (min-width: 768px) {
    .model-feedback-offcanvas.offcanvas-bottom {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
}

/* Arama katmanı her sabit öğenin (header, subnav, contact bar, menü) üstünde */
.search-offcanvas.offcanvas-top {
    height: auto;
    max-height: 85vh;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 2100;
}

/* ============================================
   Mobil menü (soldan açılan drawer)
   ============================================ */
@media (max-width: 991.98px) {
    .mobile-menu-drawer.offcanvas-start {
        width: min(320px, 86vw);
    }
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: .65rem;
    width: 100%;
    padding: .85rem .25rem;
    font-size: .9375rem;
    font-weight: 500;
    color: #333d4c;
    text-align: left;
    text-decoration: none;
    background: none;
    border: 0;
    border-bottom: 1px solid #f1f3f5;
    transition: color .15s ease;
}

.mobile-menu__item:last-child .mobile-menu__link,
.mobile-menu > .mobile-menu__link:last-child {
    border-bottom: 0;
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
    color: #181d25;
}

.mobile-menu__icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    opacity: .6;
}

.mobile-menu__chevron {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .7rem;
    color: #9ca3af;
    transition: transform .25s ease;
}

.mobile-menu__link[aria-expanded="true"] .mobile-menu__chevron {
    transform: rotate(180deg);
}

.mobile-menu__sub {
    display: flex;
    flex-direction: column;
    padding: .25rem 0 .6rem;
    border-bottom: 1px solid #f1f3f5;
}

.mobile-menu__sublink {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .5rem;
    font-size: .875rem;
    color: #4b5563;
    text-decoration: none;
    border-radius: .5rem;
}

.mobile-menu__sublink:hover,
.mobile-menu__sublink:active {
    background: #f8f9fa;
    color: #181d25;
}

.search-offcanvas .offcanvas-body {
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
    overflow-y: auto;
}

.search-suggest-dropdown {
    min-width: min(420px, calc(100vw - 2rem));
    max-height: min(70vh, 560px);
    overflow-y: auto;
}

.search-suggest-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    background: #f1f3f5;
}

.search-suggest-thumb--empty {
    background: #f1f3f5;
}

.search-suggest-cat-icon {
    width: 44px;
    height: 44px;
    background: #f1f3f5;
    color: #495057;
}

.search-suggest-list .list-group-item {
    border-left: 0;
    border-right: 0;
}

.search-suggest-list .list-group-item:hover {
    background: rgba(0, 0, 0, .03);
}

/* ============================================
   Model Card (kategori + benzer modeller)
   ============================================ */
.model-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    transition: transform .15s ease, box-shadow .2s ease;
}

.model-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.model-card:active {
    transform: scale(.98);
}

.model-card__link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    min-width: 0;
    color: #000;
    text-decoration: none;
}

.model-card__link:hover {
    color: #000;
}

.model-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 150 / 210;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f3f5;
}

.model-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 0 8px 8px;
}

.model-card__name {
    display: block;
    max-width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.model-card__loc {
    display: block;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    background: #fbfaf7;
    border-radius: 12px;
}

.model-card__loc i {
    position: relative;
    top: -1px;
    margin-right: 5px;
    font-size: 12px;
    color: var(--tyn-primary, #111);
}

.model-card__price {
    padding: 0 2px;
    font-size: 13px;
    font-weight: 700;
}

.model-card__badges {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    max-width: calc(100% - 64px);
    pointer-events: none;
}

.model-card__badge {
    display: inline-flex;
    align-items: center;
    gap: .3em;
    max-width: 100%;
    padding: .35em .75em;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 100px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .25);
}

.model-card__fav {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    font-size: 15px;
    color: #111;
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .2);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: transform .15s ease, color .15s ease;
}

.model-card__fav:active {
    transform: scale(.9);
}

.model-card__fav.active {
    color: #dc3545;
}

@media (max-width: 575.98px) {
    .model-card {
        padding: 6px;
        border-radius: 14px;
    }

    .model-card__link {
        gap: 8px;
    }

    .model-card__body {
        gap: 6px;
        padding: 0 4px 6px;
    }

    .model-card__name {
        font-size: 13px;
    }

    .model-card__loc {
        padding: 5px 8px;
        font-size: 11px;
    }

    .model-card__badges {
        top: 12px;
        right: 12px;
        gap: 4px;
    }

    .model-card__badge {
        padding: .3em .6em;
        font-size: 10px;
    }

    .model-card__fav {
        top: 12px;
        left: 12px;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}