:root {
    /* Turuncu/yesil "Detayları Gör", "Spot Ürün" gibi urun-odakli ogelerde AYNEN kaliyor -
       kullanici bunu acikca istedi. Mobil uygulamadaki mor/pembe gradyan SADECE header ve
       kategori seridi icin --spot-purple/--spot-purple-dark/--spot-pink degiskenleriyle
       kullaniliyor, genel marka rengini degistirmiyor. */
    --spot-orange: #f3641e;
    --spot-orange-dark: #d94f0f;
    --spot-pink: #ff7e9a;
    --spot-pink-light: #ffe1ea;
    --spot-dark: #1b1b2f;
    --spot-green: #16a34a;
    --spot-red: #dc2626;
    --spot-gray: #6b7280;
    --spot-purple: #6d5bd0;
    --spot-purple-dark: #4c3fb0;
    --spot-purple-bg: #efecfc;
}

html {
    /* Poppins ayni rem degerinde onceki sistem fontundan (Segoe UI) gorsel olarak daha
       "buyuk" gorunuyor (x-height'i daha genis) - tum site (formlar dahil, rem tabanli
       Bootstrap boyutlandirmasi sayesinde) orantili olarak bir tik kuculsun diye kok
       font boyutu 16px yerine 15px yapildi. */
    font-size: 15px;
}
body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f7f7fb;
    color: #1b1b2f;
}

/* Siteyi standart Bootstrap container genisliginden biraz daha ferah yap */
@media (min-width: 1200px) {
    .container { max-width: 1240px; }
}
@media (min-width: 1400px) {
    .container { max-width: 1440px; }
}

.topbar {
    background-color: var(--spot-dark);
    color: #fff;
    font-size: 0.85rem;
}

.navbar-logo {
    height: 72px;
    width: auto;
    display: block;
}
.navbar-brand-with-slogan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}
.navbar-slogan {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--spot-dark, #232946);
    opacity: 0.65;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
@media (max-width: 576px) {
    .navbar-logo { height: 52px; }
    .navbar > .container { padding-top: 0.6rem !important; padding-bottom: 0.6rem !important; }
    .navbar-slogan { font-size: 0.6rem; }
}

/* Header arama kutusu logoya yapismasin, ortalanmis ve makul genislikte dursun */
.header-search-wrap {
    /* NOT: transform KULLANMA - ustteki bir ecdaddaki transform, Bootstrap dropdown'larinin
       (Popper.js "fixed" stratejisi) konumlandirma bagini bozup menuyu 0x0 boyuta dusuruyordu.
       Bunun yerine negative margin ile transform'suz ortalaniyor. */
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -310px;
    margin-top: -21px;
    width: 100%;
    max-width: 620px;
    z-index: 2;
}

/* Arama cubugu + konum secici (navbar) */
.search-bar-group {
    border: 1px solid #ddd;
    border-radius: 8px;
    /* overflow:hidden BURADA OLMAMALI - "Tum Turkiye" acilir menusunu (ve gecmiste
       otomatik tamamlama panelini) kirpip gizliyordu. Yuvarlak kose gorunumu bunun
       yerine uc/son elemanlarin kendi border-radius'uyla saglaniyor (asagida). */
}

/* Arama kutusu otomatik tamamlama (autocomplete) onerileri */
.search-suggest-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    z-index: 1050;
    max-height: 420px;
    overflow-y: auto;
}
.search-suggest-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f4f4f4;
}
.search-suggest-item:last-child { border-bottom: none; }
.search-suggest-item:hover,
.search-suggest-item.active { background: #fff3ea; }
.search-suggest-item img,
.search-suggest-noimg {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f1f1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7bcc4;
}
.search-suggest-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}
.search-suggest-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--spot-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-suggest-meta {
    font-size: 0.75rem;
    color: var(--spot-gray);
}
.search-suggest-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--spot-orange);
    flex-shrink: 0;
}
.search-bar-group input {
    border: none;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none !important;
}
.search-bar-group .location-btn {
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    background: #fff;
    color: #444;
    border-radius: 0;
    font-size: 0.9rem;
    white-space: nowrap;
}
.search-bar-group .location-btn:focus,
.search-bar-group .location-btn:active {
    box-shadow: none !important;
    outline: none;
}
.search-bar-group .btn-orange {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.header-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    border: none;
    background: none;
    position: relative;
}
.header-icon-link:hover { color: var(--spot-orange); }
.header-icon-link:focus { box-shadow: none; outline: none; }
.header-icon-link span { font-size: 0.72rem; font-weight: 500; }
.notif-dot {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--spot-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Konum secici (Tum Turkiye / il arama) dropdown paneli */
.location-dropdown-menu { width: 260px; padding: 0; }
.location-il-list { max-height: 260px; overflow-y: auto; }
.location-dropdown-menu .dropdown-item { cursor: pointer; }

/* Bildirim dropdown paneli */
.notif-dropdown-menu {
    width: 320px;
    padding: 0;
    max-height: 420px;
    overflow-y: auto;
}
.notif-item {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid #f4f4f4;
    white-space: normal;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: #fff3ea; }
.notif-item.unread .fw-semibold::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--spot-orange);
    margin-right: 6px;
}

/* Kategori cubugu - yuvarlak ikonlu, kaydirmali */

.category-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.9rem 0;
}

/* Ana sayfa: kategori bazli yatay kaydirmali urun siritlari */
.category-product-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.category-product-row::-webkit-scrollbar { display: none; }
.category-product-row-item {
    flex: 0 0 auto;
    width: 220px;
}
@media (max-width: 576px) {
    .category-product-row-item { width: 240px; }
}

/* Ana sayfa: "Bolgendeki Spotcular" yatay kart siriti */
.nearby-store-card {
    flex: 0 0 auto;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.1rem 0.8rem;
    transition: 0.15s;
}
.nearby-store-card:hover {
    border-color: var(--spot-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243,100,30,0.12);
}
.nearby-store-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.6rem;
    border: 2px solid #f0f0f0;
}
.nearby-store-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1e8;
    color: var(--spot-orange);
    font-size: 1.4rem;
}
.nearby-store-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #222;
    max-width: 100%;
    margin-bottom: 0.4rem;
}
.nearby-store-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.7rem;
    color: #888;
}

.category-bar-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.category-bar-scroll::-webkit-scrollbar { display: none; }

.category-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    width: 96px;
    text-decoration: none;
    padding: 0.25rem 0;
}
.category-bar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #efecfc;
    color: var(--spot-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: 0.15s;
    border: 2px solid transparent;
}
.category-bar-count {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--spot-orange);
    background: #fff1e8;
    border-radius: 20px;
    padding: 0.1rem 0.55rem;
    margin-top: 0.1rem;
    letter-spacing: 0.01em;
}
.category-bar-item:hover .category-bar-count { background: var(--spot-orange); color: #fff; }
.category-bar-item:hover .category-bar-icon {
    transform: translateY(-2px);
    filter: brightness(0.92);
}
.category-bar-icon.has-photo {
    padding: 0;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}
.category-bar-icon.has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kategori basina pastel renk paleti (16 renk, sirayla tekrar eder) */
.cat-color-1  { background: #fff1e8; color: #e2661a; }
.cat-color-2  { background: #e8f3ff; color: #2f6fd6; }
.cat-color-3  { background: #e6fbfa; color: #0f9c94; }
.cat-color-4  { background: #fef9e2; color: #b8860b; }
.cat-color-5  { background: #f1f2f6; color: #5b6472; }
.cat-color-6  { background: #e9f9ec; color: #24a148; }
.cat-color-7  { background: #fdeaf3; color: #d63b8e; }
.cat-color-8  { background: #fdeee0; color: #c2650a; }
.cat-color-9  { background: #f3ecfd; color: #7c4fd6; }
.cat-color-10 { background: #f1f8e2; color: #6a9926; }
.cat-color-11 { background: #fde9e9; color: #d6402f; }
.cat-color-12 { background: #fdeaf0; color: #c23566; }
.cat-color-13 { background: #eaeafd; color: #4c4fc7; }
.cat-color-14 { background: #f6efe6; color: #966a34; }
.cat-color-15 { background: #e3f6f4; color: #128a7a; }
.cat-color-16 { background: #f1e9fb; color: #7a3fc2; }
.category-bar-label {
    color: #333;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 96px;
}
.category-bar-item:hover .category-bar-label { color: var(--spot-orange); }

/* /ara sayfasi mobil: header altinda yuvarlak, kaydirmali kategori siridi */
.mobile-cat-circle-row-wrap {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}
.mobile-cat-circle-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.75rem;
}
.mobile-cat-circle-row::-webkit-scrollbar { display: none; }
.mobile-cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    width: 68px;
    text-decoration: none;
}
.mobile-cat-circle-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f5f5f7;
    color: var(--spot-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 2px solid transparent;
    overflow: hidden;
}
.mobile-cat-circle-icon img { width: 100%; height: 100%; object-fit: cover; }
.mobile-cat-circle-item span:last-child {
    color: #333;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 68px;
}
.mobile-cat-circle-item.active .mobile-cat-circle-icon {
    background: var(--spot-orange);
    color: #fff;
    border-color: var(--spot-orange);
}
.mobile-cat-circle-item.active span:last-child { color: var(--spot-orange); }

/* /ara sayfasi mobil: kategori seridinin altinda kaydirmali, coklu secilebilir "durum" cipleri */
.mobile-cond-chip-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.6rem 0.75rem 0;
}
.mobile-cond-chip-row::-webkit-scrollbar { display: none; }
.mobile-cond-chip {
    flex-shrink: 0;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #444;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}
.mobile-cond-chip.active {
    background: var(--spot-orange);
    border-color: var(--spot-orange);
    color: #fff;
}

/* Ilan verme formu: teklif suresi secim cipleri (radio) */
.duration-chip {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--spot-dark);
}
.duration-chip input { display: none; }
.duration-chip:has(input:checked) {
    background: var(--spot-orange);
    border-color: var(--spot-orange);
    color: #fff;
}

/* Acik teklif listesi (ilan detay + spotcu teklif firsatlari) */
.auction-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    margin-bottom: 0.5rem;
}
.auction-offer-row.is-top { background: #fff3ea; border: 1.5px solid var(--spot-orange); }
.auction-offer-row.is-accepted { background: #e9f9ec; border: 1.5px solid #24a148; }
.auction-offer-row.is-rejected,
.auction-offer-row.is-outbid { opacity: 0.55; }
.auction-offer-amount { font-weight: 700; font-size: 1.05rem; color: var(--spot-dark); }

/* Teklif verenin rolu (spotcu / normal uye) rozeti */
.bidder-role-badge {
    display: inline-block;
    margin-left: 0.4rem;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    vertical-align: middle;
}
.bidder-role-badge.is-seller { background: #fff3ea; color: var(--spot-orange); }
.bidder-role-badge.is-customer { background: #eef4ff; color: #2f6fd6; }

/* Genel amacli acik artirma durum rozetleri */
.auction-status-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}
.auction-status-active { background: #fff3ea; color: var(--spot-orange); }
.auction-status-won { background: #e9f9ec; color: #24a148; }
.auction-status-lost,
.auction-status-outbid { background: #f1f2f6; color: #5b6472; }
.auction-status-ended { background: #fde9e9; color: #d6402f; }

/* Anasayfa: bireysel "urun sat" vs spotcu "urun listele" yollarini ayristiran ikili CTA */
.dual-cta-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    color: #fff;
}
.dual-cta-orange { background: linear-gradient(135deg, var(--spot-orange-dark), var(--spot-orange)); }
.dual-cta-purple { background: linear-gradient(135deg, var(--spot-purple-dark), var(--spot-purple)); }
.dual-cta-bg {
    background-color: #ef570c;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 160px;
    text-decoration: none;
}
.dual-cta-bg-purple { background-color: #5245b1; }
.dual-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.text-purple { color: var(--spot-purple); }

/* Magaza profil (yuvarlak avatar) + kapak (banner) onizlemesi - spotcu ayarlari */
.store-avatar-preview {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    flex-shrink: 0;
}
.store-banner-preview {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 767.98px) {
    .dual-cta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.9rem;
        border-radius: 12px;
    }
    .dual-cta-icon { width: 36px; height: 36px; font-size: 1.05rem; }
    .dual-cta-card h5 { font-size: 0.88rem; margin-bottom: 0.25rem; }
    .dual-cta-card p { font-size: 0.72rem; margin-bottom: 0.6rem !important; line-height: 1.3; }
    .dual-cta-card .btn { font-size: 0.76rem; padding: 0.35rem 0.7rem; }
    .dual-cta-bg { min-height: 110px; }
}

.category-scroll-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.category-scroll-arrow:hover { background: var(--spot-orange); color: #fff; border-color: var(--spot-orange); }

.text-orange { color: var(--spot-orange) !important; }

.btn-orange {
    background-color: var(--spot-orange);
    border-color: var(--spot-orange);
    color: #fff;
}
.btn-orange:hover { background-color: var(--spot-orange-dark); color: #fff; }

.btn-outline-orange {
    border: 1px solid var(--spot-orange);
    color: var(--spot-orange);
    background: #fff;
}
.btn-outline-orange:hover { background-color: var(--spot-orange); color: #fff; }

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #fff3ea, #ffe3d1);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}
.hero-section-alt-1 { background: linear-gradient(135deg, #fde3e3, #ffd3cf); }
.hero-section-alt-2 { background: linear-gradient(135deg, #fff3ea, #ded6fb); }
.hero-section-alt-3 { background: linear-gradient(135deg, #e3f3ff, #cfe8ff); }
.hero-title { font-family: 'Poppins', 'Segoe UI', sans-serif; font-size: 2.6rem; font-weight: 800; line-height: 1.15; }

/* Hero slider (carousel) */
.hero-carousel, .hero-carousel .carousel-inner, .hero-carousel .carousel-item { height: 100%; border-radius: 18px; }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    opacity: 1;
}
.hero-carousel .carousel-control-prev { left: 16px; }
.hero-carousel .carousel-control-next { right: 16px; }
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    width: 1.1rem;
    height: 1.1rem;
}
.hero-carousel .carousel-indicators { margin-bottom: 0.75rem; }
.hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--spot-orange);
    opacity: 0.35;
    border: none;
}
.hero-carousel .carousel-indicators .active { opacity: 1; }

.locate-btn {
    background-color: var(--spot-dark);
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    border: none;
}
.locate-btn:hover { background-color: #000; color: #fff; }

/* Kategori kartlari */
.category-card {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.15s;
    text-decoration: none;
    color: #1b1b2f;
    display: block;
}
.category-card:hover { border-color: var(--spot-orange); transform: translateY(-3px); color: #1b1b2f; }
.category-card i { font-size: 1.6rem; color: var(--spot-orange); }

/* Urun karti */
.product-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
    transition: 0.15s;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-card img { height: 190px; object-fit: cover; width: 100%; }
.product-card .price { font-weight: 700; font-size: 1.2rem; color: var(--spot-dark); }
.product-card .old-price { text-decoration: line-through; color: var(--spot-gray); font-size: 0.9rem; }

/* Arama sayfasi liste satiri (product-card'dan farkli yapida, ayni kartla karismasin) */
.product-list-row {
    /* NOT: overflow:hidden BURADA OLMASIN. .result-list (flex-column) icindeki bu
       satir, ic ice flex baglaminda bazen icerigine (basik/fiyat/magaza/mesafe
       etiketi kadar satir) gore degil sabit bir yukseklige gore boyutlaniyor -
       icerik satir sayisi degistikce (orn. mesafe etiketi eklenince) tekrar
       kirpilmaya baslıyordu. Kose yuvarlama artik sadece resme (.product-list-thumb)
       uygulaniyor, boylece satirin kendisi icerige gore serbestce buyuyebiliyor. */
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.15s;
}
.product-list-row:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); cursor: pointer; }
.product-list-row.active { border-color: var(--spot-orange); box-shadow: 0 0 0 2px rgba(243,100,30,0.25); }
.product-list-row .price { font-weight: 700; font-size: 1.1rem; color: var(--spot-dark); }
.product-list-thumb {
    height: 155px;
    display: block;
    overflow: hidden;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}
.product-list-thumb img,
.product-list-thumb > div {
    height: 100%;
}

.badge-orange { background-color: var(--spot-orange); color: #fff; }
.badge-green { background-color: var(--spot-green); color: #fff; }
.badge-red { background-color: var(--spot-red); color: #fff; }
.badge-gray { background-color: var(--spot-gray); color: #fff; }

/* Pastel durum rozetleri (fiyatin altinda) */
.badge-pastel-pink { background: #fde3e3; color: #b3261e; font-weight: 600; }
.badge-pastel-gray { background: #eef0f3; color: #55606d; font-weight: 600; }
.badge-pastel-green { background: #dcfce7; color: #15803d; font-weight: 600; }

.spot-tag {
    background: var(--spot-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}

.fav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.fav-btn:hover { color: var(--spot-red); }
.fav-btn.active { color: var(--spot-red); }
.fav-btn-inline {
    position: static;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    font-size: 1.1rem;
}

/* Gunun firsatlari listesi (sol sidebar) */
.deal-list-item {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.deal-list-item:last-child { border-bottom: none; }
.deal-list-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.deal-list-item .deal-title { font-size: 0.88rem; font-weight: 600; color: #1b1b2f; }
.deal-list-item .deal-price { font-weight: 700; color: var(--spot-dark); }
.deal-list-item .deal-old-price { text-decoration: line-through; color: var(--spot-gray); font-size: 0.78rem; }
.deal-discount { background: #fde3e3; color: #b3261e; font-size: 0.72rem; font-weight: 700; border-radius: 6px; padding: 0.1rem 0.4rem; }

.distance-tag {
    background: #eef2ff;
    color: #4338ca;
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
}

#map, #mapIndividual, #mapAuction, #detailMap, #storeMap { height: 480px; border-radius: 14px; z-index: 1; }
.leaflet-popup-content { font-family: inherit; }

.map-price-pin {
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -100%);
    background: linear-gradient(135deg, var(--spot-orange), var(--spot-orange-dark));
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    width: max-content;
    box-shadow: 0 3px 10px rgba(243,100,30,0.45);
    border: 2px solid #fff;
}
.map-price-pin::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid var(--spot-orange-dark);
}

/* Zoom-out kumelenme (cluster) pini */
.map-cluster-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.map-cluster-sm { width: 38px; height: 38px; font-size: 0.8rem; background: radial-gradient(circle at 30% 30%, var(--spot-orange), var(--spot-orange-dark)); }
.map-cluster-md { width: 46px; height: 46px; font-size: 0.9rem; background: radial-gradient(circle at 30% 30%, #ff8a3d, var(--spot-orange-dark)); }
.map-cluster-lg { width: 54px; height: 54px; font-size: 1rem; background: radial-gradient(circle at 30% 30%, var(--spot-dark), #000); }

/* Harita pin popup karti (fiyat pinine tiklayinca acilan detay karti) */
.spotagel-map-popup .leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.spotagel-map-popup .leaflet-popup-content { margin: 0; width: 220px !important; }
.spotagel-map-popup .leaflet-popup-tip { box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.spotagel-map-popup .leaflet-popup-close-button {
    top: 6px !important;
    right: 6px !important;
    width: 22px !important;
    height: 22px !important;
    line-height: 20px !important;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: var(--spot-dark) !important;
    font-size: 1rem !important;
}

.map-popup-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
.map-popup-img { width: 100%; height: 110px; object-fit: cover; display: block; }
.map-popup-img-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f4;
    color: #b7bcc4;
    font-size: 1.8rem;
}
.map-popup-body { padding: 10px 12px 12px; }
.map-popup-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    margin-bottom: 0.35rem;
}
.map-popup-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--spot-dark);
    line-height: 1.25;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.map-popup-price {
    color: var(--spot-orange);
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}
.map-popup-store {
    font-size: 0.75rem;
    color: var(--spot-gray);
    margin-bottom: 0.55rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.map-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: var(--spot-orange);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0;
    border-radius: 8px;
    transition: 0.15s;
}
.map-popup-btn:hover { background: var(--spot-orange-dark); color: #fff; }

/* Tek magaza pini (arka plan yok, sade cerceveli) */
.map-store-pin {
    width: 40px;
    height: 40px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #fff;
    border: 3px solid var(--spot-orange);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -32px 0 0 -20px;
}
.map-store-pin i {
    transform: rotate(45deg);
    color: var(--spot-orange);
    font-size: 1.1rem;
}

/* Masaustunde harita ile yan yana sabit yukseklikte kaydirmali; mobilde artik tek
   sutunlu tam sayfa liste oldugundan (harita ayri tam ekran katmanda) dogal sayfa
   kaydirmasi kullanilir, ic kaydirma kutusuna gerek yok. */
@media (min-width: 992px) {
    .result-list { max-height: 620px; overflow-y: auto; }
}

/* Mobil: tam ekran harita katmani + onu acan sabit buton (bkz. arama sayfasi) */
.mobile-map-fab {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(72px + env(safe-area-inset-bottom));
    z-index: 1045;
    background: var(--spot-dark);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.mobile-map-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    display: flex;
    flex-direction: column;
}
.mobile-map-overlay.open { visibility: visible; opacity: 1; }
.mobile-map-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.mobile-map-overlay #mapMobile { flex-grow: 1; }

.footer-dark { background-color: var(--spot-dark); }
.footer-link { color: #cbd5e1; text-decoration: none; font-size: 0.92rem; line-height: 2.1; }
.footer-link:hover { color: var(--spot-orange); }
.footer-link-columns {
    column-count: 2;
    column-gap: 1.5rem;
}
.footer-logo {
    height: 42px;
    width: auto;
    display: block;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.15s;
}
.footer-social-icon:hover { background: var(--spot-orange); color: #fff; }

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.08);
    color: #e5e7eb;
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
}

/* Mobil uygulama tarzi alt navigasyon */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.4rem 0.25rem calc(0.4rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--spot-gray);
    text-decoration: none;
    font-size: 0.65rem;
    flex: 1;
    padding: 0.2rem 0;
}
.mobile-nav-item i { font-size: 1.25rem; }
.mobile-nav-item.active { color: var(--spot-orange); }
.mobile-nav-item-cta {
    color: #fff;
    background: none;
    border: none;
    outline: none;
}
.mobile-nav-item-cta:focus,
.mobile-nav-item-cta:focus-visible {
    outline: none;
    box-shadow: none;
}
.mobile-nav-item-cta i {
    background: var(--spot-orange);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-top: -22px;
    box-shadow: 0 4px 12px rgba(243,100,30,0.4);
    border: 3px solid #fff;
}
.mobile-nav-item-cta span { color: var(--spot-gray); margin-top: 2px; }

/* Mobil alt nav - "Daha Fazla" (uc nokta) acilir menusu */
.mobile-more-wrap { position: relative; padding: 0; }
.mobile-more-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--spot-gray);
    font-size: 0.65rem;
    padding: 0.2rem 0;
    width: 100%;
}
.mobile-more-toggle i { font-size: 1.25rem; }
.mobile-more-wrap.open .mobile-more-toggle { color: var(--spot-orange); }
.mobile-more-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    right: -8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    min-width: 170px;
    padding: 0.4rem;
    opacity: 0;
    transform: translateY(8px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.mobile-more-wrap.open .mobile-more-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.mobile-more-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: var(--spot-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.mobile-more-item:hover { background: #fff3ea; color: var(--spot-orange); }
.mobile-nav-icon-wrap { position: relative; display: inline-flex; }
.mobile-more-menu-wide { min-width: 240px; max-height: 60vh; overflow-y: auto; }
.mobile-notif-item.unread { background: #fff3ea; }

@media (max-width: 767.98px) {
    body { padding-bottom: 64px; }
}

/* Mobil ust sag hesap ikonu (header) - uyelik islemleri */
.mobile-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    color: var(--spot-dark);
    font-size: 1.3rem;
    text-decoration: none;
}
.mobile-account-btn:focus { outline: none; box-shadow: none; }
.mobile-account-wrap { position: relative; }
.mobile-account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    min-width: 170px;
    padding: 0.4rem;
    opacity: 0;
    transform: translateY(-8px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 1040;
}
.mobile-account-wrap.open .mobile-account-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Sabit iletisim menusu (FAB) - WhatsApp / Telefon / Yol Tarifi */
.contact-fab {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1035;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .contact-fab { bottom: 28px; }
}

.contact-fab-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(16px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-fab.open .contact-fab-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-fab-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    text-decoration: none;
    transition: transform 0.15s;
}
.contact-fab-item:hover { transform: scale(1.08); color: #fff; }
.contact-fab-whatsapp { background: #25d366; }
.contact-fab-call { background: var(--spot-orange); }
.contact-fab-directions { background: #4b5563; }

.contact-fab-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--spot-orange);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 14px rgba(243,100,30,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s;
}
.contact-fab.open .contact-fab-toggle {
    transform: rotate(135deg);
}

.sidebar-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 1.25rem;
}

/* KVKK/cerezler/yardim/hakkimizda vb. sabit icerik sayfalari icin okunabilir tipografi */
.static-page-content { padding: 1.75rem; }
.static-page-content p { color: #444; line-height: 1.7; }
.static-page-content ul { color: #444; line-height: 1.8; padding-left: 1.25rem; }
.static-page-content h5 { color: var(--spot-dark); }
.static-page-content a { color: var(--spot-orange); }
.static-page-content .accordion-button:not(.collapsed) {
    background: #fff3ea;
    color: var(--spot-dark);
    box-shadow: none;
}
.static-page-content .accordion-button:focus { box-shadow: none; border-color: #eee; }

/* Magaza profili banner - canli, renkli tasarim */
.store-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 2rem;
    background: linear-gradient(120deg, var(--spot-pink) 0%, var(--spot-orange) 55%, var(--spot-orange-dark) 100%);
    box-shadow: 0 10px 30px rgba(243, 100, 30, 0.22);
}

.store-banner-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.22) 0, transparent 40%),
        radial-gradient(circle at 15% 95%, rgba(255,255,255,0.15) 0, transparent 35%);
    pointer-events: none;
}

.store-banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(2px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
/* /ara sayfasi: Spotcudan / Sahibinden / Acik Artirma sonuc sekmeleri - her zaman
   tek satirda, renkli "chip" gorunumlu (pasifken de rengi belli, aktifken dolu renk) */
.spot-search-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    border-bottom: none;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.spot-search-tabs::-webkit-scrollbar { display: none; }
.spot-search-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    transition: 0.15s;
}
.spot-search-tab-count {
    display: inline-block;
    border-radius: 999px;
    padding: 0.05rem 0.5rem;
    font-size: 0.72rem;
    margin-left: 0.35rem;
}

/* Her sekme kendi rengiyle aciktir (pasifken pastel zemin, aktifken dolu renk): Spotcudan=turuncu, Sahibinden=mavi, Acik Artirma=mor */
.spot-search-tabs .nav-link.tab-color-orange { background: #fff3ea; color: var(--spot-orange); }
.spot-search-tabs .nav-link.tab-color-orange .spot-search-tab-count { background: rgba(243,100,30,0.15); color: var(--spot-orange); }
.spot-search-tabs .nav-link.tab-color-orange.active { background: var(--spot-orange); color: #fff; border-color: var(--spot-orange); }
.spot-search-tabs .nav-link.tab-color-orange.active .spot-search-tab-count { background: rgba(255,255,255,0.25); color: #fff; }

.spot-search-tabs .nav-link.tab-color-blue { background: #eef4ff; color: #2f6fd6; }
.spot-search-tabs .nav-link.tab-color-blue .spot-search-tab-count { background: rgba(47,111,214,0.15); color: #2f6fd6; }
.spot-search-tabs .nav-link.tab-color-blue.active { background: #2f6fd6; color: #fff; border-color: #2f6fd6; }
.spot-search-tabs .nav-link.tab-color-blue.active .spot-search-tab-count { background: rgba(255,255,255,0.25); color: #fff; }

.spot-search-tabs .nav-link.tab-color-purple { background: var(--spot-purple-bg); color: var(--spot-purple); }
.spot-search-tabs .nav-link.tab-color-purple .spot-search-tab-count { background: rgba(124,79,214,0.15); color: var(--spot-purple); }
.spot-search-tabs .nav-link.tab-color-purple.active { background: var(--spot-purple); color: #fff; border-color: var(--spot-purple); }
.spot-search-tabs .nav-link.tab-color-purple.active .spot-search-tab-count { background: rgba(255,255,255,0.25); color: #fff; }

@media (max-width: 576px) {
    .spot-search-tabs { gap: 0.35rem; }
    .spot-search-tabs .nav-link { font-size: 0.78rem; padding: 0.4rem 0.6rem; }
    .spot-search-tabs .nav-link i { font-size: 0.88rem; margin-right: 0.2rem; }
    .spot-search-tab-count { font-size: 0.72rem; padding: 0.03rem 0.45rem; margin-left: 0.3rem; }
}

/* Bireysel ilan/teklif geri sayim rozeti - paylasilan js-countdown elemanlari */
.listing-countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--spot-orange-dark), var(--spot-orange));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 3px 10px rgba(243,100,30,0.3);
}
.listing-countdown-badge i { font-size: 1rem; }

/* Sonuc kartlarinin (Acik Artirma sekmesi vb.) sag ust kosesine oturan lacivert gradient varyant */
.listing-countdown-badge-corner {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    left: auto;
    width: max-content;
    align-self: flex-start;
    margin-top: 0;
    z-index: 2;
    background: linear-gradient(135deg, #1e2a5e, #33468f);
    box-shadow: 0 3px 12px rgba(30,42,94,0.45);
    font-size: 0.95rem;
    padding: 0.45rem 0.9rem;
}
.listing-countdown-badge-corner.countdown-urgent {
    background: linear-gradient(135deg, #b5281a, #e0432c);
    box-shadow: 0 3px 10px rgba(214,64,47,0.4);
}
.countdown-seg { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.2; min-width: 3.4em; }
.countdown-seg-val { font-family: 'Poppins', monospace; font-size: 1.05em; font-weight: 800; }
.countdown-seg-unit { font-size: 0.52em; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.3px; white-space: nowrap; }
.countdown-sep { opacity: 0.6; margin: 0 0.1rem; align-self: flex-start; }
.listing-countdown-badge.countdown-urgent {
    background: linear-gradient(135deg, #b5281a, #e0432c);
    box-shadow: 0 3px 10px rgba(214,64,47,0.4);
    animation: countdownPulse 1s infinite;
}
.listing-countdown-badge.countdown-ended { background: #f1f2f6; color: var(--spot-gray); box-shadow: none; }
@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.store-banner-icon-photo {
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
}

.store-banner-title {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
    margin-bottom: 1rem;
}

.store-banner-badge-open { background: #16a34a; color: #fff; vertical-align: middle; font-size: 0.7rem; }
.store-banner-badge-closed { background: rgba(255,255,255,0.25); color: #fff; vertical-align: middle; font-size: 0.7rem; }

.store-banner-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.store-banner-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    backdrop-filter: blur(2px);
}

/* Mobil: header altinda tam genislikte "peek" harita, dokununca genisler */
.store-map-mobile-wrap {
    /* z-index:1 (dusuk ama TANIMLI bir deger) burada sart: Leaflet'in kendi ic
       kontrolleri (orn. .leaflet-control-container, z-index:1000) position:relative
       TEK BASINA yigin baglami olusturmadigindan, bu deger olmadan disariya "sizip"
       .mobile-content-sheet'in yuvarlak ust kosesinin ustune biniyordu. */
    position: relative;
    z-index: 1;
    height: 110px;
    overflow: hidden;
    cursor: pointer;
    transition: height 0.32s ease;
}
.store-map-mobile-wrap.expanded { height: 420px; }
.store-map-mobile { width: 100%; height: 100%; }

/* Haritanin OSM/Leaflet attribution yazisi mobil "peek" haritada gereksiz yer kaplıyor */
.store-map-mobile .leaflet-control-attribution {
    font-size: 0.55rem;
    opacity: 0.55;
    background: rgba(255,255,255,0.6);
}

/* Buyut/kucult ok butonu - haritanin ust ortasinda, yon durumune gore doner */
.store-map-mobile-toggle {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 44px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--spot-orange);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 1.1rem;
    z-index: 5;
    padding: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

/* Haritanin hemen altinda baslayan icerik "sheet" - haritanin uzerine hafifce biner,
   ust koseleri yuvarlak ve golgeli, sanki haritanin uzerinde yuzen bir panel gibi durur */
/* NOT: burada position:relative + z-index KOYMA - bu, icindeki .store-filter-panel'i
   (position:fixed, z-index:1050) kendi (dusuk) yigin baglami icine hapsedip, panelin
   disaridaki .mobile-bottom-nav (z-index:1030) ile kok seviyesinde dogru karsilastirilmasini
   engelliyordu; sonucta panelin alt kismi nav'in ARKASINDA kalip bazi ogeler gorunmuyordu.
   Haritanin ustune biniş gorunumu icin buna zaten ihtiyac yok - normal DOM/boyama sirasi yeterli. */
@media (max-width: 767.98px) {
    .mobile-content-sheet {
        /* z-index burada .mobile-bottom-nav'dan (1030) BILEREK yuksek: boylece bu
           kutunun TUM alt agaci (icindeki fixed filtre paneli dahil) nav ile kok
           seviyesinde karsilastirildiginda her zaman kazanir - hem haritanin ic
           kontrolleri (Leaflet, z-index:1000) bu sheet'in ustune cikamaz, hem de
           filtre paneli navin arkasinda kalmaz. */
        position: relative;
        z-index: 1032;
        margin-top: -16px;
        background: #f7f7fb;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
        padding-top: 1.25rem;
    }
}

/* Mobilde alttan gelen filtre paneli (bottom sheet) */
.store-filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
}
.store-filter-backdrop.show { display: block; }
@media (max-width: 767.98px) {
    .store-filter-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        /* background BURADA ACIKCA TANIMLI OLMALI: bu panel .sidebar-card (zemin rengi
           orada tanimli) OLMADAN da (orn. arama sayfasindaki <form> gibi) kullanilabiliyor -
           .sidebar-card'a guvenmek arama sayfasinda seffaf/zeminsiz gorunmesine yol acmisti. */
        background: #fff;
        padding: 1.25rem; /* .sidebar-card'in padding'ine guveniyordu, o sinif olmadan (orn. arama formu) bosluksuz kaliyordu */
        margin-bottom: 0 !important; /* Bootstrap'in .mb-4 sinifi !important kullaniyor, override icin bu da !important olmali */
        max-height: 95vh;
        overflow-y: auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
        transform: translateY(105%);
        transition: transform 0.3s ease;
        z-index: 1050;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 30px rgba(0,0,0,0.18);
    }
    .store-filter-panel.show { transform: translateY(0); }
    .store-filter-panel-handle {
        width: 42px;
        height: 5px;
        border-radius: 3px;
        background: #e0e0e6;
        margin: 0 auto 0.75rem;
    }
}

.store-banner-share {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.22);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
    border-radius: 30px;
    backdrop-filter: blur(2px);
    text-decoration: none;
    transition: 0.15s;
}
.store-banner-share:hover { background: #25d366; color: #fff; }

@media (max-width: 767.98px) {
    .store-banner-card { padding: 1.5rem; border-radius: 16px; }
    .store-banner-title { font-size: 1.5rem; }
}

.sidebar-card-purple {
    background: var(--spot-purple-bg);
    border-radius: 14px;
    border: 1px solid #e0dbfa;
    padding: 1.25rem;
}
.sidebar-card-purple .icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--spot-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.btn-purple {
    background: var(--spot-purple);
    border-color: var(--spot-purple);
    color: #fff;
}
.btn-purple:hover { background: var(--spot-purple-dark); color: #fff; }

.banner-purple {
    background: linear-gradient(135deg, var(--spot-purple-dark), var(--spot-purple));
}

.hero-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    color: #fff;
    transition: transform 0.15s;
}
.hero-feature-card:hover { transform: translateY(-2px); }
.hero-feature-card .small { color: rgba(255,255,255,0.85); }
.hero-feature-orange { background: linear-gradient(135deg, var(--spot-orange-dark), var(--spot-orange)); }
.hero-feature-purple { background: linear-gradient(135deg, #5245b1, #7266d1); }
.hero-feature-dark { background: linear-gradient(135deg, #1e2a5e, #33468f); }
.hero-feature-card .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Hero illustrasyonu (fotograf yerine ikon kompozisyonu) */
.hero-illustration {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    height: 220px;
}
.hero-obj {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spot-orange);
    box-shadow: 0 8px 20px rgba(243,100,30,0.12);
}
.hero-obj-md { width: 70px; height: 70px; font-size: 1.6rem; }
.hero-obj-lg { width: 90px; height: 90px; font-size: 2.1rem; }
.hero-obj-xl { width: 130px; height: 160px; font-size: 3.4rem; }
.hero-obj-main { background: var(--spot-orange); color: #fff; border: none; }

.stat-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 1.25rem;
    text-align: center;
}
.stat-card .num { font-size: 1.7rem; font-weight: 800; color: var(--spot-dark); }

/* Duzenleme formu - mevcut gorseller (silme onayli) */
.existing-image-item {
    position: relative;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: grab;
}
.existing-image-item.dragging { opacity: 0.4; }
.existing-image-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
}
.existing-image-item.marked-for-delete img { opacity: 0.4; }
.existing-image-drag-handle {
    font-size: 0.9rem;
    color: #bbb;
}
.existing-image-checkbox {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: var(--spot-red);
    cursor: pointer;
}
.existing-image-main-tag {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--spot-orange);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
}

/* Urun listesi - foto gostergesi ikonu (aktif = resim var, tiklaninca popup) */
.product-photo-indicator {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    border: none;
}
.product-photo-indicator.has-photo {
    background: #fff3ea;
    color: var(--spot-orange);
    cursor: pointer;
}
.product-photo-indicator.has-photo:hover { background: var(--spot-orange); color: #fff; }
.product-photo-indicator.no-photo {
    background: #f1f1f4;
    color: #b7bcc4;
    cursor: default;
}

/* Admin - kategori kapak fotografi yukleme (kucuk tiklanabilir kare) */
.category-photo-upload {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}
.category-photo-upload img { width: 100%; height: 100%; object-fit: cover; }
.category-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f4;
    color: #b7bcc4;
}
.category-photo-upload:hover .category-photo-placeholder { background: #fff3ea; color: var(--spot-orange); }

/* Ana sayfa - kategori siridi basligindaki kapak fotografi (ikon yerine/yaninda) */
.category-row-cover {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 0.4rem;
}

/* Urun ekle/duzenle formu - hiyerarsik bolumler */
/* Spotcu paneli - modern sekme menusu */
.seller-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 0.6rem;
}
.seller-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    border: 1.5px solid transparent;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: background-color 0.15s, color 0.15s;
}
.seller-nav-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.seller-nav-item i { font-size: 1.05rem; color: var(--spot-orange); }
.seller-nav-item:hover { background: #fff3ea; color: var(--spot-dark); }
.seller-nav-item.active {
    background: linear-gradient(120deg, var(--spot-orange), var(--spot-pink));
    color: #fff;
    box-shadow: 0 4px 12px rgba(243,100,30,0.3);
}
.seller-nav-item.active i { color: #fff; }
@media (max-width: 576px) {
    .seller-nav-item span { display: none; }
    .seller-nav-item { padding: 0.6rem 0.8rem; min-width: 44px; }
    .seller-nav-item i { font-size: 1.2rem; }
}

.form-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--spot-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}
.form-section-title i { color: var(--spot-orange); font-size: 1.15rem; }

/* Adim adim (wizard) gostergesi */
.form-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}
.form-stepper::before {
    content: '';
    position: absolute;
    top: 17px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #eee;
    z-index: 0;
}
.form-stepper-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    cursor: pointer;
    text-align: center;
}
.form-stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.15s;
}
.form-stepper-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    max-width: 90px;
}
.form-stepper-item.active .form-stepper-circle {
    background: var(--spot-orange);
    border-color: var(--spot-orange);
    color: #fff;
}
.form-stepper-item.active .form-stepper-label { color: var(--spot-dark); }
.form-stepper-item.completed .form-stepper-circle {
    background: #fff3ea;
    border-color: var(--spot-orange);
    color: var(--spot-orange);
}
@media (max-width: 576px) {
    .form-stepper-label { display: none; }
}

/* Surukle-birak gorsel yukleme alani */
.image-dropzone {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.15s;
    color: #666;
}
.image-dropzone i { font-size: 2.2rem; color: var(--spot-orange); display: block; margin-bottom: 0.5rem; }
.image-dropzone:hover,
.image-dropzone.dragover {
    border-color: var(--spot-orange);
    background: #fff3ea;
}
.image-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.image-preview-item {
    position: relative;
    cursor: grab;
}
.image-preview-item.dragging { opacity: 0.4; }
.image-preview-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #eee;
}
.image-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--spot-red);
    color: #fff;
    border: 2px solid #fff;
    font-size: 0.85rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}
.image-preview-main-tag {
    position: absolute;
    top: 4px;
    left: 4px;
    background: var(--spot-orange);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
}

.seller-product-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 1rem;
}

/* Aktif/pasif tek tikla switch */
.status-switch-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.status-switch-label .form-check-input { cursor: pointer; width: 2.4em; height: 1.3em; }
.status-switch-label .form-check-input:checked { background-color: #16a34a; border-color: #16a34a; }

.attribute-table td { border-color: #f0f0f0; padding: 0.5rem 0.75rem; }
.attribute-table td:first-child { width: 45%; }

/* Sik breadcrumb (urun detay sayfasi ustu) - varsayilan Bootstrap "/" ayiracli duz metin
   yerine yuvarlak pil govde + ok ayiraclar + ev ikonu */
.spot-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.82rem;
}
.spot-breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}
.spot-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f285"; /* bi-chevron-right */
    font-family: "bootstrap-icons";
    font-size: 0.65rem;
    color: #ccc;
    padding-right: 0.5rem;
}
.spot-breadcrumb .breadcrumb-item a {
    color: var(--spot-gray);
    text-decoration: none;
    font-weight: 500;
}
.spot-breadcrumb .breadcrumb-item a:hover { color: var(--spot-orange); }
.spot-breadcrumb .breadcrumb-item a i { font-size: 0.78rem; margin-right: 0.2rem; }
.spot-breadcrumb .breadcrumb-item.active {
    color: var(--spot-dark);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}
@media (max-width: 576px) {
    .spot-breadcrumb .breadcrumb-item.active { max-width: 150px; }
}

/* Urun galerisi (ana gorsel + kucuk resimler + buyutme popup'i) */
.product-gallery-main {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7fb;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-gallery-main[data-bs-toggle] { cursor: zoom-in; }
.product-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #9aa0a6;
}
.product-gallery-placeholder i { font-size: 3rem; }
.product-gallery-placeholder span { font-size: 0.85rem; }

/* Gorseli olmayan urun kartlari icin ortak "foto bekleniyor" yer tutucusu */
.product-photo-pending {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    background: linear-gradient(135deg, #f4f5f8, #eceef2);
    color: #9aa0a6;
}
.product-photo-pending i { font-size: 1.8rem; }
.product-photo-pending span { font-size: 0.72rem; font-weight: 500; text-align: center; padding: 0 0.5rem; }
.product-gallery-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery-count {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}
.product-gallery-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.product-gallery-thumb {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: 0.15s;
}
.product-gallery-thumb:hover { opacity: 1; }
.product-gallery-thumb.active { border-color: var(--spot-orange); opacity: 1; }

#galleryModal .carousel-control-prev,
#galleryModal .carousel-control-next { width: 5%; }

/* Guven rozetleri satiri */
.product-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 0;
}

/* Urun meta bilgi rozetleri */
.product-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.product-meta-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f7f7fb;
    color: #555;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
}

/* Fiyat araligi kaydiricisi (noUiSlider) */
.price-slider-wrap { padding: 0 0.4rem; }
.price-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--spot-dark);
    margin-bottom: 0.6rem;
}
.price-slider { height: 5px; margin: 0 0.3rem 1rem; }
.price-slider .noUi-connect { background: var(--spot-orange); }
.price-slider .noUi-handle {
    width: 18px;
    height: 18px;
    right: -9px;
    top: -7px;
    border-radius: 50%;
    border: 2px solid var(--spot-orange);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.price-slider .noUi-handle::before,
.price-slider .noUi-handle::after { display: none; }

.filter-clear-btn {
    color: var(--spot-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}
.filter-clear-btn:hover { color: var(--spot-red); }

@media (min-width: 992px) {
    #listTab, #mapTab { display: block !important; opacity: 1 !important; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
    #map, #mapIndividual, #detailMap, #storeMap { height: 320px; }
}
