/* ============================================================
   Heybem — style.css  (Revize v2)
   3 Katmanlı Header | E-Ticaret Anasayfası
   ============================================================ */

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
    --green:        #4A6741;
    --green-dark:   #2E4228;
    --green-light:  #EBF2E7;
    --green-mid:    #5D7A4E;
    --cream:        #FAF7F2;
    --cream-dark:   #F0EBE1;
    --orange:       #C8742A;
    --orange-light: #FFF4EA;
    --brown:        #6B4A2A;
    --topbar-bg:    #2E4228;
    --footer-bg:    #1E2E1A;
    --footer-text:  #B8C4B0;
    --text-dark:    #1E1E1E;
    --text-mid:     #5A5A5A;
    --text-light:   #909090;
    --white:        #FFFFFF;
    --border:       #E4DDD4;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:    0 6px 24px rgba(0,0,0,0.11);
    --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
    --radius:       12px;
    --radius-sm:    8px;
    --radius-xs:    6px;
    --tr:           0.22s ease;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.25; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

section { padding: 68px 0; }
.section-head { margin-bottom: 2.5rem; }
.section-title { font-size: 1.85rem; margin-bottom: .35rem; }
.section-subtitle { color: var(--text-mid); font-size: .93rem; }
.section-action a {
    color: var(--green);
    font-size: .85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--tr);
}
.section-action a:hover { color: var(--green-dark); }
.badge-pill {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* ─────────────────────────────────────────────────────────── */
/*  HEADER — 3 KATMAN                                         */
/* ─────────────────────────────────────────────────────────── */

/* 1) Avantaj Barı */
.advantage-bar {
    background: var(--topbar-bg);
    color: rgba(255,255,255,.82);
    font-size: .78rem;
    font-weight: 600;
    padding: 7px 0;
    overflow: hidden;
    white-space: nowrap;
}
.advantage-bar .container {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.advantage-bar .container::-webkit-scrollbar { display: none; }
.adv-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    border-right: 1px solid rgba(255,255,255,.15);
    white-space: nowrap;
    flex-shrink: 0;
}
.adv-item:last-child { border-right: none; }
.adv-item i { color: #A5C89A; font-size: .85rem; }

/* 2) Orta Header */
.mid-header {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.mid-header .container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.hdr-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.hdr-logo img { height: 46px; width: auto; }

.btn-categories {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background var(--tr);
    flex-shrink: 0;
}
.btn-categories:hover { background: var(--green-dark); }

.hdr-search {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--tr), box-shadow var(--tr);
}
.hdr-search:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(74,103,65,.12);
}
.hdr-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: .88rem;
    color: var(--text-dark);
    outline: none;
    font-family: 'Lato', sans-serif;
}
.hdr-search input::placeholder { color: var(--text-light); }
.hdr-search button {
    background: var(--green);
    border: none;
    color: var(--white);
    padding: 10px 18px;
    cursor: pointer;
    font-size: .95rem;
    transition: background var(--tr);
}
.hdr-search button:hover { background: var(--green-dark); }

.hdr-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.hdr-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 1.1rem;
    transition: background var(--tr), color var(--tr);
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: transparent;
}
.hdr-icon-btn:hover { background: var(--cream); color: var(--green); }
.hdr-icon-badge {
    position: absolute;
    top: 4px; right: 4px;
    background: var(--orange);
    color: var(--white);
    font-size: .6rem;
    font-weight: 800;
    width: 17px; height: 17px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.hdr-wa-btn {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: background var(--tr);
    text-decoration: none;
    flex-shrink: 0;
}
.hdr-wa-btn:hover { background: #1EBE5A; color: var(--white); }

/* 3) Kategori Menüsü */
.cat-nav {
    background: var(--white);
    border-bottom: 2px solid var(--cream-dark);
}
.cat-nav .container {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-nav .container::-webkit-scrollbar { display: none; }
.cat-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 11px 16px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--text-mid);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--tr), border-color var(--tr);
    text-decoration: none;
}
.cat-nav-link:hover,
.cat-nav-link.active {
    color: var(--green);
    border-bottom-color: var(--green);
}
.cat-nav-link i { font-size: .75rem; }

/* Sticky Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--tr);
}
.site-header.scrolled .mid-header {
    box-shadow: 0 3px 20px rgba(0,0,0,.09);
}

/* ── Butonlar ─────────────────────────────────────────────── */
.btn-heybem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: background var(--tr), color var(--tr), transform var(--tr), border-color var(--tr);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}
.btn-heybem-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-heybem-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); }
.btn-heybem-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-heybem-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-heybem-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-heybem-wa:hover { background: #1EBE5A; border-color: #1EBE5A; color: var(--white); transform: translateY(-2px); }
.btn-heybem-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-heybem-orange:hover { background: #a85e20; border-color: #a85e20; color: var(--white); transform: translateY(-2px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #F5F1EA 0%, #EDE6D8 60%, #E5DBCB 100%);
    padding: 64px 0 56px;
    overflow: hidden;
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(74,103,65,.06);
    pointer-events: none;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange-light);
    color: var(--orange);
    border: 1.5px solid rgba(200,116,42,.2);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.hero-label i { font-size: .9rem; }
.hero-title {
    font-size: 2.55rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}
.hero-title span { color: var(--green); }
.hero-text {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.75;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 28px;
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: .9rem;
    box-shadow: var(--shadow-sm);
}
.hero-stat-text strong { display: block; font-size: .92rem; font-weight: 800; color: var(--text-dark); }
.hero-stat-text span { font-size: .75rem; color: var(--text-light); }

.hero-visual {
    position: relative;
    height: 420px;
}
.hero-main-img {
    position: absolute;
    top: 0; right: 0;
    width: 88%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-main-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-float-card {
    position: absolute;
    bottom: 28px;
    left: -10px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}
.hero-float-card .fc-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-sm);
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hero-float-card .fc-text strong { display: block; font-size: .88rem; font-weight: 800; color: var(--text-dark); }
.hero-float-card .fc-text span { font-size: .75rem; color: var(--text-mid); }

/* ── KATEGORİLER ──────────────────────────────────────────── */
.categories-sec {
    background: var(--white);
    padding: 56px 0;
}
.cat-card-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}
.cat-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
    text-decoration: none;
    display: block;
}
.cat-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 18px rgba(74,103,65,.12);
    transform: translateY(-3px);
}
.cat-card-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    color: var(--green);
    transition: background var(--tr), color var(--tr);
}
.cat-card:hover .cat-card-icon { background: var(--green); color: var(--white); }
.cat-card-name {
    font-family: 'Playfair Display', serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ── ÜRÜN KARTI ───────────────────────────────────────────── */
.pcard {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
    position: relative;
}
.pcard:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: #ccc;
}
.pcard-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    background: var(--cream);
    overflow: hidden;
    flex-shrink: 0;
}
.pcard-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform var(--tr);
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.05); }

.pcard-label {
    position: absolute;
    top: 10px; left: 10px;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: .05em;
}
.lbl-new   { background: var(--green);  color: var(--white); }
.lbl-top   { background: var(--orange); color: var(--white); }
.lbl-rec   { background: #7B5EA7;       color: var(--white); }
.lbl-nat   { background: #3A8A6A;       color: var(--white); }

.pcard-fav {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    font-size: .9rem;
    cursor: pointer;
    transition: color var(--tr), background var(--tr), border-color var(--tr);
    z-index: 2;
}
.pcard-fav:hover,
.pcard-fav.active { color: #E53935; background: #fff0f0; border-color: #E53935; }

.pcard-body {
    padding: 14px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pcard-name {
    font-family: 'Playfair Display', serif;
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
    line-height: 1.3;
}
.pcard-note {
    font-size: .75rem;
    color: var(--green);
    font-weight: 600;
    background: var(--green-light);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}
.pcard-desc {
    font-size: .8rem;
    color: var(--text-mid);
    flex: 1;
    margin-bottom: 12px;
    line-height: 1.55;
}
.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.pcard-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-dark);
}
.pcard-price small {
    font-size: .72rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}
.btn-addcart {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: .79rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--tr), transform var(--tr);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-addcart:hover { background: var(--green-dark); transform: translateY(-1px); }
.pcard-detail {
    display: block;
    text-align: center;
    margin-top: 9px;
    font-size: .78rem;
    color: var(--green);
    font-weight: 600;
}
.pcard-detail:hover { text-decoration: underline; color: var(--green-dark); }

/* Ürün bölüm başlığı */
.prod-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 12px;
}
.prod-sec-head h2 { font-size: 1.6rem; margin-bottom: .2rem; }
.prod-sec-head p { font-size: .88rem; color: var(--text-mid); }

/* ── ÜRÜN BÖLÜMLERİ ───────────────────────────────────────── */
.new-products-sec { background: var(--white); padding: 60px 0; }
.topsellers-sec   { background: var(--cream);  padding: 60px 0; }
.engineer-sec     {
    background: linear-gradient(135deg, #EEF6E9 0%, #F5F2EC 100%);
    padding: 68px 0;
}
.engineer-sec .prod-sec-head { flex-wrap: wrap; }
.engineer-intro {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 22px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.engineer-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.engineer-intro-text strong { display: block; font-size: .95rem; font-weight: 800; margin-bottom: 2px; }
.engineer-intro-text span { font-size: .82rem; color: var(--text-mid); }

/* ── KAMPANYA BANNERLAR ───────────────────────────────────── */
.banners-sec { background: var(--white); padding: 40px 0; }
.banner-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 32px 36px;
}
.banner-bg-green {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}
.banner-bg-orange {
    background: linear-gradient(135deg, #7B4E1E 0%, var(--orange) 100%);
}
.banner-deco {
    position: absolute;
    right: -20px; top: -20px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.banner-deco2 {
    position: absolute;
    right: 30px; bottom: -40px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.banner-content { position: relative; z-index: 1; }
.banner-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.25;
}
.banner-text { font-size: .83rem; color: rgba(255,255,255,.78); margin-bottom: 18px; max-width: 320px; }
.btn-banner {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    color: var(--green-dark);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 800;
    transition: background var(--tr), transform var(--tr);
}
.btn-banner:hover { background: var(--cream); transform: translateY(-2px); color: var(--green-dark); }
.btn-banner-orange { color: var(--brown); }

/* ── GÜVEN / MÜHENDİS ALANI ──────────────────────────────── */
.trust-main-sec { background: var(--white); padding: 72px 0; }
.trust-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.trust-intro h2 { font-size: 1.8rem; margin-bottom: 12px; }
.trust-intro p { color: var(--text-mid); font-size: .95rem; }
.trust-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
    text-align: left;
}
.trust-card:hover {
    border-color: var(--green);
    box-shadow: 0 5px 20px rgba(74,103,65,.1);
    transform: translateY(-3px);
}
.trust-card-icon {
    width: 54px; height: 54px;
    border-radius: var(--radius-sm);
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: background var(--tr), color var(--tr);
}
.trust-card:hover .trust-card-icon { background: var(--green); color: var(--white); }
.trust-card h5 { font-size: 1rem; margin-bottom: 8px; }
.trust-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }

/* ── GÜVEN BANDI ──────────────────────────────────────────── */
.trust-band {
    background: var(--cream-dark);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-band-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.trust-band-inner::-webkit-scrollbar { display: none; }
.tb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 24px;
    border-right: 1px solid var(--border);
    white-space: nowrap;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-shrink: 0;
}
.tb-item:last-child { border-right: none; }
.tb-item i { color: var(--green); font-size: 1rem; }

/* ── BLOG ─────────────────────────────────────────────────── */
.blog-sec { background: var(--cream); padding: 68px 0; }
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--tr), transform var(--tr);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img {
    height: 175px;
    background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    font-size: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.blog-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 7px;
}
.blog-title { font-size: .97rem; font-weight: 700; margin-bottom: 7px; line-height: 1.35; color: var(--text-dark); }
.blog-excerpt { font-size: .81rem; color: var(--text-mid); flex: 1; margin-bottom: 14px; }
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .76rem;
    color: var(--text-light);
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.blog-readlink { color: var(--green); font-weight: 700; font-size: .8rem; display: inline-flex; align-items: center; gap: 4px; }
.blog-readlink:hover { text-decoration: underline; color: var(--green-dark); }

/* ── CTA BANDI ────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 60px 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: .97rem; margin-bottom: 26px; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-cta-wa {
    background: var(--white);
    color: var(--green-dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background var(--tr), transform var(--tr);
    text-decoration: none;
}
.btn-cta-wa:hover { background: var(--cream); color: var(--green-dark); transform: translateY(-2px); }
.btn-cta-wa i { color: #25D366; font-size: 1.2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 60px 0 0; }
.ftr-logo img {
    height: 42px; width: auto;
    filter: brightness(0) invert(1) opacity(.8);
    margin-bottom: 14px;
}
.ftr-desc { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.65; max-width: 230px; margin-bottom: 20px; }
.ftr-social { display: flex; gap: 8px; }
.ftr-social a {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    transition: background var(--tr), color var(--tr);
}
.ftr-social a:hover { background: var(--green); color: var(--white); }

.ftr-heading { font-family: 'Playfair Display', serif; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.ftr-links { display: flex; flex-direction: column; gap: 8px; }
.ftr-links a {
    color: rgba(255,255,255,.55);
    font-size: .83rem;
    transition: color var(--tr);
    display: flex;
    align-items: center;
    gap: 6px;
}
.ftr-links a:hover { color: var(--white); }
.ftr-links a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--green-mid);
    display: inline-block;
    flex-shrink: 0;
}
.ftr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: .83rem;
    color: rgba(255,255,255,.55);
}
.ftr-contact-item i { color: var(--green-mid); font-size: .88rem; margin-top: 3px; flex-shrink: 0; }

/* Bülten */
.ftr-newsletter label { display: block; font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ftr-newsletter-form { display: flex; gap: 0; }
.ftr-newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 10px 14px;
    color: var(--white);
    font-size: .83rem;
    outline: none;
    font-family: 'Lato', sans-serif;
}
.ftr-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.ftr-newsletter-form button {
    background: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
    padding: 10px 18px;
    font-size: .83rem;
    font-weight: 700;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: background var(--tr);
    font-family: 'Lato', sans-serif;
}
.ftr-newsletter-form button:hover { background: var(--green-dark); }

.ftr-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.ftr-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); margin: 0; }
.ftr-bottom a { color: rgba(255,255,255,.5); font-weight: 600; transition: color var(--tr); }
.ftr-bottom a:hover { color: var(--white); }

/* ── TOAST ────────────────────────────────────────────────── */
.hby-toast-wrap { position: fixed; bottom: 26px; right: 26px; z-index: 9999; display: none; }
.hby-toast {
    min-width: 270px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 6px 24px rgba(0,0,0,.2);
    font-size: .88rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease;
}
.hby-toast.show { opacity: 1; transform: translateY(0); }
.hby-toast i { color: #81C784; font-size: 1rem; }
.hby-toast-orange .hby-toast { background: var(--brown); }

/* ── RESPONSİVE ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    .cat-card-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991px) {
    .hero { padding: 48px 0 40px; }
    .hero-title { font-size: 2rem; }
    .hero-visual { height: 300px; margin-top: 0; }
    .hero-float-card { display: none; }
    .cat-card-grid { grid-template-columns: repeat(4, 1fr); }
    section { padding: 52px 0; }
    .hdr-wa-btn { display: none; }
    .mid-header .container { gap: 12px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 1.65rem; }
    .hero-text { font-size: .92rem; }
    .hero-stats { gap: 14px; }
    .cat-card-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .cat-card { padding: 14px 6px; }
    .cat-card-icon { width: 44px; height: 44px; font-size: 1rem; }
    .cat-card-name { font-size: .72rem; }
    .prod-sec-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .ftr-bottom { justify-content: center; text-align: center; }
    .trust-band-inner { justify-content: flex-start; }
    .banner-card { min-height: 160px; padding: 24px 22px; }
    .banner-title { font-size: 1.1rem; }
}
@media (max-width: 575px) {
    .advantage-bar .container { justify-content: flex-start; }
    .mid-header .container { flex-wrap: wrap; gap: 10px; }
    .hdr-logo { order: 1; }
    .hdr-icons { order: 2; margin-left: auto; }
    .btn-categories { display: none; }
    .hdr-search { order: 3; width: 100%; flex-basis: 100%; }
    .hero { padding: 36px 0 32px; }
    .hero-title { font-size: 1.45rem; }
    .hero-visual { display: none; }
    .hero-buttons { gap: 10px; }
    .cat-card-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
    .section-title { font-size: 1.5rem; }
    .tb-item { padding: 6px 14px; font-size: .76rem; }
    .ftr-newsletter-form { flex-direction: column; gap: 8px; }
    .ftr-newsletter-form input,
    .ftr-newsletter-form button {
        border-radius: var(--radius-sm);
        border: 1px solid rgba(255,255,255,.15);
        width: 100%;
    }
}
