/* ============================================================
   umurbeykadingirisimi.org.tr — Zeytin Temalı Ana Stil
   ============================================================ */

:root {
    --olive-darkest: #2e3818;
    --olive-dark:    #3d4a1f;
    --olive:         #5b6d2f;
    --olive-soft:    #8a9a5b;
    --olive-pale:    #eef0e2;
    --gold:          #c9a227;
    --gold-soft:     #e6cf7e;
    --cream:         #faf8f1;
    --cream-dark:    #f2eee1;
    --ink:           #2c2c24;
    --ink-soft:      #5f5f52;
    --white:         #ffffff;
    --radius:        14px;
    --shadow:        0 10px 40px rgba(46, 56, 24, 0.10);
    --shadow-sm:     0 4px 16px rgba(46, 56, 24, 0.08);
    --font-serif:    'Playfair Display', Georgia, serif;
    --font-sans:     'Jost', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 1.02rem;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; transition: color .25s; }
a:hover { color: var(--olive-dark); }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--olive-darkest); line-height: 1.25; font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Dekoratif zeytin dalları (ince, zarif; uçları solar) ---------- */
.olive-deco {
    position: fixed;
    top: 110px;
    width: 90px;
    height: min(72vh, 620px);
    z-index: 1;
    opacity: .7;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 78%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 78%, transparent);
}
.olive-deco--left  { left: 4px; }
.olive-deco--right { right: 4px; }
.olive-deco--right svg { transform: scaleX(-1); }

.branch-sway {
    transform-origin: 50% 0;
    animation: sway 10s ease-in-out infinite;
}
.branch-sway--alt { animation: sway 12s ease-in-out infinite reverse; }

@keyframes sway {
    0%, 100% { transform: rotate(-1.3deg); }
    50%      { transform: rotate(1.3deg); }
}

@media (max-width: 1420px) { .olive-deco { opacity: .25; } }
@media (max-width: 1240px) { .olive-deco { display: none; } }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 241, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(91, 109, 47, 0.14);
    transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 84px;
}

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; flex-shrink: 0; }
.brand-icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--olive-dark);
    color: var(--gold-soft);
    border-radius: 50%;
    flex-shrink: 0;
}
.brand-icon svg { width: 26px; height: 26px; }
.brand-logo { flex-shrink: 0; display: flex; align-items: center; padding: 8px 0; }
.brand-logo img { height: 58px; width: auto; max-width: 260px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
    font-family: var(--font-serif);
    font-size: 1.12rem;
    color: var(--olive-darkest);
    letter-spacing: .2px;
}
.brand-text small { color: var(--olive-soft); font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; }

.main-nav { display: flex; gap: 2px; }
.main-nav a {
    padding: 9px 11px;
    border-radius: 8px;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: .95rem;
    white-space: nowrap;
}
.main-nav a:hover { color: var(--olive-dark); background: var(--olive-pale); }
.main-nav a.active { color: var(--olive-dark); background: var(--olive-pale); font-weight: 600; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--olive-dark); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .95rem;
    border: 0;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .25s;
    letter-spacing: .3px;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--olive); color: #fff; box-shadow: 0 6px 20px rgba(91,109,47,.35); }
.btn-primary:hover { background: var(--olive-dark); color: #fff; }

.btn-outline { background: transparent; color: var(--olive-dark); border: 1.6px solid var(--olive-soft); }
.btn-outline:hover { background: var(--olive-pale); color: var(--olive-dark); }

.btn-gold { background: var(--gold); color: var(--olive-darkest); box-shadow: 0 6px 20px rgba(201,162,39,.35); }
.btn-gold:hover { background: var(--gold-soft); color: var(--olive-darkest); }

.btn-wa { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn-wa:hover { background: #1eb857; color: #fff; }

.header-wa { padding: 10px 20px; font-size: .88rem; white-space: nowrap; flex-shrink: 0; }

/* ---------- Hero / Slider ---------- */
.hero {
    position: relative;
    min-height: 560px;
    display: grid;
    overflow: hidden;
    background: linear-gradient(135deg, var(--olive-darkest) 0%, var(--olive) 70%, var(--olive-soft) 120%);
}
.hero-slide {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.1s ease;
    position: relative;
    min-height: 560px;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide .slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
}
.hero-slide.active .slide-bg { transform: scale(1); }
.hero-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(36,44,18,.82) 15%, rgba(36,44,18,.45) 55%, rgba(36,44,18,.15));
}
.slide-content {
    position: relative;
    z-index: 3;
    max-width: 1180px;
    margin: 0 auto;
    padding: 90px 24px;
    width: 100%;
}
.slide-content .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-size: .84rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 18px;
}
.slide-content .kicker::before { content: ''; width: 38px; height: 1.5px; background: var(--gold-soft); }
.slide-content h1, .slide-content h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    color: #fff;
    max-width: 700px;
    margin-bottom: 18px;
}
.slide-content p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 32px; font-weight: 300; }

.hero-dots {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 5;
}
.hero-dots button {
    width: 34px; height: 4px;
    border-radius: 4px;
    border: 0;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: background .3s;
}
.hero-dots button.active { background: var(--gold-soft); }

/* ---------- Bölüm başlıkları ---------- */
.section { padding: 84px 0; position: relative; z-index: 2; }
.section-alt { background: var(--cream-dark); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .kicker {
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); }

.leaf-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 10px auto 0;
    color: var(--olive-soft);
}
.leaf-divider::before, .leaf-divider::after {
    content: '';
    width: 52px; height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--olive-soft));
}
.leaf-divider::after { background: linear-gradient(90deg, var(--olive-soft), transparent); }

/* ---------- Hikaye önizleme ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-media { position: relative; }
.story-media .frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: linear-gradient(140deg, var(--olive-pale), var(--olive-soft));
}
.story-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.story-media::before {
    content: '';
    position: absolute;
    inset: -16px auto auto -16px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold-soft);
    border-radius: var(--radius);
    z-index: -1;
}
.story-text .kicker { color: var(--gold); font-size: .8rem; letter-spacing: 3.5px; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 10px; }
.story-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.story-text p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Ürün kartları ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 28px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .card-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(140deg, var(--olive-pale), #dfe3c8);
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
}
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .card-img img { transform: scale(1.06); }
.card-img .img-placeholder { color: var(--olive-soft); opacity: .8; }
.card-cat {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(46,56,24,.82);
    color: var(--gold-soft);
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
.product-card .card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.product-card h3 a { color: inherit; }
.product-card .card-desc { color: var(--ink-soft); font-size: .92rem; flex: 1; margin-bottom: 16px; }
.card-actions { display: flex; gap: 10px; align-items: center; }
.card-actions .price { font-family: var(--font-serif); color: var(--olive-dark); font-weight: 700; font-size: 1.05rem; margin-right: auto; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ---------- Ürün detay ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: start; }
.product-detail .detail-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(140deg, var(--olive-pale), #dfe3c8);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    position: sticky;
    top: 110px;
}
.product-detail .detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 10px; }
.detail-info .detail-cat { color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-size: .8rem; font-weight: 600; }
.detail-info .lead { color: var(--ink-soft); font-size: 1.08rem; margin: 14px 0 22px; }
.detail-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--olive-dark); font-weight: 700; margin-bottom: 22px; }
.detail-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.detail-block { background: var(--white); border-radius: var(--radius); padding: 26px 30px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.detail-block h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-block h3::before { content: '🫒'; font-size: 1rem; }
.detail-block p, .detail-block li { color: var(--ink-soft); }
.detail-block ul { padding-left: 20px; }

/* ---------- Galeri ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
    background: var(--olive-pale);
    border: 0;
    padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-title {
    position: absolute;
    inset: auto 0 0 0;
    padding: 30px 16px 12px;
    background: linear-gradient(transparent, rgba(46,56,24,.85));
    color: #fff;
    font-size: .88rem;
    text-align: left;
}

/* Ana sayfa galerisi: masaüstünde 4x2 = 8 kare, mobilde 2x2 = 4 kare */
.home-gallery { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 600px) {
    .home-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .home-gallery .gallery-item:nth-child(n+5) { display: none; }
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(30, 36, 15, .93);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox-close {
    position: absolute; top: 22px; right: 28px;
    background: none; border: 0;
    color: #fff; font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card .card-img { aspect-ratio: 16 / 9; background: linear-gradient(140deg, var(--olive-pale), #dfe3c8); overflow: hidden; display: grid; place-items: center; }
.post-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-date { color: var(--gold); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-card h3 a { color: inherit; }
.post-card p { color: var(--ink-soft); font-size: .93rem; flex: 1; }
.post-card .read-more { margin-top: 14px; font-weight: 600; font-size: .9rem; }

/* ---------- İçerik sayfası ---------- */
.page-hero {
    background: linear-gradient(120deg, var(--olive-darkest), var(--olive));
    padding: 74px 0 66px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 120%, rgba(201,162,39,.22), transparent 55%);
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); position: relative; z-index: 2; }
.page-hero .breadcrumb { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: 10px; position: relative; z-index: 2; }
.page-hero .breadcrumb a { color: var(--gold-soft); }

.content-body { max-width: 820px; margin: 0 auto; }
.content-body p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.05rem; }
.content-body h2, .content-body h3 { margin: 30px 0 14px; }
.content-body img { border-radius: var(--radius); margin: 22px 0; box-shadow: var(--shadow-sm); }
.content-body ul, .content-body ol { margin: 0 0 18px 24px; color: var(--ink-soft); }
.content-body blockquote {
    border-left: 3px solid var(--gold);
    background: var(--white);
    padding: 18px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 22px 0;
    font-style: italic;
    color: var(--ink-soft);
}
.page-featured-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 36px;
    max-height: 440px;
}
.page-featured-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA bandı ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--olive-dark), var(--olive));
    border-radius: 20px;
    padding: 54px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '🫒';
    position: absolute;
    right: -20px; bottom: -38px;
    font-size: 11rem;
    opacity: .1;
    transform: rotate(-15deg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); }
.cta-band .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { margin-bottom: 18px; }
.contact-info-card ul { list-style: none; }
.contact-info-card li { display: flex; gap: 12px; margin-bottom: 16px; color: var(--ink-soft); align-items: baseline; }
.contact-info-card li .ico { flex-shrink: 0; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: .92rem; color: var(--olive-dark); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #ddd8c8;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: .98rem;
    background: var(--cream);
    transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--olive-soft);
    box-shadow: 0 0 0 3px rgba(138,154,91,.18);
}
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 44px; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: .95rem; }
.alert-success { background: #e8f2dc; color: #3d5a1f; border: 1px solid #c6dda6; }
.alert-error { background: #fbe9e7; color: #a33a2a; border: 1px solid #f0c4bc; }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 58px; height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 26px rgba(37,211,102,.45);
    z-index: 150;
    transition: transform .25s;
    animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

@keyframes wa-pulse {
    0%   { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
    70%  { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--olive-darkest); color: rgba(255,255,255,.75); margin-top: 40px; position: relative; z-index: 2; }
.footer-branch { display: flex; justify-content: center; padding: 26px 0 0; opacity: .5; }
.footer-branch svg { width: 260px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 44px;
    padding: 34px 24px 44px;
}
.site-footer h4 { color: var(--gold-soft); font-size: 1.08rem; margin-bottom: 16px; }
.site-footer p { font-size: .92rem; font-weight: 300; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 9px; font-size: .92rem; }
.footer-links a, .footer-contact a { color: rgba(255,255,255,.75); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    transition: background .25s;
}
.footer-social a:hover { background: rgba(201,162,39,.3); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 16px 0;
    font-size: .84rem;
    text-align: center;
    color: rgba(255,255,255,.5);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Boş durum ---------- */
.empty-state {
    text-align: center;
    color: var(--ink-soft);
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.empty-state .big { font-size: 3rem; margin-bottom: 12px; }

/* ---------- Kategori filtre ---------- */
.cat-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.cat-filter a {
    padding: 9px 22px;
    border-radius: 30px;
    border: 1.5px solid var(--olive-soft);
    color: var(--olive-dark);
    font-size: .9rem;
    font-weight: 500;
    transition: all .25s;
}
.cat-filter a:hover, .cat-filter a.active { background: var(--olive); border-color: var(--olive); color: #fff; }

/* ---------- Responsive ---------- */

/* Menü 7 öğe + logo + buton geniş yer istiyor; 1120px altında hamburgere geç */
@media (max-width: 1120px) {
    .main-nav {
        position: fixed;
        top: 84px;
        left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 18px 24px 26px;
        gap: 6px;
        box-shadow: 0 20px 30px rgba(46,56,24,.15);
        transform: translateY(-130%);
        transition: transform .35s ease;
        z-index: 99;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }
    .main-nav.open { transform: none; }
    .main-nav a { padding: 12px 16px; font-size: 1.02rem; }
    .nav-toggle { display: flex; }
}

@media (max-width: 960px) {
    .story-grid, .product-detail, .contact-grid { grid-template-columns: 1fr; }
    .product-detail .detail-img { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .section { padding: 60px 0; }
    .hero, .hero-slide { min-height: 480px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-band { padding: 38px 28px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Dar telefonlarda: buton gizlenir (sağ alttaki WhatsApp balonu zaten var), logo küçülür */
@media (max-width: 600px) {
    .header-wa { display: none; }
    .brand-logo img { height: 48px; max-width: 180px; }
    .header-inner { min-height: 72px; gap: 12px; }
    .main-nav { top: 72px; max-height: calc(100vh - 72px); }
    .slide-content { padding: 70px 24px; }
}
