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

:root {
    /* Ana renk: mavi (admin paneliyle uyumlu) */
    --green:        #6366F1;
    --green-dark:   #4F46E5;
    --green-light:  #EEF2FF;
    --primary:      #6366F1;
    --primary-dark: #4F46E5;
    --primary-light:#EEF2FF;
    --cream:        #F0F4FF;
    --cream-line:   #DDE3FB;
    --yellow:       #FFD64A;
    --yellow-dark:  #B8410B;
    --pink-1:       #4F46E5;
    --pink-2:       #6366F1;
    --orange:       #6366F1;
    --purple:       #8B5CF6;
    --navy:         #1F2937;
    --navy-2:       #111827;
    --text:         #0F172A;
    --text-2:       #475569;
    --muted:        #6B7280;
    --line:         #E5E7EB;
    --line-2:       #F3F4F6;
    --bg:           #ffffff;
    --bg-soft:      #F8F9FB;
    --bg-soft-2:    #F4F6FA;
    --danger:       #DC2626;
    --radius-sm:    8px;
    --radius:       12px;
    --radius-lg:    16px;
    --radius-xl:    20px;
    --shadow-sm:    0 1px 3px rgba(15,23,42,0.04);
    --shadow:       0 4px 18px rgba(15,23,42,0.06);
    --shadow-lg:    0 16px 40px rgba(15,23,42,0.10);
    --transition:   all .25s cubic-bezier(.4,0,.2,1);
}

* { 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(26,135,84,0.25);
}
.btn-primary:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(26,135,84,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 ========== */
.etd-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Manrope', sans-serif;
    text-decoration: none; line-height: 1;
    transition: var(--transition);
}
.etd-logo:hover { transform: translateY(-1px); }
.etd-logo img { max-height: 48px; max-width: 200px; width: auto; height: auto; object-fit: contain; }

/* Görsel logo yokken metin alternatifi */
.etd-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(99,102,241,0.3);
}
.etd-mark .e, .etd-mark .t, .etd-mark .d { color: #fff; }

.etd-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}
.etd-logo-small img { max-height: 36px; }
.etd-logo-light img { filter: brightness(0) invert(1); }
.etd-logo-light .etd-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(26,135,84,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(26,135,84,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, #F0F9F4 0%, #FBF6E8 60%, #FBF6E8 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(26,135,84,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,214,74,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(15,23,42,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(26,135,84,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(15,23,42,0.06);
}

.hero-img {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #D4E5DA 0%, #B8D6C4 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, #FFE9CC 0%, #F4B73E 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: #FFC93C; color: #6E3700;
    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(--purple); 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;
}
@media (max-width: 991px) { .pdp-grid { grid-template-columns: 70px 1fr; } .pdp-panel { grid-column: 1 / -1; } }
@media (max-width: 575px) { .pdp-grid { grid-template-columns: 1fr; } .pdp-thumbs { display: none; } }

.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(26,135,84,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(26,135,84,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(26,135,84,0.3);
}
.btn-quote-large:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,135,84,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; } .cat-side { display: none; } }
.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(26,135,84,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(26,135,84,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(--purple); }

.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(26,135,84,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); }
