/* =========================================================
   Promozone Pro — Yeniden Tasarım (Promozone'a sadık)
   ========================================================= */

:root {
    /* === ANA PALET ===
       Birincil:  #FF7F00 (turuncu)
       Açık gri:  #c2c2c1 (çizgi/cream tonları)
       Koyu gri:  #51565c (footer/navy/ikincil metin)
       Tüm türevler bu üç renkten harmonik olarak türetilmiştir.
       Yönetim panelinden değiştirilebilir (header.php :root override eder).
    */
    --primary:      #FF7F00;
    --primary-dark: #D16800;
    --primary-light:#FFF2E6;
    --primary-rgb:  255, 127, 0;

    /* Eski kod uyumu — --green/--orange referansları primary ailesine eşlenir */
    --green:        #FF7F00;
    --green-dark:   #D16800;
    --green-light:  #FFF2E6;
    --orange:       #FF7F00;

    /* Vurgu (badge, "yeni" rozetleri) — turuncu ailesinden parlak ton */
    --yellow:       #FFA040;
    --yellow-dark:  #D16800;

    /* Eski pembe/mor referansları → palete uyumlu turuncu/gri tonları */
    --pink-1:       #D16800;
    --pink-2:       #FF7F00;
    --purple:       #51565c;  /* Eski mor → koyu gri (footer/navy ailesi) */

    /* Koyu yüzeyler (footer, koyu blok'lar) */
    --navy:         #51565c;
    --navy-2:       #3D4146;

    /* Metin tonları */
    --text:         #2A2D32;
    --text-2:       #51565c;
    --muted:        #8A8D92;

    /* Yüzeyler ve çizgiler — açık gri ailesi */
    --cream:        #F5F5F4;
    --cream-line:   #c2c2c1;
    --line:         #E2E2E0;
    --line-2:       #EFEFEE;
    --bg:           #ffffff;
    --bg-soft:      #FAFAF9;
    --bg-soft-2:    #F5F5F4;

    --danger:       #DC2626;
    --radius-sm:    8px;
    --radius:       12px;
    --radius-lg:    16px;
    --radius-xl:    20px;
    --shadow-sm:    0 1px 3px rgba(81,86,92,0.05);
    --shadow:       0 4px 18px rgba(81,86,92,0.08);
    --shadow-lg:    0 16px 40px rgba(81,86,92,0.12);
    --transition:   all .25s cubic-bezier(.4,0,.2,1);

    /* === BOOTSTRAP CSS DEĞİŞKENLERİ — turuncu palete bağla ===
       Bootstrap CDN'den gelen --bs-success başta yeşildi (#198754).
       Burada override ederek tüm Bootstrap component'larını turuncuya bağlıyoruz:
       alert, badge, btn, link, form-validation, list-group, progress, spinner vs.
    */
    --bs-success:               #FF7F00;
    --bs-success-rgb:           255, 127, 0;
    --bs-success-bg-subtle:     #FFF2E6;
    --bs-success-border-subtle: #c2c2c1;
    --bs-success-text-emphasis: #D16800;
    --bs-link-color:            #FF7F00;
    --bs-link-color-rgb:        255, 127, 0;
    --bs-link-hover-color:      #D16800;
    --bs-link-hover-color-rgb:  209, 104, 0;
    --bs-primary:               #FF7F00;
    --bs-primary-rgb:           255, 127, 0;
    --bs-primary-bg-subtle:     #FFF2E6;
    --bs-primary-text-emphasis: #D16800;
    /* Form valid border yeşili */
    --bs-form-valid-color:      #FF7F00;
    --bs-form-valid-border-color: #FF7F00;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Manrope', 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'cv11','ss01','ss03';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: var(--text);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1320px; }

/* ========== BUTONLAR ========== */
.btn {
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1.4rem;
    transition: var(--transition);
    border: 0;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 127, 0,0.25);
}
.btn-primary:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 127, 0,0.32);
}
.btn-outline-primary {
    background: #fff; color: var(--green); border: 1.5px solid var(--green);
}
.btn-outline-primary:hover { background: var(--green); color: #fff; }
.btn-light { background: #fff; color: var(--text); border: 1px solid var(--line); }
.btn-light:hover { background: var(--bg-soft); }
.btn-pill { border-radius: 999px; padding: 0.85rem 2rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ========== TOPBAR ========== */
.topbar {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-line);
    padding: 0.5rem 0;
    font-size: 12.5px;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
}
.topbar-pill {
    background: #fff; border: 1px solid var(--cream-line); border-radius: 999px;
    padding: 6px 14px; color: #2D2A1F; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
}
.topbar-pill:hover { background: #fff8e6; color: var(--text); }
.topbar-socials { display: flex; gap: 8px; }
.topbar-socials a {
    width: 28px; height: 28px; border-radius: 50%; background: #fff;
    border: 1px solid var(--cream-line);
    display: inline-flex; align-items: center; justify-content: center;
    color: #5A5145; font-size: 13px; transition: var(--transition);
}
.topbar-socials a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }

/* ========== LOGO ========== */
.brand-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif;
    text-decoration: none; line-height: 1;
    transition: var(--transition);
}
.brand-logo:hover { transform: translateY(-1px); }
.brand-logo img { max-height: 48px; max-width: 200px; width: auto; height: auto; object-fit: contain; }

/* Görsel logo yokken metin alternatifi */
.brand-mark {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.03em;
    box-shadow: 0 6px 18px rgba(255, 127, 0,0.3);
}
.brand-mark .e, .brand-mark .t, .brand-mark .d { color: #fff; }

.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.brand-logo-small img { max-height: 36px; }
.brand-logo-light img { filter: brightness(0) invert(1); }
.brand-logo-light .brand-name { color: #fff; }

/* ========== HEADER ========== */
.main-header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-row {
    display: grid; grid-template-columns: 200px 1fr 320px;
    gap: 24px; align-items: center; padding: 18px 0;
}
.header-search {
    background: #fff; border: 1.5px solid var(--line);
    border-radius: 999px; padding: 5px 5px 5px 22px;
    display: flex; align-items: center;
    transition: var(--transition);
}
.header-search:focus-within { border-color: var(--green); box-shadow: 0 0 0 4px rgba(255, 127, 0,0.1); }
.header-search input {
    flex: 1; border: 0; outline: 0;
    font-size: 14px; padding: 10px 0;
    background: transparent; color: var(--text);
    font-family: inherit;
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); color: #fff;
    border: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.header-search button:hover { background: var(--green-dark); transform: scale(1.05); }

.header-actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
.header-action-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-2); font-size: 17px;
    transition: var(--transition); cursor: pointer; position: relative;
}
.header-action-icon:hover { background: #fff; color: var(--green); border-color: var(--green); }
.header-action-icon.heart { color: #DC2626; }

.btn-quote-list {
    background: var(--green); color: #fff;
    padding: 10px 18px; border-radius: 10px;
    font-size: 13.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.btn-quote-list:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 127, 0,0.3); }
.btn-quote-list .badge-num {
    background: #fff; color: var(--green);
    width: 22px; height: 22px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
}

/* ========== ANA NAVIGATION ========== */
.main-nav {
    background: #fff; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.main-nav-list {
    display: flex; gap: 24px; list-style: none; margin: 0; padding: 14px 0;
    overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.main-nav-list::-webkit-scrollbar { display: none; }
.main-nav-list a {
    color: var(--text); font-size: 13.5px; font-weight: 500;
    white-space: nowrap;
    position: relative;
}
.main-nav-list a:hover, .main-nav-list a.active { color: var(--green); }
.main-nav-list a.active::after {
    content: ''; position: absolute; bottom: -14px; left: 0; right: 0; height: 2px; background: var(--green);
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(120deg, #FFF2E6 0%, #FFF2E6 60%, #FFF2E6 100%);
    padding: 60px 0 50px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 127, 0,0.08), transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; position: relative;
}
.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.hero h1 .accent {
    background: linear-gradient(120deg, transparent 60%, rgba(255, 185, 51,0.6) 60%);
    padding: 0 6px;
}
.hero .lead {
    font-size: 1.05rem; color: var(--text-2); max-width: 500px; margin-bottom: 1.8rem; line-height: 1.6;
}
.hero-search {
    background: #fff; border-radius: 999px; padding: 6px 6px 6px 24px;
    display: flex; align-items: center;
    box-shadow: 0 4px 24px rgba(81, 86, 92,0.06);
    max-width: 540px;
}
.hero-search input {
    flex: 1; border: 0; outline: 0;
    font-size: 14.5px; padding: 12px 0;
    background: transparent;
    font-family: inherit;
}
.hero-search button {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--green); color: #fff; border: 0;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px; cursor: pointer;
    transition: var(--transition);
}
.hero-search button:hover { background: var(--green-dark); transform: scale(1.05); }

.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.hero-chips small { font-size: 13px; color: var(--text-2); font-weight: 600; margin-right: 4px; }
.hero-chips a {
    padding: 6px 14px; border: 1px solid var(--green);
    border-radius: 999px; font-size: 12.5px;
    color: var(--green); font-weight: 500;
    background: rgba(255, 127, 0,0.04);
}
.hero-chips a:hover { background: var(--green); color: #fff; }

.hero-feats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.hero-feat {
    display: flex; gap: 10px; align-items: center;
    font-size: 12px; font-weight: 700; color: var(--text);
    text-transform: uppercase; letter-spacing: 0.04em;
}
.hero-feat .ic {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.85);
    color: var(--green);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(81, 86, 92,0.06);
}

.hero-img {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #FFF2E6 0%, #FFA040 100%);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ========== SECTIONS ========== */
.section { padding: 50px 0; }
.section-sm { padding: 32px 0; }
.section-tight { padding: 20px 0; }
.section-title {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 24px; gap: 1rem; flex-wrap: wrap;
}
.section-title h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; margin: 0; }
.section-title h2 .text-primary { color: var(--green); }
.section-title .all-link {
    font-size: 12.5px; font-weight: 700; color: var(--green);
    text-transform: uppercase; letter-spacing: 0.06em;
    display: inline-flex; align-items: center; gap: 6px;
}
.section-title .all-link:hover { gap: 10px; }

/* ========== KATEGORİ KARTLARI ========== */
.cat-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px;
}
@media (max-width: 1199px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--bg-soft-2);
    overflow: hidden; position: relative;
    display: flex; align-items: flex-end;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text); }
.cat-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: var(--transition);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card .cat-label {
    position: relative; z-index: 2;
    padding: 12px 14px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.92) 60%, #fff);
    width: 100%;
    font-size: 13px; font-weight: 700;
    color: var(--text);
}
.cat-card.deal {
    background: linear-gradient(135deg, #FFF2E6 0%, #FFA040 100%);
}
.cat-card.deal::before {
    content: 'TÜM ADETLERDE'; position: absolute; top: 14px; left: 14px;
    font-size: 9px; font-weight: 700; color: var(--yellow-dark);
    background: rgba(255,255,255,0.85); padding: 3px 7px; border-radius: 6px;
    letter-spacing: 0.03em;
}
.cat-card.deal::after {
    content: 'TEK FİYAT'; position: absolute; top: 36px; left: 14px;
    font-size: 18px; font-weight: 800; color: #B8410B;
    text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* ========== ÜRÜN KARTI ========== */
.prod-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1199px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.prod-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden; position: relative;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.prod-image-wrap {
    aspect-ratio: 1; background: var(--bg-soft);
    position: relative; overflow: hidden;
}
.prod-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.prod-card:hover .prod-image-wrap img { transform: scale(1.05); }

.prod-seal {
    position: absolute; top: 10px; left: 10px;
    width: 56px; height: 56px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    font-size: 8.5px; font-weight: 800; color: #B8410B;
    line-height: 1.05; padding: 6px; text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-transform: uppercase; letter-spacing: 0.03em;
    transform: rotate(-8deg);
    z-index: 2;
}
.prod-seal strong { display: block; font-size: 11px; color: var(--yellow-dark); margin-top: 1px; }

.prod-heart {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px;
    background: #fff; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--muted); border: 0; cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.prod-heart:hover { color: #DC2626; transform: scale(1.1); }

.prod-swatches {
    position: absolute; bottom: 10px; right: 10px;
    display: flex; gap: 3px; align-items: center;
    background: rgba(255,255,255,0.95);
    padding: 4px 8px; border-radius: 999px;
    font-size: 10.5px; font-weight: 700; color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.prod-swatches .dot {
    width: 12px; height: 12px; border-radius: 50%;
    border: 1px solid #fff; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.1);
}

.prod-badges { padding: 10px 12px 0; display: flex; gap: 4px; flex-wrap: wrap; }
.badge-yellow {
    background: var(--primary); color: #fff;
    padding: 4px 8px; border-radius: 4px;
    font-size: 9.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.prod-badge-custom {
    padding: 4px 8px; border-radius: 4px;
    font-size: 9.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.badge-purple {
    background: var(--navy); color: #fff;
    padding: 4px 8px; border-radius: 4px;
    font-size: 9.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
}
.badge-green {
    background: var(--green); color: #fff;
    padding: 4px 8px; border-radius: 4px;
    font-size: 9.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.02em;
}

.prod-name {
    padding: 8px 12px 0;
    font-size: 13px; font-weight: 600;
    color: var(--text); line-height: 1.35;
    min-height: 36px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-name a { color: inherit; }
.prod-name a:hover { color: var(--green); }

.prod-meta {
    padding: 6px 12px 0;
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--muted); align-items: center;
}
.prod-meta i { color: var(--green); }

.prod-price-lbl {
    padding: 8px 12px 0;
    font-size: 11px; color: var(--pink-1); font-weight: 600;
}
.prod-price { padding: 0 12px 8px; }
.prod-price .old { color: #94A3B8; text-decoration: line-through; font-size: 12px; margin-right: 8px; font-weight: 500; }
.prod-price .new { color: var(--pink-1); font-size: 16px; font-weight: 800; }

.prod-min {
    margin-top: auto;
    padding: 10px 12px;
    background: var(--bg-soft-2);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 10.5px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600;
    border-top: 1px solid var(--line-2);
}
.prod-min strong { color: var(--green); font-weight: 800; font-size: 13px; }

/* ========== ÜRÜN DETAY ========== */
.breadcrumb-bar {
    padding: 16px 0; border-bottom: 1px solid var(--line-2);
}
.breadcrumb { margin: 0; font-size: 12.5px; }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--green); }
.breadcrumb-item.active { color: var(--text); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; color: var(--line); padding: 0 4px; }

.pdp { padding: 30px 0; }
.pdp-grid {
    display: grid; grid-template-columns: 90px 1fr 380px;
    gap: 24px;
    align-items: start;
}

/* === MOBİL/TABLET ÜRÜN DETAY — 991px altı: tek kolon, yatay thumb galerisi === */
.pdp-mobile-title { display: none; }
@media (max-width: 991px) {
    .pdp-grid {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none !important;
        gap: 14px;
    }

    /* Mobil-only başlık göster */
    .pdp-mobile-title {
        display: block;
        padding: 4px 0 8px;
    }
    .pdp-mobile-title h1 {
        font-size: 1.4rem;
        font-weight: 800;
        line-height: 1.3;
        margin: 0 0 6px;
        color: var(--text);
    }
    .pdp-mobile-meta {
        display: flex; align-items: center; gap: 10px;
        font-size: 12.5px; color: var(--text-2);
    }
    .pdp-mobile-meta strong { font-weight: 700; }
    .pdp-mobile-rating { display: inline-flex; align-items: center; gap: 2px; }
    .pdp-mobile-rating i { font-size: 14px; color: #F59E0B; }

    /* Panel içindeki desktop başlığını mobil/tablette gizle (mükerrer olmasın) */
    .pdp-panel .pdp-title h1 { display: none; }
    /* Aksiyonlar (paylaş/favori) panelde sağda kalsın */
    .pdp-panel .pdp-title { justify-content: flex-end; }

    /* Ana görsel — en üstte */
    .pdp-main {
        order: 1;
        aspect-ratio: 1 / 1;
        max-height: 70vh;
        grid-column: auto !important;
    }

    /* Thumb şeridi — YATAY scroll, ana görselin hemen altı */
    .pdp-thumbs {
        order: 2;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 2px 0 6px;
        margin: 0 -4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    .pdp-thumbs::-webkit-scrollbar { height: 4px; }
    .pdp-thumbs::-webkit-scrollbar-thumb { background: rgba(255, 127, 0,0.30); border-radius: 999px; }
    .pdp-thumbs .thumb {
        flex: 0 0 70px;       /* sabit küçük genişlik */
        width: 70px;
        height: 70px;
        scroll-snap-align: start;
        border-radius: 10px;
    }

    /* Panel en altta */
    .pdp-panel {
        order: 3;
        grid-column: auto !important;
    }
}

/* Çok küçük ekranlarda (telefon) başlık biraz daha küçük */
@media (max-width: 575px) {
    .pdp-mobile-title h1 { font-size: 1.25rem; }
    .pdp-thumbs .thumb { flex: 0 0 64px; width: 64px; height: 64px; }
}

.pdp-thumbs {
    display: flex; flex-direction: column; gap: 8px;
}
.pdp-thumbs .thumb {
    aspect-ratio: 1; background: var(--bg-soft); border-radius: 10px;
    border: 1.5px solid transparent; cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}
.pdp-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs .thumb:hover, .pdp-thumbs .thumb.active { border-color: var(--green); }

.pdp-main {
    aspect-ratio: 1;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    position: relative; overflow: hidden;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-main .prod-seal { width: 76px; height: 76px; font-size: 10px; top: 16px; left: 16px; }
.pdp-main .prod-seal strong { font-size: 13px; }

.pdp-panel { display: flex; flex-direction: column; gap: 16px; }

.pdp-title {
    display: flex; justify-content: space-between; align-items: start; gap: 12px;
}
.pdp-title h1 { font-size: 1.4rem; font-weight: 800; margin: 0; line-height: 1.3; }
.pdp-title .actions { display: flex; gap: 6px; }
.pdp-title .actions button {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--bg-soft); border: 1px solid var(--line);
    color: var(--muted); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.pdp-title .actions button:hover { color: var(--green); border-color: var(--green); }

.pdp-codeline { font-size: 12.5px; color: var(--muted); }
.pdp-codeline a { color: var(--green); font-weight: 600; }

.pdp-priceboxes {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.pdp-pbox {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 12px 14px;
}
.pdp-pbox .t {
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--muted);
    margin-bottom: 4px;
}
.pdp-pbox .t .adet { color: var(--green); font-weight: 700; }
.pdp-pbox .v { font-size: 1.25rem; font-weight: 800; color: var(--pink-1); }
.pdp-pbox .note { font-size: 10.5px; color: var(--muted); margin-top: 4px; }

.pdp-info-toggle {
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 600; cursor: pointer;
}
.pdp-info-toggle:hover { border-color: var(--green); }
.pdp-info-toggle.open { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.pdp-info-content { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(-4px); } to { opacity:1; transform: translateY(0); } }

.pdp-group {}
.pdp-group .gtitle {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
}
.pdp-group .gtitle label { font-size: 13px; font-weight: 700; }
.pdp-group .gtitle .req { font-size: 11px; color: var(--green); font-weight: 600; }

.color-row { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
    width: 56px; cursor: pointer; text-align: center;
}
.color-swatch .box {
    aspect-ratio: 1; border: 2px solid transparent; border-radius: 10px;
    overflow: hidden; padding: 3px; background: #fff;
    transition: var(--transition);
}
.color-swatch .box .fill { width: 100%; height: 100%; border-radius: 6px; border: 1px solid var(--line); }
.color-swatch .box img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.color-swatch .lbl { font-size: 10.5px; color: var(--text-2); margin-top: 4px; font-weight: 500; }
.color-swatch.active .box, .color-swatch:hover .box { border-color: var(--green); }

.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-pill {
    padding: 9px 18px; border: 1.5px solid var(--green);
    border-radius: 999px; font-size: 12.5px; font-weight: 600;
    color: var(--green); background: #fff; cursor: pointer;
    transition: var(--transition);
}
.opt-pill:hover { background: rgba(255, 127, 0,0.06); }
.opt-pill.active { background: var(--green); color: #fff; }
.opt-pill.muted { border-color: var(--line); color: var(--muted); }

.qty-row { display: flex; gap: 8px; align-items: stretch; flex-wrap: wrap; }
.qty-input {
    display: inline-flex; align-items: center;
    border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden;
    background: #fff;
}
.qty-input button {
    background: #fff; border: 0; width: 38px; height: 44px;
    font-size: 18px; color: var(--text-2); cursor: pointer;
}
.qty-input button:hover { background: var(--bg-soft); color: var(--green); }
.qty-input input {
    border: 0; outline: 0; width: 80px; height: 44px;
    text-align: center; font-size: 13px; color: var(--text); font-weight: 600;
    font-family: inherit;
}

.btn-wa-contact {
    background: #fff; border: 1.5px solid var(--green);
    color: var(--green); padding: 10px 16px;
    border-radius: 10px; font-size: 12.5px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-wa-contact:hover { background: rgba(255, 127, 0,0.06); }
.btn-wa-contact i { color: #25D366; font-size: 16px; }

.btn-quote-large {
    background: var(--green); color: #fff;
    padding: 14px 24px; border-radius: 10px;
    font-size: 14.5px; font-weight: 800;
    flex: 1; min-width: 200px;
    box-shadow: 0 6px 20px rgba(255, 127, 0,0.3);
}
.btn-quote-large:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 127, 0,0.4); }

.pdp-disclaimer { font-size: 11px; color: var(--muted); line-height: 1.6; }

.pdp-info-block {
    background: var(--bg-soft); border-radius: var(--radius);
    padding: 14px 16px;
}
.pdp-info-block h5 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.pdp-info-block .row { display: flex; gap: 10px; align-items: start; padding: 6px 0; font-size: 12px; }
.pdp-info-block .row .ic { color: var(--green); font-size: 16px; }

.pdp-tabs { margin-top: 36px; }
.pdp-tabs .nav-tabs { border: 0; gap: 6px; flex-wrap: wrap; }
.pdp-tabs .nav-link {
    border: 0; background: var(--bg-soft); color: var(--text);
    padding: 12px 22px; border-radius: 12px; font-weight: 600; font-size: 14px;
}
.pdp-tabs .nav-link.active { background: var(--green); color: #fff; }
.pdp-tabs .tab-content {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 28px;
    margin-top: 14px;
}

/* ========== TEKLİF SEPETİ DRAWER ========== */
.cart-drawer {}

/* ========== SAYFA BAŞLIK ========== */
.page-head {
    background: linear-gradient(120deg, var(--cream) 0%, #fff 100%);
    padding: 40px 0 28px;
    border-bottom: 1px solid var(--line-2);
}
.page-head h1 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 6px; }

/* ========== KART YIĞINI (KATEGORİ SAYFASI) ========== */
.cat-page { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 28px 0; }
@media (max-width: 991px) {
    .cat-page { grid-template-columns: 1fr; padding: 12px 0; }
    /* Mobilde sidebar tamamen gizli — filtreler bottom-sheet'te zaten var */
    .cat-side,
    .cat-page > aside,
    .cat-page .filter-card { display: none !important; }
    /* Sıralama formu da mobilde gizli (Sırala butonuyla bottom-sheet'ten erişilir) */
    .cat-page form[method="get"] { display: none !important; }
    /* "X ürün bulundu" satırı sade, sticky bardan sonra fazla yer kaplamasın */
    .cat-page > div > .d-flex { padding: 4px 2px 6px !important; margin-bottom: 6px !important; font-size: 12.5px; }
}

/* === KATEGORİ FİLTRE KARTLARI — Collapsible (kapalı başlar, tıkla aç) === */
.filter-card h6 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    margin-bottom: 0;
    padding: 4px 0;
    transition: color .15s;
}
.filter-card h6:hover { color: var(--primary); }
.filter-card h6 .filter-toggle-icon {
    font-size: 16px;
    color: var(--text-2);
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-left: 8px;
}
/* Aktif filtreler kartı (count) hariç hepsi kapalı başlar */
.filter-card .filter-list,
.filter-card .filter-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease, margin .25s ease;
    opacity: 0;
    margin-top: 0;
}
.filter-card.open .filter-list,
.filter-card.open .filter-collapse {
    max-height: 600px;     /* yeterince büyük */
    opacity: 1;
    margin-top: 10px;
}
.filter-card.open h6 .filter-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
/* Aktif filtreler kartı (en üstteki count'lu) collapse olmasın */
.filter-card.no-collapse h6 { cursor: default; }
.filter-card.no-collapse h6:hover { color: inherit; }
.filter-card.no-collapse .filter-toggle-icon { display: none; }
.filter-card.no-collapse .filter-list,
.filter-card.no-collapse .filter-collapse,
.filter-card.no-collapse > p {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible;
    margin-top: 8px !important;
}

/* === MOBİL KATEGORİ — Filtre/Sırala bar + alttan açılır panel === */
.cat-mobile-bar { display: none; }

@media (max-width: 991px) {
    .cat-mobile-bar {
        display: flex;
        gap: 8px;
        padding: 10px 0 6px;
        position: sticky;
        top: 64px;
        z-index: 30;
        background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 70%, transparent 100%);
        backdrop-filter: blur(6px);
    }
    .cat-mobile-btn {
        flex: 1;
        display: flex; align-items: center; justify-content: center;
        gap: 8px;
        padding: 11px 14px;
        background: #fff;
        border: 1.5px solid var(--line);
        border-radius: 12px;
        font-size: 13px; font-weight: 700;
        color: var(--text);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 2px 8px rgba(81, 86, 92,0.04);
    }
    .cat-mobile-btn i { font-size: 18px; color: var(--primary); }
    .cat-mobile-btn:hover, .cat-mobile-btn:active {
        border-color: var(--primary);
        background: var(--primary-50, #EEF2FF);
    }

    /* Sıralama formunu mobilde sticky bar'ın yanına/altına yerleştir */
    .cat-page form[method="get"] { display: none; }
    /* "X ürün bulundu" satırı sade */
    .cat-page > div > .d-flex { padding: 8px 0 0; }
}

.cat-filter-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(81, 86, 92,0.55);
    backdrop-filter: blur(4px);
    z-index: 1080;
    animation: catFilterFadeIn .2s ease;
}
.cat-filter-backdrop.show { display: block; }

.cat-filter-sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: 85vh; max-height: 85vh;
    background: #fff;
    border-radius: 22px 22px 0 0;
    z-index: 1081;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex; flex-direction: column;
    box-shadow: 0 -10px 30px rgba(81, 86, 92,0.18);
}
.cat-filter-sheet.show { transform: translateY(0); }

.cat-filter-head {
    position: relative;
    padding: 22px 18px 12px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.cat-filter-handle {
    position: absolute; top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 5px;
    background: #CBD5E1;
    border-radius: 999px;
}
.cat-filter-head h6 {
    margin: 0;
    font-size: 15px; font-weight: 800;
    display: flex; align-items: center; gap: 8px;
    color: var(--text);
}
.cat-filter-head h6 i { color: var(--primary); font-size: 20px; }
.cat-filter-close {
    position: absolute; top: 16px; right: 14px;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: var(--bg-soft);
    border: 0; border-radius: 10px;
    color: var(--text-2);
    cursor: pointer;
}
.cat-filter-close:hover { background: var(--line); color: var(--text); }

.cat-filter-body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 18px;
    -webkit-overflow-scrolling: touch;
}
.cat-filter-body .cat-side-clone { display: flex; flex-direction: column; gap: 12px; }
.cat-filter-body .filter-card { margin: 0; }

.cat-filter-foot {
    padding: 12px 18px;
    border-top: 1px solid var(--line);
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 -4px 12px rgba(81, 86, 92,0.04);
}

@keyframes catFilterFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.cat-side { display: flex; flex-direction: column; gap: 14px; }
.filter-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 16px;
}
.filter-card h6 {
    font-size: 13px; font-weight: 700; margin: 0 0 10px;
    display: flex; justify-content: space-between; align-items: center;
}
.filter-card h6 .count { font-size: 11px; color: var(--green); background: rgba(255, 127, 0,0.08); padding: 2px 8px; border-radius: 999px; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { padding: 5px 0; }
.filter-list label { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-2); cursor: pointer; }

/* ========== BLOG ========== */
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
    background: #fff; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--line);
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/10; background: var(--bg-soft); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 18px 20px; }
.blog-card-meta { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.blog-card-meta i { color: var(--green); }
.blog-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 8px; }
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ========== SSS ========== */
.faq-list .accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 10px; overflow: hidden;
    background: #fff;
}
.faq-list .accordion-button {
    font-weight: 600; color: var(--text);
    padding: 18px 22px; background: #fff;
    font-size: 14px;
    box-shadow: none !important;
}
.faq-list .accordion-button:not(.collapsed) {
    background: var(--bg-soft); color: var(--green);
}
.faq-list .accordion-button::after { transform: scale(0.8); }
.faq-list .accordion-body { padding: 0 22px 18px; color: var(--text-2); font-size: 13.5px; }

/* ========== İLETİŞİM ========== */
.contact-grid { display: grid; grid-template-columns: 280px 1fr; gap: 24px; padding: 28px 0; }
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side .nav-side { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.contact-side .nav-side a {
    padding: 12px 16px; border-radius: 12px;
    color: var(--text); font-weight: 600; font-size: 13.5px;
    display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.contact-side .nav-side a:hover { background: var(--bg-soft); }
.contact-side .nav-side a.active { background: var(--green); color: #fff; }
.contact-side .nav-side a .arr { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; }

.contact-info-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    margin-bottom: 30px;
}
@media (max-width: 767px) { .contact-info-row { grid-template-columns: 1fr; } }
.contact-info-card { text-align: center; padding: 24px 16px; }
.contact-info-card .ic {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(244,162,97,0.15); color: #F4A261;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}
.contact-info-card h5 { font-size: 1rem; margin-bottom: 4px; font-weight: 700; }

/* ========== FORM ========== */
.form-control, .form-select {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    background: #fff;
    color: var(--text);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--green); box-shadow: 0 0 0 4px rgba(255, 127, 0,0.1);
}
.form-control::placeholder { color: var(--muted); }
.form-label { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.required { color: var(--danger); }

/* ========== TEKLİF SEPETİ ========== */
.cart-table { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.cart-table table { margin: 0; }
.cart-table th { background: var(--bg-soft); padding: 14px 16px; font-weight: 700; color: var(--text); border: 0; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-table td { padding: 16px; vertical-align: middle; border-bottom: 1px solid var(--line-2); font-size: 13px; }
.cart-table tr:last-child td { border-bottom: 0; }
.cart-product-img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; }
.cart-options-list { font-size: 11px; }
.cart-options-list span { display: inline-block; padding: 3px 8px; background: var(--bg-soft-2); border-radius: 4px; margin-right: 4px; color: var(--text-2); }

.quote-form-card {
    background: #fff; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 28px;
    border: 1px solid var(--line);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--navy); color: #D1D5DB;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr 1fr;
    gap: 30px;
}
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 575px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .pz-logo { color: #fff; font-size: 26px; }
.footer-brand .pz-logo .l-z, .footer-brand .pz-logo .l-n, .footer-brand .pz-logo .l-e { color: #fff; }
.footer-brand .pz-logo .l-m { color: #fff; }
.footer-brand .pz-logo .l-o2 { color: #fff; }
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 14px; line-height: 1.6; }

.footer h5 { font-size: 13px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: 4px 0; }
.footer-list a { color: rgba(255,255,255,0.65); font-size: 12.5px; transition: var(--transition); }
.footer-list a:hover { color: #fff; padding-left: 4px; }

.footer-help-block strong { display: block; color: #fff; font-size: 12.5px; margin-bottom: 4px; }
.footer-help-block .row {
    display: flex; gap: 10px; align-items: center;
    color: #fff; font-size: 14px; font-weight: 700;
    margin: 6px 0 14px;
}
.footer-help-block .ic {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--green); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.footer-help-block .ic.purple { background: var(--primary); }

.footer-socials { display: flex; gap: 10px; margin-top: 12px; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0; margin-top: 30px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 12px; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ========== YÜZEN BUTONLAR (sol taraf) ========== */
.float-whatsapp {
    position: fixed; left: 20px; bottom: 20px; z-index: 99;
    width: 56px; height: 56px;
    background: #25D366; color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    animation: pulseGreen 2s infinite;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.08); }
.float-support-label {
    position: fixed; left: 22px; bottom: 80px; z-index: 99;
    background: var(--navy); color: #fff;
    font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.04em;
    pointer-events: none;
}
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top {
    position: fixed; right: 26px; bottom: 90px; z-index: 99;
    background: var(--navy); color: #fff;
    border: 0; cursor: pointer;
    padding: 8px 16px; border-radius: 999px;
    font-size: 12px; font-weight: 700;
    display: none; align-items: center; gap: 6px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.back-to-top.show { display: inline-flex; }

/* ========== ALERT / TOAST ========== */
.alert {
    border: 0; border-radius: 12px;
    padding: 14px 18px; font-weight: 600;
    margin: 0 0 16px;
}
.alert-success { background: rgba(255, 127, 0,0.1); color: var(--green-dark); }
.alert-danger { background: rgba(220,38,38,0.1); color: #B91C1C; }
.alert-warning { background: rgba(245,158,11,0.1); color: #92400E; }

.toast-container { position: fixed; top: 90px; right: 20px; z-index: 9999; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state .empty-ic {
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--bg-soft); color: var(--green);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 36px; margin-bottom: 16px;
}
.empty-state h4 { color: var(--text); margin-bottom: 8px; }

/* ========== PAGINATION ========== */
.pagination { gap: 4px; flex-wrap: wrap; justify-content: center; }
.pagination .page-link {
    border: 1px solid var(--line); color: var(--text-2);
    border-radius: 10px; margin: 0; padding: 10px 14px;
    font-weight: 600; font-size: 13px;
}
.pagination .page-link:hover { background: var(--bg-soft); color: var(--green); border-color: var(--green); }
.pagination .page-item.active .page-link { background: var(--green); color: #fff; border-color: var(--green); }

/* ========== MOBİL ========== */
@media (max-width: 991px) {
    .header-row { grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px 0; }
    .header-search { display: none; }
    .header-action-icon.heart, .btn-quote-list span:not(.badge-num) { display: none; }
    .header-actions { gap: 6px; }
    .main-nav-list { gap: 16px; padding: 10px 0; font-size: 12.5px; }
    .hero { padding: 36px 0 32px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-img { aspect-ratio: 4/3; }
    .section { padding: 32px 0; }
    .pdp-tabs .tab-content { padding: 18px; }
}
@media (max-width: 575px) {
    .topbar { display: none; }
    .pz-logo { font-size: 22px; }
    .hero-feats { gap: 12px; }
    .hero-feat { font-size: 10.5px; }
    .prod-name { font-size: 12px; min-height: 32px; }
    .float-whatsapp { width: 50px; height: 50px; font-size: 22px; }
}

/* ========== SWIPER ========== */
.swiper-button-next, .swiper-button-prev {
    color: var(--text); background: #fff; width: 44px !important; height: 44px !important;
    border-radius: 50%; box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    --swiper-navigation-size: 14px;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--green); color: #fff; }
.swiper-pagination-bullet { background: #fff; opacity: 0.6; }
.swiper-pagination-bullet-active { background: var(--green); opacity: 1; width: 26px; border-radius: 5px; }

/* ========== HERO SLIDE ========== */
.hero-slide { padding: 70px 0; }
.hero-slide-content { max-width: 540px; }

/* Floating utility text colors */
.text-green { color: var(--green) !important; }
.text-pink { color: var(--pink-1) !important; }
.bg-cream { background: var(--cream); }

/* ================================================================ */
/* MOBİL DENEYİM İYİLEŞTİRMELERİ — toplu polish                     */
/* ================================================================ */

/* iOS form input zoom önleme — 16px altı font input fokuslanınca yakınlaşır */
@media (max-width: 768px) {
    input.form-control,
    textarea.form-control,
    select.form-select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
    /* form-text gibi yardımcı yazılar küçük kalsın */
    .form-text, .form-label small, label small { font-size: 12px !important; }
}

/* Sepet/teklif tabloları — mobilde yatay scroll wrapper */
@media (max-width: 767px) {
    .table-responsive,
    .cart-table-wrap,
    .quote-cart-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    .table-responsive table,
    .cart-table-wrap table,
    .quote-cart-wrap table {
        min-width: 560px;  /* taşma yerine kaydırılabilir */
        font-size: 13.5px;
    }
    .table-responsive table td,
    .table-responsive table th {
        padding: 10px 8px !important;
    }
    .table-responsive table img {
        max-width: 56px;
        height: auto;
    }
}

/* Hesap dashboard KPI'ları küçük ekranda 2 sütun (col-6 default), 360px altında 1 sütun */
@media (max-width: 360px) {
    .acc-kpi-grid > [class*="col-"],
    .row.g-3 > .col-6 { flex: 0 0 100%; max-width: 100%; }
}

/* Touch hedefi — minimum 44x44 (Apple HIG, Google MD3 standart) */
@media (max-width: 768px) {
    .btn-sm { min-height: 38px; padding: 8px 14px; }
    .btn { min-height: 44px; }
    .btn.btn-link, .btn-icon { min-height: auto; }  /* link benzeri buton küçük kalsın */
    a.icon-link, button.icon-btn, .nav-link { min-height: 40px; display: inline-flex; align-items: center; }
    /* Form kontrol butonları (qty +/-) küçük kalabilir */
    .qty-btn, .pdp-qty-btn { min-height: 36px; }
}

/* Sticky elementler arası z-index hiyerarşisi (overlap önleme) */
.main-header, header.sticky { z-index: 100; }
.cat-mobile-bar { z-index: 30; }   /* sticky filtre/sırala bar */
.float-whatsapp, .floating-cart-btn { z-index: 95; }
.modal-backdrop, .offcanvas-backdrop { z-index: 1040; }
.modal, .offcanvas { z-index: 1050; }
.cat-filter-backdrop { z-index: 1080; }
.cat-filter-sheet   { z-index: 1081; }
.pdp-lightbox       { z-index: 1090; }

/* Genel padding sıkıştırma — küçük ekranlarda daha fazla içerik görünsün */
@media (max-width: 575px) {
    .container { padding-left: 14px !important; padding-right: 14px !important; }
    .page-head { padding: 16px 0 !important; }
    .page-head h1 { font-size: 1.4rem; }
    section { scroll-margin-top: 70px; }   /* sticky header'la çakışma */
}

/* Bootstrap modal mobilde tam ekran his */
@media (max-width: 575px) {
    .modal-dialog:not(.modal-fullscreen):not(.modal-sm) {
        margin: 0;
        max-width: 100%;
        height: 100vh;
    }
    .modal-content { border-radius: 0; min-height: 100vh; }
}

/* Görsel galeri/swiper küçük ekranda taşmasın */
@media (max-width: 575px) {
    .swiper, .swiper-container, .product-gallery { max-width: 100%; overflow: hidden; }
}

/* =========================================================
   BOOTSTRAP SUCCESS / GREEN OVERRIDE
   Bootstrap CDN'den gelen .text-success, .btn-success, .bg-success vs.
   default yeşil renklerini turuncu palete bağlar. !important kullanılır
   çünkü Bootstrap CDN bizim CSS'ten önce yükleniyor.
   ========================================================= */
.text-success                        { color: var(--primary) !important; }
.bg-success                          { background-color: var(--primary) !important; }
.bg-success-subtle                   { background-color: var(--primary-light) !important; }
.text-success-emphasis               { color: var(--primary-dark) !important; }
.border-success                      { border-color: var(--primary) !important; }
.text-bg-success                     { background-color: var(--primary) !important; color: #fff !important; }
.alert-success {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
    border-color: var(--cream-line) !important;
}
.alert-success .alert-link           { color: var(--primary-dark) !important; }
.btn-success {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}
.btn-success:hover, .btn-success:focus, .btn-success:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
}
.btn-outline-success {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}
.btn-outline-success:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}
.badge.bg-success                    { background-color: var(--primary) !important; }
.list-group-item-success {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
}
.link-success                        { color: var(--primary) !important; }
.link-success:hover                  { color: var(--primary-dark) !important; }
/* Form valid (yeşil border) — turuncu yap */
.form-control.is-valid, .was-validated .form-control:valid,
.form-select.is-valid, .was-validated .form-select:valid {
    border-color: var(--primary) !important;
}
.valid-feedback                      { color: var(--primary-dark) !important; }
/* Progress bar + spinner success */
.progress-bar.bg-success             { background-color: var(--primary) !important; }
.spinner-border.text-success, .spinner-grow.text-success { color: var(--primary) !important; }
