:root {
    --background: #FAF8F4;
    --surface: #EEE8DF;
    --foreground: #22211F;
    --muted: #77716A;
    --accent: #9A7B56;
    --accent-dark: #83693F;
    --border: #DDD7CF;
    --dark: #292724;
    --white: #ffffff;
    --danger: #b3452f;
    --radius: 4px;
    --radius-sm: 3px;
    --shadow-sm: 0 1px 3px rgba(34,33,31,0.05);
    --shadow-md: 0 10px 24px rgba(34,33,31,0.09);
}

* { box-sizing: border-box; }

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.55;
}

/* Ekran okuyucu/bot-tuzağı gibi görsel olarak gizlenmesi gereken ama
   sayfa genişliğini asla etkilememesi gereken öğeler için */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: var(--foreground);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* Header */
.site-header {
    background: rgba(250,248,244,0.92);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 rgba(43,38,32,0.02);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 10px;
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--foreground);
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 10px;
}
.logo span { color: var(--accent); }
.logo-img { max-height: 120px; max-width: 250px; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 480px) {
    .logo { font-size: 21px; }
    .logo-img { max-height: 75px; max-width: 160px; }
}
.nav-links {
    display: flex;
    gap: 28px;
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nav-links a:hover { color: var(--accent-dark); }
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* Üst menüdeki ikon/pil butonlar: Sipariş Takibi, Davetiye Sözleri, İstek Listem, WhatsApp */
.header-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    border-radius: 999px;
}
.header-pill-btn.btn-primary {
    background: var(--dark);
    box-shadow: 0 6px 16px rgba(41,39,36,0.22);
}
.header-pill-btn.btn-primary:hover { background: var(--accent); }
.header-pill-outline { border-color: var(--border); color: var(--foreground); }
.header-pill-outline:hover { background: var(--surface); color: var(--foreground); }
.header-quote-icon {
    color: var(--muted);
    flex-shrink: 0;
}
.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 18px;
    color: var(--foreground);
    position: relative;
    transition: background .15s ease, transform .15s ease;
}
.header-icon-btn:hover { transform: translateY(-1px); background: var(--surface); }
/* İstek listem butonu, ürün kartlarındaki kalp ikonuyla aynı, daha yumuşak görünümde */
.header-wishlist-btn {
    margin-right: 10px;
    color: var(--muted);
    box-shadow: var(--shadow-sm);
    border-color: var(--border);
}
.header-wishlist-btn:hover { transform: scale(1.08); background: var(--surface); }
.header-wishlist-btn.active { color: #b3452f; border-color: #f0c9c1; }
/* Not: Davetiye Sözleri pili zaten 860px altında (mobil) tamamen gizleniyor
   (bkz. .header-quotes-desktop), bu yüzden mobilde üst menüde tek pil
   (Sipariş Takibi) kalıyor ve onu ikona indirgemeye gerek yok — yazısı
   her zaman görünür kalsın diye küçük ekranlarda sadece boşlukları
   daraltıyoruz. */
@media (max-width: 400px) {
    .header-pill-btn { padding: 9px 12px; font-size: 12.5px; }
}
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .18s ease;
    border-radius: 999px;
}
.btn-primary {
    background: var(--dark);
    color: var(--background);
    box-shadow: 0 10px 22px rgba(41,39,36,0.22);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(154,123,86,0.32); }
.btn-outline {
    background: transparent;
    border-color: var(--foreground);
    color: var(--foreground);
}
.btn-outline:hover { background: var(--foreground); color: var(--background); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 11.5px; }

/* Hero */
.hero {
    background: var(--background);
    padding: 92px 0 84px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 60px; font-weight: 500; margin: 0 0 22px; letter-spacing: 0.005em; line-height: 1.22; }
.hero p { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 34px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--muted);
}
.hero-badges div { display: flex; align-items: center; gap: 8px; }

/* Section */
/* Not: kısayol (shorthand) "padding: 64px 0" KULLANMIYORUZ — bu, aynı
   elemanda birlikte kullanılan .container sınıfının sol/sağ padding'ini
   (kaynak sırası aynı özgüllükte kazandığı için) sıfırlayıp mobilde
   içeriğin kenarlara yapışmasına neden oluyordu. */
.section { padding-top: 84px; padding-bottom: 84px; }
.section-title {
    text-align: center;
    margin-bottom: 14px;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin: 16px auto 0;
}
.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
}

/* Category grid */
.grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card-image {
    aspect-ratio: 4/5;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.badge-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}
.badge {
    font-family: 'Manrope', sans-serif;
    background: var(--accent);
    color: var(--background);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(34,33,31,0.14);
}
/* Rozet türüne göre renkler */
.badge-new { background: #3f7a4f; color: #fff; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-discount { background: #b8792a; color: #fff; }
.badge-bestseller { background: var(--accent); color: var(--background); }
.badge-limited { background: var(--dark); color: var(--background); }
.badge-default { background: var(--accent); color: var(--background); }
.card-body { padding: 16px 18px 20px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin: 0 0 6px; font-size: 20px; }
.card-body .price {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 16px;
}
.card-body .old-price {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 14px;
    margin-right: 8px;
}
.card-body .meta { color: var(--muted); font-size: 13px; margin-top: 4px; }
.card-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    /* Rozet olsun ya da olmasın, buton kartın altına hizalı kalsın (bkz. .card/.card-body flex kolonu) */
    margin-top: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    /* Kart butonu: oval ve daha kibar (yumuşak kenarlık, sert siyah çerçeve yerine) */
    border-radius: 999px;
    border-color: var(--border);
    color: var(--accent-dark);
    letter-spacing: 0.06em;
}
.card-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--background);
}

/* Nasıl Çalışır adımları */
.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 46px;
    position: relative;
}
@media (min-width: 700px) {
    .how-steps::before {
        content: '';
        position: absolute;
        top: 32px;
        left: calc(16.6% + 10px);
        right: calc(16.6% + 10px);
        height: 1px;
        background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 16px);
    }
}
.how-step {
    position: relative;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
.how-step.is-visible { opacity: 1; transform: translateY(0); }
.how-step-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    color: var(--accent);
    position: relative;
    z-index: 1;
    transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
}
.how-step:hover .how-step-icon {
    transform: translateY(-5px);
    background: var(--accent);
    color: var(--background);
    box-shadow: 0 10px 22px rgba(154,123,86,0.28);
}
.how-step h3 { font-size: 19px; margin: 0 0 8px; }
.how-step p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }
@media (prefers-reduced-motion: reduce) {
    .how-step { opacity: 1; transform: none; transition: none; }
    .how-step:hover .how-step-icon { transform: none; }
}

/* Product detail */
.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}
@media (max-width: 860px) {
    .product-detail { grid-template-columns: 1fr; }
    .hero h1 { font-size: 38px; }
    .nav-links { display: none; }
    /* Davetiye Sözleri mobilde alt menüye taşındı, üst menüde tekrar göstermeye gerek yok */
    .header-quotes-desktop { display: none; }
}
.product-gallery-main {
    aspect-ratio: 4/5;
    background: var(--surface);
    border-radius: 26px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-family: 'Cormorant Garamond', serif;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: flex; gap: 10px; margin-top: 10px; }
.thumb-row img { width: 70px; height: 70px; object-fit: cover; border-radius: 14px; border: 1px solid var(--border); }
.price-row { font-size: 28px; color: var(--accent-dark); font-weight: 600; margin: 14px 0; }
.info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin: 20px 0;
}
.info-box ul { margin: 0; padding-left: 20px; color: var(--muted); }
.info-box li { margin-bottom: 6px; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 14px; color: var(--muted); }
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--surface);
    color: var(--foreground);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(138,154,118,0.18); }
textarea.form-control { resize: vertical; min-height: 90px; }

.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #e7f3e6; color: #386641; border: 1px solid #c5e0c2; }
.alert-error { background: #fbe9e6; color: var(--danger); border: 1px solid #f0c9c1; }

/* Footer */
.site-footer {
    background: var(--foreground);
    color: #d8d2c6;
    padding: 48px 0 24px;
    margin-top: 60px;
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-grid h4 { color: var(--background); font-size: 17px; margin: 0 0 12px; }
.footer-logo-img { max-height: 100px; max-width: 180px; width: auto; height: auto; object-fit: contain; display: block; margin-bottom: 12px; }
.footer-grid a { color: #b9b2a3; display: block; margin-bottom: 8px; }
.footer-contact-link {
    display: flex !important;
    align-items: center;
    gap: 9px;
    color: #b9b2a3;
    margin-bottom: 10px;
}
.footer-contact-link svg { flex-shrink: 0; opacity: 0.85; }
a.footer-contact-link:hover { color: var(--background); }
a.footer-contact-link:hover svg { opacity: 1; }
span.footer-contact-link { align-items: flex-start; }
span.footer-contact-link svg { margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid #443f36;
    padding-top: 20px;
    text-align: center;
    color: #918a7c;
    font-size: 13px;
}

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent-dark); }

/* Admin */
.admin-body { background: #f4f2ee; font-family: 'Manrope', sans-serif; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 230px;
    background: var(--foreground);
    color: #d8d2c6;
    padding: 24px 0;
    flex-shrink: 0;
}
.admin-sidebar .brand { padding: 0 24px 24px; font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--background); border-bottom: 1px solid #443f36; margin-bottom: 16px; }
.admin-sidebar a {
    display: block;
    padding: 12px 24px;
    color: #d8d2c6;
    font-size: 14px;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.06); color: var(--background); }
.admin-main { flex: 1; padding: 32px; max-width: 1100px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.admin-table th, table.admin-table td { padding: 12px 10px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: middle; }
table.admin-table th { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
table.admin-table img.thumb { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; background: var(--surface); color: var(--muted); }
.pill-yeni { background: #dfeaf7; color: #2b5f8a; }
.pill-onay_bekliyor { background: #fbeecb; color: #8a6a2b; }
.pill-tasarim { background: #efe1f7; color: #6a3f8a; }
.pill-onaylandi { background: #dcefe0; color: #2f7a45; }
.pill-kargoda { background: #d9f0ef; color: #1f7d78; }
.pill-tamamlandi { background: #dfeaf7; color: #2b5f8a; }
.pill-iptal { background: #f7dcdc; color: #a5352f; }
.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
}
.login-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    width: 100%;
    max-width: 380px;
}
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; margin-bottom: 24px; }
.stat-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-box .num { font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--accent-dark); }
.stat-box .label { color: var(--muted); font-size: 13px; }
.actions-row { display: flex; gap: 8px; }
.text-link-danger { color: var(--danger); }
.image-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.image-grid .img-item { position: relative; }
.image-grid img { width: 90px; height: 90px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.image-grid .del-btn {
    position: absolute; top: -8px; right: -8px;
    background: var(--danger); color: white; border: none;
    width: 22px; height: 22px; border-radius: 50%; cursor: pointer; font-size: 12px;
}

.wishlist-count {
    position: absolute; top: -4px; right: -4px;
    background: var(--accent); color: var(--background); font-size: 11px;
    border-radius: 999px; padding: 1px 6px; font-family: 'Manrope', sans-serif;
}

/* Ürün kartlarındaki istek listesi (kalp) butonu */
.card { position: relative; }
.wishlist-btn {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(250,248,244,0.92); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; color: var(--muted); cursor: pointer;
    transition: transform .1s ease;
}
.wishlist-btn:hover { transform: scale(1.08); }
.wishlist-btn.active { color: #b3452f; border-color: #f0c9c1; }

/* Ürün başlığının yanındaki istek listesi butonu (overlay değil, satır içi) */
.wishlist-btn-inline {
    position: static; width: 38px; height: 38px; flex-shrink: 0;
    background: var(--surface); box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Davetiye Sözleri sayfası */
.quote-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.quote-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: var(--foreground);
    margin: 0;
    flex: 1;
}
.quote-card .btn { align-self: flex-start; }

/* Anasayfa ürün vitrinleri (En Sevilenler / Yeni Sezon) - yatay kaydırmalı */
.showcase-wrap { position: relative; display: flex; align-items: center; gap: 8px; }
.showcase-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; padding: 4px 2px 14px; flex: 1;
    -webkit-overflow-scrolling: touch;
}
.showcase-track::-webkit-scrollbar { height: 6px; }
.showcase-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.showcase-card {
    scroll-snap-align: start; flex: 0 0 calc(25% - 15px); min-width: 220px;
}
@media (max-width: 980px) { .showcase-card { flex-basis: calc(50% - 10px); } }
@media (max-width: 560px) { .showcase-card { flex-basis: 78%; min-width: 0; } }
.showcase-arrow {
    flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--surface); color: var(--foreground);
    font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .15s ease;
}
.showcase-arrow:hover { background: var(--surface); }
@media (max-width: 560px) { .showcase-arrow { display: none; } }

/* WhatsApp yüzen buton */
.whatsapp-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 65;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(34,33,31,0.22);
    transition: bottom .2s ease, transform .15s ease, box-shadow .15s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(34,33,31,0.28); }
.whatsapp-float-ping {
    position: absolute; inset: 0; border-radius: 50%;
    background: #25D366; opacity: 0.45;
    animation: whatsapp-ping 3.2s cubic-bezier(.4,0,.3,1) infinite;
}
@keyframes whatsapp-ping {
    0% { transform: scale(1); opacity: 0.4; }
    75% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float-ping { animation: none; display: none; }
}
@media (max-width: 480px) {
    .whatsapp-float { width: 50px; height: 50px; bottom: 88px; right: 16px; }
}

/* Mobil alt yüzen menü (Instagram tarzı pill) */
.mobile-bottom-nav {
    display: none;
    position: fixed; left: 50%; bottom: 16px; z-index: 70;
    transform: translateX(-50%);
    background: rgba(41,39,36,0.82);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-radius: 22px;
    padding: 6px 4px;
    gap: 2px;
    align-items: center;
    box-shadow: 0 12px 28px rgba(20,19,17,0.35);
    margin-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-bottom-nav a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-width: 56px; height: 48px; border-radius: 16px; padding: 6px 8px;
    color: rgba(250,248,244,0.62);
    transition: background 0.18s ease, color 0.18s ease;
}
.mobile-bottom-nav a svg { flex-shrink: 0; }
.mobile-bottom-nav a:hover, .mobile-bottom-nav a:active { color: var(--background); }
.mobile-bottom-nav a.active { background: rgba(250,248,244,0.16); color: var(--background); }
.mobile-nav-label {
    font-size: 9.5px; font-weight: 600; letter-spacing: 0.01em; line-height: 1;
    white-space: nowrap;
}
@media (max-width: 860px) {
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 92px; }
}

/* Çerez bildirimi */
.cookie-notice {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--foreground); color: #e8e2d6;
    padding: 16px 20px; display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap; font-size: 14px;
}
.cookie-notice p { margin: 0; max-width: 700px; }
.cookie-notice a { color: var(--accent); }
.cookie-notice[hidden] { display: none !important; }

/* Admin panelinden girilen zengin (HTML) ürün açıklaması */
.rich-content { color: var(--muted); line-height: 1.7; }
.rich-content p { margin: 0 0 12px; }
.rich-content ul, .rich-content ol { padding-left: 22px; margin: 0 0 12px; }
.rich-content strong { color: var(--foreground); }
.rich-content a { color: var(--accent-dark); text-decoration: underline; }

/* Basit zengin metin editörü araç çubuğu (admin) */
.rte-toolbar {
    display: flex; gap: 4px; margin-bottom: 6px; flex-wrap: wrap;
}
.rte-toolbar button {
    border: 1px solid var(--border); background: var(--surface);
    border-radius: 6px; padding: 6px 11px; cursor: pointer; font-size: 13px;
}
.rte-toolbar button:hover { background: var(--surface); }
.rte-editor {
    min-height: 160px; border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 14px; background: var(--surface); font-family: inherit; font-size: 15px;
}
.rte-editor:focus { outline: none; border-color: var(--accent); }

/* Fiyat seçim alanı */
.qty-price-box {
    display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap;
    background: var(--surface); border-radius: var(--radius); padding: 16px; margin: 16px 0;
}
.qty-price-box .price-display { font-size: 24px; color: var(--accent-dark); font-weight: 600; }
.qty-price-box .price-display .old { text-decoration: line-through; color: var(--muted); font-size: 15px; font-weight: 400; margin-right: 6px; }

/* Anasayfa banner'ları (admin panelinden yönetilen tanıtım kartları) */
.banner-grid-section { padding: 20px 0 8px; }
.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.promo-banner {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.promo-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.promo-banner img { width: 100%; height: 100%; object-fit: cover; }
.promo-banner-tag {
    position: absolute; top: 16px; right: 16px;
    background: rgba(34,33,31,0.6); color: var(--background);
    font-size: 13px; line-height: 1.35; text-align: right;
    padding: 8px 14px; border-radius: 10px; max-width: 60%;
}
.promo-banner-btn {
    position: absolute; left: 16px; bottom: 16px;
    background: rgba(250,248,244,0.94); color: var(--foreground);
    font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
    padding: 12px 20px; border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
    .promo-banner-tag { font-size: 12px; padding: 6px 10px; }
    .promo-banner-btn { font-size: 13px; padding: 10px 16px; }
}

/* Yönetim panelinde slayt / sayfa küçük resim önizlemesi */
.admin-preview-thumb { width: 90px; height: 60px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }

/* İstek listesi sayfası */
.wishlist-empty { text-align: center; color: var(--muted); padding: 60px 20px; }

/* Canlı aktivite bildirimi ("X, Y için tasarım talebi oluşturdu") */
.activity-toast-wrap {
    position: fixed; top: 96px; right: 18px; z-index: 45;
    display: flex; flex-direction: column; gap: 10px;
    pointer-events: none;
    max-width: min(340px, calc(100vw - 36px));
}
.activity-toast {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--dark); color: var(--background);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: 0 14px 30px rgba(34,33,31,0.22);
    font-size: 13.5px; line-height: 1.5;
    opacity: 0; transform: translateY(-10px) translateX(6px);
    transition: opacity .35s ease, transform .35s ease;
}
.activity-toast.is-visible { opacity: 1; transform: translateY(0) translateX(0); }
.activity-toast svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.activity-toast strong { color: var(--background); }
@media (max-width: 480px) {
    .activity-toast-wrap { top: 80px; right: 12px; left: 12px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
    .activity-toast { transition: opacity .2s ease; transform: none; }
}
