/* Musteri vitrini (storefront) stilleri (Faz 1). Admin panelinden bagimsiz, kendi
   sinif adlarini kullanir (shop-*) ki admin.css ile cakismasin. */

:root {
    --shop-teal: #0f4a44;
    --shop-teal-dark: #0a332f;
    --shop-cream: #f7efdd;
    --shop-text: #1f2933;
    --shop-muted: #6b7280;
    --shop-border: #e6ded0;
}

.shop-shell {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--shop-text);
    /* Eskiden hafif krem (#fffdf9) idi - kullanici acikca "urunlerin arkasi bej olmasin, beyaz
       olsun" dedi, HEM florist HEM genel sektorde (site geneli). */
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---- Ust bilgi seridi ---- */
.shop-ticker {
    background: var(--shop-ticker-bg, var(--shop-teal-dark));
    color: var(--shop-ticker-text, #cfe3e0);
    font-size: 0.78rem;
    padding: 0.4rem 0;
    overflow: hidden;
}

.shop-ticker:not(.animated) {
    padding: 0.4rem 1.5rem;
}

.shop-ticker:not(.animated) .shop-ticker-track {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
}

.shop-ticker.animated .shop-ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: shop-ticker-scroll 22s linear infinite;
    padding-left: 100%;
}

.shop-ticker.animated:hover .shop-ticker-track {
    animation-play-state: paused;
}

.shop-ticker-track span {
    display: inline-flex;
    align-items: center;
}

.shop-ticker.animated .shop-ticker-track span::after {
    content: "•";
    margin-left: 2.5rem;
    opacity: 0.5;
}

@keyframes shop-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .shop-ticker.animated .shop-ticker-track {
        animation: none;
        padding-left: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ---- Header (referans sitelerdeki gibi: beyaz zemin, teal renk asagidaki nav cubugunda) ---- */
.shop-header {
    background: #fff;
    color: var(--shop-text);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--shop-border);
}

.shop-search {
    display: flex;
    align-items: center;
    background: var(--shop-cream);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    max-width: 420px;
    min-width: 160px;
}

.shop-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.55rem 0.85rem;
    color: var(--shop-text);
    font-size: 0.88rem;
    outline: none;
}

.shop-search input::placeholder {
    color: var(--shop-muted);
}

.shop-search button {
    border: none;
    background: var(--shop-teal);
    color: #fff;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    font-size: 0.95rem;
    align-self: stretch;
}

.shop-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--shop-teal);
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* ---- Header sag taraf: Siparis Takibi / Sepetim kisayollari ---- */
.shop-header-utility {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.shop-header-util-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--shop-text);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

.shop-header-util-link:hover {
    color: var(--shop-teal);
}

.shop-language-select {
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    font-size: 0.82rem;
    background: #fff;
    color: var(--shop-text);
    cursor: pointer;
}

.shop-header-util-icon {
    font-size: 1.1rem;
}

.shop-logo-image {
    /* Genis/yatay logolar (ikon+yazi yan yana) icin genislige gore sinirlamak dogru -
       yukseklige gore sinirlamak (eski yaklasim) yatay bir logoyu KUCUK gosteriyordu.
       Hem cok genis hem cok yuksek olmasin diye ikisi de sinirli, hangisi once carparsa
       o baglayici olur (oran korunuyor, width/height:auto sayesinde). */
    max-width: 280px;
    max-height: 110px;
    width: auto;
    height: auto;
    display: block;
}

/* ---- Mega menu (koyu teal ust duz navigasyon + acilir alt menu, referans sitelerdeki gibi) ---- */
.shop-main-menu {
    background: var(--shop-teal);
    width: 100%;
}

.shop-main-menu-inner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    /* Nav'in arka plani (teal) tam genislikte kalir, sadece ic icerik header/sayfa
       icerigiyle ayni sutunda (max-width) ortalanir - genis ekranlarda sola yigilma onlenir. */
    max-width: var(--shop-max-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.shop-main-menu-inner > a {
    padding: 0.7rem 0;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.shop-main-menu-inner > a:hover {
    color: var(--shop-cream);
}

.shop-main-menu-dropdown {
    position: relative;
}

.shop-main-menu-dropdown > a {
    display: block;
    padding: 0.7rem 0;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.shop-main-menu-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 30;
}

.shop-main-menu-dropdown:hover .shop-main-menu-dropdown-panel {
    display: block;
}

.shop-main-menu-dropdown-panel a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--shop-text);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
}

.shop-main-menu-dropdown-panel a:hover {
    background: var(--shop-cream);
}

/* "Tum Urunler" acilir paneli: Bicime Gore etiketleri cok sutunlu grid olarak gosterilir. */
.shop-main-menu-all-panel {
    display: none;
    columns: 3;
    column-gap: 1.5rem;
    padding: 1rem 1.25rem;
    min-width: 520px;
}

.shop-main-menu-all:hover .shop-main-menu-all-panel {
    display: block;
}

.shop-main-menu-all-panel a {
    break-inside: avoid;
    padding: 0.4rem 0;
}

@media (max-width: 720px) {
    .shop-main-menu-all-panel {
        columns: 1;
        min-width: 220px;
    }
}

/* ---- Popup ---- */
.shop-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 28, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.shop-popup-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.shop-popup-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 1;
}

.shop-popup-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.shop-popup-body {
    padding: 1.75rem;
    text-align: center;
}

.shop-popup-body h3 {
    margin: 0 0 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.shop-popup-body p {
    margin: 0 0 1rem;
    color: var(--shop-muted);
    font-size: 0.95rem;
}

.shop-nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.shop-nav a {
    color: #e7f2f0;
    text-decoration: none;
    font-size: 0.92rem;
}

.shop-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.shop-cart-link {
    position: relative;
}

.shop-cart-badge {
    background: var(--shop-teal);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    border-radius: 999px;
    padding: 0.05rem 0.4rem;
}

/* ---- Category chips ---- */
.shop-categories {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 1rem 1.5rem;
    background: var(--shop-cream);
}

.shop-category-chip {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--shop-border);
    color: var(--shop-text);
    text-decoration: none;
    font-size: 0.88rem;
    white-space: nowrap;
}

.shop-category-chip.active,
.shop-category-chip:hover {
    background: var(--shop-teal);
    color: #fff;
    border-color: var(--shop-teal);
}

/* ---- Kategori carousel (dairesel ikonlar, yatay kaydirma) ---- */
.shop-category-carousel-wrap {
    /* Eskiden --shop-cream (bej) idi - kullanici acikca "bej renk tamamen kalksin" dedi (hem
       florist hem genel sektorde), vitrin geneli beyaz agirlikli olsun diye kaldirildi. */
    background: #fff;
    width: 100%;
    border-bottom: 1px solid var(--shop-border);
}

.shop-category-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    /* "safe center": az sayida kategori container'i doldurmuyorsa ORTALA (eskiden sola yasli
       kaliyordu - kullanicinin fark ettigi hata), ama tasan/kaydirilan durumda "safe" anahtar
       kelimesi baslangici KIRPMADAN normal sola-hizali kaydirma davranisina geri doner. */
    justify-content: safe center;
    /* Nav cubugunun ic icerigiyle (max-width sutunu) ayni hizada baslasin diye ayni
       max-width/margin/padding deseni - aksi halde bu satir tam sola yasli kaliyordu. */
    max-width: var(--shop-max-width, 1200px);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    box-sizing: border-box;
}

/* Kullanicinin kendi referans sitesinde GOZLEMLENEN gercek davranis: SUREKLI akan bir kayma
   DEGIL - her birkac saniyede TAM 1 oge kadar kayip DURUYOR, sonra tekrar kayiyor ("birer birer
   gecen"). ILK DENEME (saf CSS "translateX(-50%) + steps()") HATALIYDI: az sayida oge dogal
   icerik genisligini container'in max-width'inden DAR birakiyor, "-50%" o zaman "bir tam kopya"
   ile ORTUSMUYOR - ekranin sagi bosluk kaliyordu. IKINCI DENEME (native overflow-x:auto +
   scrollBy, icerik 2 kopya halinde) boslugu duzeltti AMA kullanici bunu da ACIKCA reddetti:
   "Ben Scroll bar istemiyorumki... sen bunu arka arkaya getirmissin, ben onu istemiyorum" - hem
   native scrollbar/kaydirma hissi hem de icerigin arka arkaya IKI KOPYA halinde bulunmasi
   istenmiyor. Bunun yerine: overflow HIDDEN (scrollbar/elle kaydirma tamamen yok), icerik TEK
   KOPYA (StoreLayout.razor artik duplike etmiyor), js/categoryCarousel.js her adimda GERCEK ilk
   DOM ogesini (kopyalamadan) seridin sonuna tasiyarak gercek bir DONGU/ROTASYON olusturuyor -
   kullanicinin kendi sitesindeki mekanizmayla ayni mantik. */
.shop-category-carousel.animated {
    overflow: hidden;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.shop-category-circle {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--shop-text);
    scroll-snap-align: start;
    width: 6.2rem;
}

/* Kategori dairesi ikonu - kullanicinin kendi referans sitesindeki (guldencicekevi.com) gercek
   gorunumu: duz, TEMA RENGINDE (rainbow/Instagram gradyani DEGIL - kullanici ekran goruntusuyle
   duzeltti) ince bir halka + beyaz bosluk. Gorsel yuklenmemisse (ImageUrl bos) icerik emoji
   fallback'i (CategoryIcon) olarak kalmaya devam ediyor, halka HER durumda gorunur. Boyut
   kullanicinin "bunların boyunu biraz daha arttıralım" istegiyle 3.6rem'den buyutuldu. */
.shop-category-circle-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    padding: 4px;
    border: 2px solid var(--shop-teal);
    transition: transform 0.15s ease;
}

/* Gercek gorsel yuklenmisse: inline style (Blazor'dan background-image:url(...)) dogrudan bu
   elemente uygulanir - halka artik tek renkli border oldugu icin (rainbow gradyan gibi
   background-image katmanlarina ihtiyac YOK) ayrica bir ic element/nested span GEREKMIYOR,
   .shop-category-circle-icon'un KENDISI gorseli tasiyabiliyor. */
.shop-category-circle-icon.has-image {
    padding: 0;
}

.shop-category-circle:hover .shop-category-circle-icon {
    border-color: var(--shop-teal);
    transform: translateY(-2px);
}

.shop-category-circle-label {
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.2;
}

/* ---- Sag kenarda sabit floating aksiyon butonlari ---- */
.shop-floating-actions {
    position: fixed;
    right: 1.1rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 40;
}

.shop-floating-btn {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    color: #fff;
    background: var(--shop-teal);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.shop-floating-btn.phone {
    background: #2f5fd9;
}

.shop-floating-btn.mail-order {
    background: #2f6fed;
}

.shop-floating-btn.whatsapp {
    background: #25d366;
}

.shop-floating-btn.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.shop-floating-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.05rem 0.4rem;
    border-radius: 999px;
    min-width: 1.1rem;
    text-align: center;
}

/* ---- Main content ---- */
.shop-main {
    flex: 1;
    max-width: var(--shop-max-width, 1200px);
    margin: 0 auto;
    padding: 1.75rem 1.5rem 3rem;
    width: 100%;
}

.shop-page-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    margin: 0;
}

/* ---- Anasayfa hero slider (birden fazla slayt, otomatik donen) ---- */
.shop-hero-slider {
    position: relative;
    min-height: 320px;
    border-radius: 16px;
    margin: 1.75rem 1.5rem 0;
    overflow: hidden;
}

.shop-hero-slide {
    display: block;
    position: absolute;
    inset: 0;
    background-color: var(--shop-teal-dark);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.shop-hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.shop-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 30, 28, 0.78) 0%, rgba(10, 30, 28, 0.35) 65%, rgba(10, 30, 28, 0) 100%);
}

.shop-hero-text {
    position: relative;
    z-index: 1;
    max-width: 420px;
    padding: 2.75rem 2rem;
    color: #fff;
}

.shop-hero-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    margin: 0 0 0.5rem;
}

.shop-hero-text p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #f0ede4;
}

.shop-hero-btn {
    display: inline-block;
    background: #fff;
    color: var(--shop-teal-dark);
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ---- Grid banner (buyuk + kucuk vitrin kartlari) ----
   Kullanicinin referans sitesindeki BIREBIR duzen: SOLDA 1 buyuk (dikey, 2 satir
   yuksekliginde) banner + SAGDA 2x2 kucuk banner izgarasi - eskiden buyuk banner tam
   genislikte USTTE duruyordu, kucukler ALTINDA ayri bir sira olarak akiyordu (yanlis
   yerlesim, kullanici ekran goruntusuyle duzeltti). */
.shop-grid-banner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* SABIT (px) satir yuksekligi - "1fr" (esnek) OLSAYDI satir boyu o an DOLU olan hucre
       sayisina gore degisirdi (orn. sadece 1 kucuk banner varken 2. satir neredeyse
       yukseklik almiyor, buyuk banner de karemsi bir orana sikisiyordu). Sabit deger, kac
       kucuk banner girilmis olursa olsun buyuk banner'in boyutunu/oranini HEP AYNI tutar.
       3 esit sutun + bu satir yuksekligi ~0.8 oraninda (dikdortgen, kareye yakin DEGIL)
       bir buyuk banner veriyor - kullanicinin "kare degil dikdortgen olsun" duzeltmesi. */
    grid-auto-rows: 230px;
    gap: 1rem;
    max-width: var(--shop-max-width, 1200px);
    margin: 1.5rem auto 0;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.shop-grid-banner-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--shop-teal);
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.shop-grid-banner-card.large {
    grid-column: 1;
    grid-row: 1 / 3;
}

@media (max-width: 760px) {
    /* Kucuk ekranda 2 sutunlu (buyuk+kucuk yan yana) duzen sikismis kalir - alt alta akan
       tek sutuna donuyor, buyuk banner yine en ustte. */
    .shop-grid-banner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .shop-grid-banner-card.large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }
}

.shop-grid-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.2rem;
    padding: 1.1rem;
    background: linear-gradient(0deg, rgba(10, 30, 28, 0.75) 0%, rgba(10, 30, 28, 0) 60%);
    color: #fff;
}

.shop-grid-banner-overlay strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
}

.shop-grid-banner-overlay span {
    font-size: 0.82rem;
    color: #f0ede4;
}

.shop-section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    margin: 2rem 0 1.1rem;
}

/* ---- Anasayfa alt icerik (SEO/tanitim metni) ---- */
.shop-home-content {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--shop-border);
}

.shop-home-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    margin: 0 0 0.9rem;
}

.shop-home-content p {
    line-height: 1.8;
    color: var(--shop-muted);
    font-size: 0.9rem;
    margin: 0 0 0.9rem;
}

/* ---- Urun listesi duzeni: sol filtre paneli (SADECE genel/florist-olmayan sektor) + ana icerik.
   Florist'te <aside> hic render edilmedigi icin bu sadece tek cocuklu bir wrapper'a donusuyor,
   mevcut gorunumu ETKILEMIYOR. ---- */
.shop-listing-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.shop-listing-main {
    flex: 1;
    min-width: 0;
}

.shop-filter-sidebar {
    flex-shrink: 0;
    width: 240px;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0 0;
    position: sticky;
    top: 1rem;
}

.shop-filter-group {
    margin-bottom: 1.5rem;
}

.shop-filter-group:last-child {
    margin-bottom: 0;
}

.shop-filter-group h4 {
    margin: 0;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--shop-muted);
}

.shop-filter-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0 0 0.7rem;
    cursor: pointer;
    text-align: left;
}

.shop-filter-chevron {
    color: var(--shop-muted);
    font-size: 0.8rem;
}

.shop-filter-group-body {
    display: flex;
    flex-direction: column;
}

.shop-filter-search {
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--shop-border);
    border-radius: 6px;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.shop-filter-link {
    display: block;
    padding: 0.4rem 0;
    color: var(--shop-text);
    text-decoration: none;
    font-size: 0.9rem;
}

.shop-filter-link:hover {
    color: var(--shop-teal);
}

.shop-filter-link.active {
    color: var(--shop-teal);
    font-weight: 700;
}

.shop-filter-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.88rem;
    font-weight: normal;
    cursor: pointer;
}

.shop-filter-radio input {
    width: auto;
}

@media (max-width: 900px) {
    .shop-listing-layout {
        flex-direction: column;
    }

    .shop-filter-sidebar {
        width: 100%;
        position: static;
    }
}

/* ---- Urun listesi ust satiri: baslik + siralama ---- */
.shop-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1.25rem;
}

.shop-sort-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--shop-muted);
}

.shop-sort-select select {
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    border: 1px solid var(--shop-border);
    background: #fff;
    color: var(--shop-text);
    font-size: 0.85rem;
}

.shop-static-page {
    max-width: 760px;
}

.shop-static-content p {
    line-height: 1.8;
    margin: 0 0 1rem;
    color: var(--shop-text);
}

.shop-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--shop-muted);
}

/* ---- Product grid & card ---- */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shop-product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(15, 74, 68, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-product-card:hover {
    box-shadow: 0 14px 28px rgba(15, 74, 68, 0.16);
    transform: translateY(-4px);
}

.shop-product-image-wrap {
    position: relative;
    overflow: hidden;
}

.shop-product-card:hover .shop-product-image {
    transform: scale(1.05);
}

.shop-product-image {
    width: 100%;
    aspect-ratio: var(--shop-product-aspect, 4 / 5);
    object-fit: cover;
    background: #f3f1ea;
    display: block;
    transition: transform 0.35s ease;
}

.shop-product-image-placeholder {
    width: 100%;
    aspect-ratio: var(--shop-product-aspect, 4 / 5);
    background: linear-gradient(160deg, #f3f1ea, #ece7d8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
}

.shop-product-delivery-badge {
    background: #fdf3d7;
    color: #8a6416;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    padding: 0.4rem 0.5rem;
}

.shop-product-body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.shop-product-name {
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-category {
    font-size: 0.78rem;
    color: var(--shop-muted);
}

.shop-product-brand {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--shop-teal);
}

.shop-price-row {
    margin-top: auto;
    padding-top: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--shop-teal-dark);
}

.shop-price-compare {
    font-size: 0.82rem;
    color: var(--shop-muted);
    text-decoration: line-through;
    order: 2;
}

.shop-discount-badge {
    background: var(--shop-teal);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    order: 1;
}

/* ---- Buttons ---- */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
}

.shop-btn-primary {
    background: var(--shop-teal);
    color: #fff;
}

.shop-btn-primary:hover {
    background: var(--shop-teal-dark);
}

.shop-btn-primary:disabled {
    background: #a9beba;
    cursor: not-allowed;
}

.shop-btn-outline {
    background: #fff;
    color: var(--shop-teal);
    border-color: var(--shop-teal);
}

.shop-btn-outline:hover {
    background: var(--shop-cream);
}

/* ---- Product detail ---- */
.shop-breadcrumb {
    font-size: 0.85rem;
    color: var(--shop-muted);
    margin-bottom: 1rem;
}

.shop-breadcrumb a {
    color: var(--shop-muted);
}

.shop-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 2.5rem;
}

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

.shop-detail-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: #f3f1ea;
}

.shop-detail-image-placeholder {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    background: #f3f1ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.shop-detail-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    margin: 0 0 0.5rem;
}

.shop-detail-desc {
    color: var(--shop-text);
    line-height: 1.6;
    white-space: pre-line;
    margin: 1.25rem 0;
}

.shop-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    overflow: hidden;
}

.shop-qty-control button {
    background: var(--shop-cream);
    border: none;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.shop-qty-control span {
    width: 2.4rem;
    text-align: center;
    font-weight: 600;
}

.shop-stock-note {
    font-size: 0.85rem;
    color: var(--shop-muted);
}

.shop-stock-note.out {
    color: #b91c1c;
}

.shop-trust-badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--shop-border);
    font-size: 0.82rem;
    color: var(--shop-muted);
}

/* ---- Teslimat secici (bolge/tarih/saat chip'leri) - kullanicinin geri bildirimi uzerine
   (arka planda "farkli renk kutu" gorunumu sayfanin geri kalaniyla tutarsizdi) kendi arka
   plani/kutusu kaldirildi, sayfanin geneliyle ayni (duz) zemin uzerinde akiyor. ---- */
.shop-delivery-picker {
    margin-top: 1.25rem;
}

.shop-picker-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--shop-teal-dark);
    margin: 0.7rem 0 0.4rem;
}

.shop-picker-label:first-child {
    margin-top: 0;
}

.shop-chip-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-chip {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--shop-border);
    background: #fff;
    color: var(--shop-text);
    font-size: 0.83rem;
    cursor: pointer;
}

.shop-chip:hover {
    border-color: var(--shop-teal);
}

.shop-chip.selected {
    background: var(--shop-teal);
    border-color: var(--shop-teal);
    color: #fff;
}

.shop-date-input {
    margin-top: 0.6rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    font-size: 0.85rem;
    background: #fff;
    color: var(--shop-text);
}

/* ---- Urun sayfasinda 5sn sonra beliren "WhatsApp'tan Sipariş Ver" cubugu (referans siteden). ---- */
@keyframes shop-whatsapp-inquiry-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.shop-whatsapp-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 420px;
    margin: 0 0 1rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid #25d366;
    border-radius: 999px;
    background: #fff;
    color: #128c3e;
    text-decoration: none;
    font-size: 0.88rem;
    animation: shop-whatsapp-inquiry-in 0.4s ease;
}

.shop-whatsapp-inquiry:hover {
    background: #f0fdf5;
}

.shop-whatsapp-inquiry-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
}

.shop-whatsapp-inquiry-divider {
    width: 1px;
    height: 1.1rem;
    background: var(--shop-border);
    flex-shrink: 0;
}

.shop-whatsapp-inquiry-icon {
    font-size: 1rem;
}

/* ---- Bolge secici: "yazarak ara" (typeahead) + acilir oneri listesi + secilince kucuk chip -
   referans sitedeki (guldencicekevi.com) "Buradan başlayın" rozetli bolge arama kutusunun
   karsiligi. ---- */
.shop-zone-picker {
    position: relative;
    max-width: 420px;
    /* Uzerindeki "Buradan başlayın" rozeti (.shop-zone-start-badge, top:-2.35rem) icin yer
       ayirir - yoksa hemen ustundeki "📍 Teslimat Bölgesi" etiketiyle cakisip onu okunmaz
       hale getiriyordu (kullanicinin bildirdigi sorun). */
    margin-top: 1.9rem;
}

.shop-zone-start-badge {
    position: absolute;
    top: -2.35rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--shop-teal);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    animation: shop-zone-badge-bounce 1.6s ease-in-out infinite;
    pointer-events: none;
}

.shop-zone-start-badge::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    background: var(--shop-teal);
    transform: rotate(45deg);
}

@keyframes shop-zone-badge-bounce {
    /* .shop-zone-start-badge zaten static transform:translateX(-50%) ile ortalaniyor - animasyon
       bunu EZMEMESI icin her adimda ayni translateX'i tekrarlayip sadece Y'yi degistiriyor
       (aksi halde bounce sirasinda rozet aninda sola kayardi). */
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

.shop-zone-search {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff;
    color: var(--shop-text);
    box-sizing: border-box;
}

.shop-zone-search:focus {
    border-color: var(--shop-teal);
    outline: none;
}

.shop-zone-suggestions {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    max-height: 260px;
    overflow-y: auto;
}

.shop-zone-suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: none;
    background: none;
    text-align: left;
    font-size: 0.87rem;
    color: var(--shop-text);
    cursor: pointer;
}

.shop-zone-suggestion:hover {
    background: var(--shop-cream, #f2f2f2);
}

.shop-zone-suggestion-fee {
    flex-shrink: 0;
    font-size: 0.78rem;
    color: var(--shop-muted);
}

.shop-zone-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: var(--shop-teal-dark);
    color: #fff;
    padding: 0.55rem 0.6rem 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 600;
    max-width: 100%;
}

.shop-zone-chip-clear {
    flex-shrink: 0;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.76rem;
    cursor: pointer;
}

.shop-zone-chip-clear:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* ---- Son teslimat saati bildirimi (bugun icin geri sayim) ---- */
.shop-cutoff-box {
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    background: #fff8e6;
    border: 1px solid #f3dd9a;
    border-radius: 10px;
}

.shop-cutoff-header {
    font-size: 0.9rem;
    color: #7a5b0a;
}

.shop-cutoff-track {
    margin-top: 0.6rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #e6503f;
    overflow: hidden;
}

.shop-cutoff-fill {
    height: 100%;
    background: #4caf50;
    border-radius: 999px;
    transition: width 0.3s ease;
}

.shop-cutoff-note {
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    color: #7a5b0a;
}

/* ---- "Genel" sektor (cicekci disi siteler) hizli yerel teslimat bilgi kutusu - referans
   dostpetshop.com: bolge/tarih/saat SECTIRMIYOR, sadece "hizli teslimat var" bilgisi. ---- */
.shop-quick-local-box {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-top: 0.4rem;
    padding: 0.9rem 1rem;
    background: var(--shop-cream, #f7f8fa);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.shop-quick-local-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.shop-quick-local-box strong {
    display: block;
    font-size: 0.92rem;
    color: var(--shop-teal, #0f4a44);
}

.shop-quick-local-box p {
    margin: 0.3rem 0 0;
    font-size: 0.82rem;
    color: #555;
}

.shop-added-to-cart-note {
    margin-top: 0.6rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1b7a3d;
}

/* ---- Cart page ---- */
/* ---- Sepetim: iki sutunlu duzen (sol: urun tablosu karti, sag: sabit "Siparis Ozeti" karti) -
   referans (dostpetshop.com tarzi) sepet sayfasinin karsiligi. Renkler hep var(--shop-*)
   degiskenlerinden geldigi icin her magazanin kendi Site Ayarlari > Tema secimine gore otomatik
   uyum sagliyor, buraya sabit renk yazilmadi. ---- */
.shop-cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 800px) {
    .shop-cart-layout {
        grid-template-columns: 1fr;
    }
}

.shop-cart-card {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
}

.shop-cart-table-head {
    display: grid;
    grid-template-columns: 72px 1fr 100px 120px 110px;
    gap: 1rem;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--shop-border);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--shop-muted);
    font-weight: 700;
}

.shop-cart-table-head-total {
    text-align: right;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 72px 1fr 100px 120px 110px;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--shop-border);
}

.shop-cart-item img,
.shop-cart-item .shop-cart-item-noimg {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f1ea;
    flex-shrink: 0;
}

.shop-cart-item-info {
    min-width: 0;
}

.shop-cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.shop-cart-item-price,
.shop-cart-item-total {
    text-align: right;
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

@media (max-width: 560px) {
    .shop-cart-table-head {
        display: none;
    }

    .shop-cart-item {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "img info"
            "img price"
            "qty qty"
            "total total";
        row-gap: 0.4rem;
    }

    .shop-cart-item img,
    .shop-cart-item .shop-cart-item-noimg { grid-area: img; width: 56px; height: 56px; }
    .shop-cart-item-info { grid-area: info; }
    .shop-cart-item-price { grid-area: price; text-align: left; }
    .shop-qty-control { grid-area: qty; }
    .shop-cart-item-total { grid-area: total; text-align: left; }
}

.shop-order-summary-card {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.shop-order-summary-card h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.shop-order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    color: var(--shop-muted);
    font-size: 0.9rem;
}

.shop-order-summary-coupon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--shop-cream, #f3f4f6);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    margin: 0.6rem 0;
    font-size: 0.85rem;
}

.shop-cart-summary {
    margin-top: 0.75rem;
    padding-top: 0.85rem;
    border-top: 2px solid var(--shop-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 700;
}

.shop-cart-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.85rem;
    font-size: 1rem;
}

.shop-trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.1rem;
    padding: 0.8rem 0.9rem;
    background: var(--shop-cream, #f7f8fa);
    border-radius: 10px;
    font-size: 0.78rem;
    color: var(--shop-muted);
}

.shop-trust-badge strong {
    display: block;
    color: var(--shop-text);
    font-size: 0.85rem;
}

.shop-link-remove {
    color: #b91c1c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
    padding: 0;
}

/* ---- Footer ---- */
.shop-footer {
    background: var(--shop-teal-dark);
    color: #cfe3e0;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ---- Zengin footer ---- */
/* Kullanicinin acikca istedigi gibi: footer artik HANGI TEMA (teal/yesil/mor/kahverengi/siyah)
   secili olursa olsun HEP ayni acik/notr gri stilde - eskiden aktif temanin koyu rengini
   kullaniyordu (--shop-footer-bg / --shop-teal-dark), bu baglanti kasten kaldirildi. */
.shop-footer-rich {
    background: #f6f6f4;
    color: #6b7280;
    margin-top: 2.5rem;
    border-top: 1px solid var(--shop-border);
}

.shop-welcome-bar {
    background: var(--shop-ticker-bg, var(--shop-teal-dark));
    color: var(--shop-ticker-text, #fff);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.3rem 1rem;
    text-transform: uppercase;
}

.shop-footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.shop-footer-brand .shop-footer-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 0.6rem;
}

/* Zemin artik acik oldugu icin logonun arkasina ayrica beyaz kart koymaya gerek yok -
   dogrudan footer zemininde goruntuleniyor. */
.shop-footer-logo-image {
    max-width: 200px;
    max-height: 64px;
    width: auto;
    height: auto;
    display: block;
}

.shop-footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 1rem;
    max-width: 320px;
}

.shop-footer-social {
    display: flex;
    gap: 0.6rem;
}

.shop-footer-social a {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: #e9eae7;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.shop-footer-social a:hover {
    background: var(--shop-teal);
    color: #fff;
}

.shop-footer-col h4 {
    color: #1f2933;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--shop-teal);
    display: inline-block;
}

.shop-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.shop-footer-col a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
}

.shop-footer-col a:hover {
    color: var(--shop-teal);
    text-decoration: underline;
}

.shop-footer-contact li {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Kredi karti/odeme markasi logolari - "hangi tema olursa olsun" notr durmasi icin
   sabit gri tonlanmis (SVG'ler tek renkli, dogal siyah doluyor - opacity ile yumusatiliyor). */
.shop-footer-payment-icons {
    border-top: 1px solid var(--shop-border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.shop-footer-payment-icons img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: opacity 0.15s ease;
}

.shop-footer-payment-icons img:hover {
    opacity: 1;
}

.shop-footer-badges {
    border-top: 1px solid var(--shop-border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #9ca3af;
}

.shop-footer-bottom {
    border-top: 1px solid var(--shop-border);
    text-align: center;
    padding: 1rem;
    font-size: 0.78rem;
    color: #9ca3af;
}

@media (max-width: 760px) {
    .shop-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Checkout sihirbazi ---- */
.shop-checkout-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.shop-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
}

.shop-step.active,
.shop-step.done {
    opacity: 1;
}

.shop-step-circle {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #e5e7eb;
    color: var(--shop-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.shop-step.active .shop-step-circle {
    background: var(--shop-teal);
    color: #fff;
}

.shop-step.done .shop-step-circle {
    background: var(--shop-teal-dark);
    color: #fff;
}

.shop-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--shop-text);
}

.shop-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 800px) {
    .shop-checkout-grid {
        grid-template-columns: 1fr;
    }
}

.shop-saved-address-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.shop-saved-address-chip {
    border: 1px solid var(--shop-border);
    background: #fff;
    color: var(--shop-text);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.shop-saved-address-chip:hover {
    border-color: var(--shop-teal);
}

.shop-saved-address-chip.selected {
    background: var(--shop-teal);
    border-color: var(--shop-teal);
    color: #fff;
}

.shop-delivery-summary {
    background: var(--shop-cream);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.shop-summary-card {
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 12px;
    padding: 1.1rem;
    position: sticky;
    top: 1rem;
}

.shop-summary-card h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.shop-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    color: var(--shop-muted);
}

.shop-summary-line.total {
    border-top: 2px solid var(--shop-text);
    margin-top: 0.5rem;
    padding-top: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--shop-text);
}

/* ---- Ek urunler ---- */
.shop-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.9rem;
}

.shop-addon-card {
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    padding: 0.7rem;
    text-align: center;
}

.shop-addon-card img,
.shop-addon-noimg {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--shop-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.shop-addon-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.shop-addon-price {
    font-size: 0.82rem;
    color: var(--shop-muted);
    margin-bottom: 0.5rem;
}

/* ---- Odeme yontemi ---- */
.shop-payment-option {
    border: 2px solid var(--shop-border);
    background: #fff;
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}

.shop-payment-option.selected {
    border-color: var(--shop-teal);
    background: var(--shop-cream);
}

.shop-bank-info {
    background: var(--shop-cream);
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---- Son siparis bildirim cubugu (site genelinde ust kisimda) ---- */
.shop-order-tracker-bar {
    background: #fff;
    border-bottom: 1px solid var(--shop-border);
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-order-tracker-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--shop-text);
    text-decoration: none;
    font-size: 0.85rem;
}

.shop-order-tracker-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--shop-teal);
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.shop-order-tracker-sub {
    display: block;
    color: var(--shop-muted);
    font-size: 0.78rem;
    font-weight: 400;
}

.shop-order-tracker-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.shop-order-tracker-go {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: var(--shop-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.shop-order-tracker-close {
    border: none;
    background: transparent;
    color: var(--shop-muted);
    cursor: pointer;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
}

.shop-order-tracker-close:hover {
    color: var(--shop-text);
}

/* ---- Siparis durum zaman cizelgesi (musteri tarafi) ---- */
.shop-status-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.25rem;
    margin: 1.25rem 0;
    position: relative;
}

.shop-status-timeline::before {
    content: "";
    position: absolute;
    top: 1.1rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--shop-border);
    z-index: 0;
}

.shop-status-step {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.shop-status-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: #f1f1ee;
    border: 2px solid var(--shop-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    filter: grayscale(1);
    opacity: 0.55;
}

.shop-status-step.done .shop-status-icon {
    background: var(--shop-cream);
    border-color: var(--shop-teal);
    filter: none;
    opacity: 1;
}

.shop-status-step.current .shop-status-icon {
    background: var(--shop-teal);
    border-color: var(--shop-teal);
    box-shadow: 0 0 0 4px rgba(15, 74, 68, 0.15);
}

.shop-status-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--shop-muted);
}

.shop-status-step.done .shop-status-label {
    color: var(--shop-text);
}

.shop-status-time {
    font-size: 0.68rem;
    color: var(--shop-muted);
    min-height: 1em;
}

/* --- Ozellikler seridi (anasayfa, "Ozel Tema Ayarlari" 2. dilim) ---
   Referans sitelerdeki duz renkli kare rozet yerine, kendi gorsel dilimize uygun
   (hikaye avatarlarindaki gibi) degrade halkali dairesel ikon rozetleri kullaniyoruz. */
.shop-features-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.shop-feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1.4rem 0.9rem 1.15rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.shop-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
}

.shop-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: #fff;
}

.shop-feature-icon-1 { background: linear-gradient(135deg, #52c99a, var(--shop-teal, #1f8a70)); }
.shop-feature-icon-2 { background: linear-gradient(135deg, #ffb347, #ff8a3d); }
.shop-feature-icon-3 { background: linear-gradient(135deg, #5aa9ff, #3d7bff); }
.shop-feature-icon-4 { background: linear-gradient(135deg, #ff8fb3, #ee2a7b); }
.shop-feature-icon-5 { background: linear-gradient(135deg, #b48cff, #7c5cff); }

.shop-feature-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--shop-text);
}

.shop-feature-subtitle {
    font-size: 0.76rem;
    color: var(--shop-muted);
    line-height: 1.3;
}

@media (max-width: 900px) {
    .shop-features-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .shop-features-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobil alt navigasyon cubugu (Alt Menu, "Ozel Tema Ayarlari" 3. dilim) --- */
.shop-mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .shop-mobile-bottom-nav {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        background: var(--shop-surface, #fff);
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
        padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom, 0px));
    }

    /* Alt navigasyon cubugu varken yuzen aksiyon butonlari ustune biner - yukari kaydir. */
    .shop-floating-actions {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }
}

.shop-bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.68rem;
    color: var(--shop-muted);
    text-decoration: none;
    padding: 0.2rem 0;
    position: relative;
}

.shop-bottom-nav-item.active {
    color: var(--shop-teal-dark, var(--shop-teal));
    font-weight: 600;
}

.shop-bottom-nav-icon {
    font-size: 1.25rem;
    line-height: 1;
    position: relative;
}

.shop-bottom-nav-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #d64545;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 999px;
    min-width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.shop-load-more {
    display: flex;
    justify-content: center;
    margin: 2rem 0 1rem;
}

/* --- Siparis Takibi sayfasi --- */
.shop-track-order {
    max-width: 480px;
    margin: 2rem auto;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 12px;
    padding: 2rem;
}

.shop-track-order .form-field {
    margin: 1rem 0;
}

.shop-cutoff-box.expired {
    background: #fdecea;
    border-color: #f3b4ac;
}

.shop-cutoff-box.expired .shop-cutoff-header {
    color: #a13c30;
}

/* Eski AYRI "Hikaye Ayarlari" satiri (Instagram-gradyan-halkali, .shop-story-row/.shop-story-item/
   .shop-story-avatar) buradan KALDIRILDI (02.09.2026) - kullanicinin istegiyle, ust dairesel
   kategori seridiyle (.shop-category-carousel) BIRLESTIRILDI: o serit artik Categories yerine
   AYNI StoryItem verisinden besleniyor (bkz. StoreLayout.razor), iki AYRI/tekrar eden bolum
   olmasina gerek kalmadi. */

/* --- Resimli Mobil Menu: gorsel kisayol karo grid'i --- */
.shop-mobile-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 1rem 0 1.5rem;
}

.shop-mobile-menu-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.shop-mobile-menu-tile-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: var(--shop-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.shop-mobile-menu-tile-label {
    font-size: 0.75rem;
    color: var(--shop-text);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 720px) {
    .shop-mobile-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Banner Ayarlari: tam genislikte tekli promosyon banner'lari --- */
.shop-banner-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.shop-banner-strip {
    display: block;
    min-height: 140px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: var(--shop-teal);
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.shop-banner-strip-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.05) 70%);
}

.shop-banner-strip-overlay strong {
    font-size: 1.2rem;
    font-family: Georgia, "Times New Roman", serif;
}

.shop-banner-strip-overlay span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.shop-main-menu-section-title {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--shop-muted);
    padding: 0.6rem 0 0.15rem;
    break-inside: avoid;
}

/* ---- Bakim Modu ---- */

.shop-maintenance {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    padding: 2rem 1rem;
}

.shop-maintenance-card {
    max-width: 440px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.shop-maintenance-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.shop-maintenance-card h1 {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
    color: var(--shop-teal);
}

.shop-maintenance-card p {
    color: var(--shop-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem;
    white-space: pre-line;
}

/* ---- Hizli Odeme (Mail Order) ---- */

.shop-fastpay-wrap {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
    min-height: 50vh;
}

.shop-fastpay-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.shop-fastpay-card h1 {
    font-size: 1.3rem;
    margin: 0 0 0.4rem;
    color: var(--shop-teal);
}

.shop-fastpay-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.shop-fastpay-secure {
    text-align: center;
    color: var(--shop-muted);
    font-size: 0.78rem;
    margin: 0.9rem 0 0;
}

/* ---- Google Website Translator (js/googleTranslate.js) - kullanicinin canli sitesindeki gibi
   TUM sayfayi (nav/buton/footer) ceviren widget. Google varsayilan olarak ustte "Turkish -> English
   ceviridi" banner'i + bir "Powered by Google" balonu ekliyor - ikisi de standart yontemle gizleniyor,
   sadece dropdown'daki dil secimi ve gercek metin cevirisi kalsin diye. ---- */
/* Google'in ust "Turkish -> English translated" banner iframe'i surumden surume farkli, obfuske
   class adlari kullanabiliyor (orn. eskiden .goog-te-banner-frame, simdi .VIpgJd-ZVi9od-ORHb-...)
   - o yuzden en genel/kalici sinif olan .skiptranslate'i hedefliyoruz, tum surumlerde ayni. */
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

#google_translate_element {
    display: none !important;
}

/* ---- Chatbot widget (js/chatbot.js tarafindan #cicekci-chatbot-root icine cizilir) ---- */

.cicekci-chat-fab {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    color: #fff;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
}

.cicekci-chat-fab-icon {
    font-size: 1.3rem;
    line-height: 1;
}

/* ---- Chat teaser balonu: FAB'in ustunde donen ornek mesajlar ("üstünden mesajlar akıtacak"
   istegi) - varsayilan gizli/saydam, JS "visible" class'iyla acip kapatiyor. ---- */
.cicekci-chat-teaser {
    position: fixed;
    bottom: 5.2rem;
    left: 1.25rem;
    z-index: 59;
    max-width: 240px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--shop-text);
    border-radius: 14px;
    border: 1px solid var(--shop-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    padding: 0.65rem 0.6rem 0.65rem 0.9rem;
    font-size: 0.83rem;
    line-height: 1.35;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cicekci-chat-teaser.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cicekci-chat-teaser::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 1.6rem;
    width: 12px;
    height: 12px;
    background: #fff;
    border-right: 1px solid var(--shop-border);
    border-bottom: 1px solid var(--shop-border);
    transform: rotate(45deg);
}

.cicekci-chat-teaser-text {
    flex: 1;
}

.cicekci-chat-teaser-close {
    flex-shrink: 0;
    border: none;
    background: none;
    color: var(--shop-muted);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 0.15rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .cicekci-chat-teaser {
        max-width: calc(100vw - 2.5rem);
    }
}

.cicekci-chat-panel {
    position: fixed;
    bottom: 5.5rem;
    left: 1.25rem;
    z-index: 61;
    width: min(360px, calc(100vw - 2rem));
    height: min(520px, calc(100vh - 8rem));
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    /* Varsayilan KAPALI: JS panel.hidden = true/false ile ac/kapat yapiyor. Asagidaki
       ":not([hidden])" kurali olmasa, bu display:flex satiri tarayicinin [hidden]{display:none}
       varsayilanini EZERDI (ayni ozgunlukte bir author-origin kural, UA-origin'i her zaman
       yener) - panel hep acik gorunur, "kapatma" hicbir sey yapmiyormus gibi calisirdi. */
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.cicekci-chat-panel:not([hidden]) {
    display: flex;
}

.cicekci-chat-header {
    color: #fff;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}

.cicekci-chat-status {
    font-size: 0.75rem;
    opacity: 0.85;
    margin-top: 0.15rem;
}

.cicekci-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.cicekci-chat-reset,
.cicekci-chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    border-radius: 999px;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cicekci-chat-reset:hover,
.cicekci-chat-close:hover {
    background: rgba(255, 255, 255, 0.32);
}

.cicekci-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #f7f7f8;
}

.cicekci-chat-bubble {
    max-width: 85%;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.cicekci-chat-bubble p {
    margin: 0 0 0.4rem;
}

.cicekci-chat-bubble p:last-child {
    margin-bottom: 0;
}

.cicekci-chat-bubble.assistant {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--shop-border);
    color: var(--shop-text);
}

.cicekci-chat-bubble.assistant.loading {
    color: var(--shop-muted);
    font-style: italic;
}

.cicekci-chat-bubble.user {
    align-self: flex-end;
    background: var(--shop-teal);
    color: #fff;
}

.cicekci-chat-product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: var(--shop-cream);
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    margin-top: 0.35rem;
    text-decoration: none;
    color: var(--shop-text);
    font-size: 0.85rem;
    font-weight: 600;
}

.cicekci-chat-product-price {
    color: var(--shop-teal);
    white-space: nowrap;
}

.cicekci-chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-self: flex-start;
    max-width: 100%;
}

.cicekci-chat-chip {
    border: 1px solid var(--shop-teal);
    background: #fff;
    color: var(--shop-teal);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.cicekci-chat-chip:hover:not(:disabled) {
    background: var(--shop-teal);
    color: #fff;
}

.cicekci-chat-chip:disabled {
    opacity: 0.5;
    cursor: default;
}

.cicekci-chat-chip.selected {
    background: var(--shop-teal);
    color: #fff;
    opacity: 1;
}

.cicekci-chat-carousel {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    align-self: stretch;
    max-width: 100%;
}

.cicekci-chat-carousel-card {
    flex: 0 0 auto;
    width: 122px;
    background: #fff;
    border: 1px solid var(--shop-border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--shop-text);
    display: flex;
    flex-direction: column;
}

.cicekci-chat-carousel-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
    background: var(--shop-cream);
}

.cicekci-chat-carousel-name {
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.4rem 0.5rem 0.15rem;
    line-height: 1.25;
    display: block;
}

.cicekci-chat-carousel-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--shop-teal);
    padding: 0 0.5rem 0.5rem;
    display: block;
}

.cicekci-chat-carousel-compare {
    font-size: 0.68rem;
    color: var(--shop-muted);
    text-decoration: line-through;
    padding: 0 0.5rem;
    display: block;
}

.cicekci-chat-order-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--shop-teal);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.4rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.cicekci-chat-order-number {
    opacity: 0.85;
    font-weight: 600;
}

.cicekci-chat-input-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    border-top: 1px solid var(--shop-border);
    background: #fff;
}

.cicekci-chat-input-row input {
    flex: 1;
    border: 1px solid var(--shop-border);
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    outline: none;
}

.cicekci-chat-input-row button {
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 480px) {
    .cicekci-chat-fab-label {
        display: none;
    }
}

/* Cerez izin banner'i - bkz. CookieConsentBanner.razor / js/cookieConsent.js */
.shop-cookie-banner {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #fff;
    border-top: 1px solid var(--shop-border);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Gorunurluk BILEREK body'deki bir sinif uzerinden acilir (bkz. cookieConsent.js) - bu div'in
   kendi ozelligi/class'i degil, cunku Blazor Server'in devre baglanma anında o ozelligi
   sifirladigi denenip dogrulandi; body Blazor'un render agacinin disinda oldugu icin guvenli. */
body.cicekci-show-cookie-banner .shop-cookie-banner {
    display: flex;
}

.shop-cookie-banner-text {
    flex: 1 1 320px;
    font-size: 0.85rem;
    color: var(--shop-text);
    line-height: 1.5;
}

.shop-cookie-banner-text a {
    color: var(--shop-teal);
    text-decoration: underline;
}

.shop-cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .shop-cookie-banner {
        padding: 0.9rem 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .shop-cookie-banner-actions {
        justify-content: stretch;
    }

    .shop-cookie-banner-actions .shop-btn {
        flex: 1;
    }
}
