/* =============================================================
   Wulf Naturals — doğal/organik tema
   Palet: yeşil (#5fbd74) / koyu (#2E3031) / açık yeşilimsi krem
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Poppins:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600&display=swap');

:root {
    --bg:        #ffffff;
    --cream:     #f4f7f1;
    --beige:     #e6efe5;
    --ink:       #2E3031;
    --muted:     #7e8a7f;
    --line:      #e2ebe1;
    --accent:    #5fbd74;
    --green:     #5fbd74;
    --green-dark:#479a5a;
    --serif:  'Poppins', 'Helvetica Neue', Arial, sans-serif;
    --sans:   'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-weight: 400;
    letter-spacing: .2px;
    margin: 0;
}

h1, h2, h3, h4, .serif { font-family: var(--serif); font-weight: 600; }

a { color: var(--ink); text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { color: var(--green); opacity: 1; }

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

/* ---------------- Üst bilgi / announce ---------------- */
.announce {
    background: var(--green);
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 9px 10px;
    text-transform: uppercase;
}

/* ---------------- Navbar ---------------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.navbar-brand .logo { height: 56px; color: var(--ink); display: block; }
.nav-link {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--ink) !important;
    font-weight: 400;
}
.nav-icon { font-size: 19px; position: relative; }
.cart-badge {
    position: absolute; top: -8px; right: -10px;
    background: var(--green); color: #fff;
    font-size: 10px; min-width: 17px; height: 17px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--sans);
}

/* ---------------- Hero (split: metin + görsel) ---------------- */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    border-bottom: 1px solid var(--line);
}
.hero-split .hero-text {
    background: var(--cream);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 60px 48px;
}
.hero-split .logo-mark { height: 120px; color: var(--ink); margin-bottom: 22px; }
.hero-split .kicker {
    text-transform: uppercase; letter-spacing: 5px;
    font-size: 12px; color: var(--muted); margin-bottom: 26px;
}
.hero-split p.lead {
    font-family: var(--serif);
    font-size: 1.7rem; font-style: italic; color: var(--ink);
    max-width: 460px; margin: 0 auto 34px; line-height: 1.5;
}
.hero-split .hero-img {
    background: var(--cream) center/cover no-repeat;
    min-height: 60vh;
}

/* ---------------- Editorial tam-genişlik bant ---------------- */
.editorial-band {
    position: relative;
    min-height: 80vh;
    background: var(--cream) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
@media (min-width: 992px) {
    .editorial-band { background-attachment: fixed; } /* parallax */
}
.editorial-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.22));
}
.editorial-band .editorial-inner { position: relative; z-index: 1; color: #fff; padding: 40px; }
.editorial-band .kicker { text-transform: uppercase; letter-spacing: 6px; font-size: 12px; opacity: .9; }
.editorial-band h2 {
    font-family: var(--serif); color: #fff;
    font-size: clamp(2rem, 5vw, 3.6rem); font-style: italic; margin: 16px 0 0;
    text-shadow: 0 2px 30px rgba(0,0,0,.25);
}

/* ---------------- İkili bant (manifesto + yeni sezon) ---------------- */
.dual-band { display: grid; grid-template-columns: 1fr 1fr; }
.dual-band .db-half {
    position: relative; min-height: 70vh;
    background: var(--cream) center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.dual-band .db-half::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.42));
}
.dual-band .db-inner { position: relative; z-index: 1; color: #fff; padding: 40px 30px; }
.dual-band .db-inner .kicker { text-transform: uppercase; letter-spacing: 5px; font-size: 12px; opacity: .92; }
.dual-band .db-inner h2 {
    font-family: var(--serif); color: #fff; font-style: italic;
    font-size: clamp(1.6rem, 2.6vw, 2.6rem); margin: 14px 0 0; text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.btn-light-outline {
    background: transparent; color: #fff; border: 1px solid #fff; border-radius: 0;
    text-transform: uppercase; letter-spacing: 2px; font-size: 12px; padding: 13px 32px;
}
.btn-light-outline:hover { background: #fff; color: var(--ink); }
@media (max-width: 768px) {
    .dual-band { grid-template-columns: 1fr; }
    .dual-band .db-half { min-height: 56vh; }
}

/* ---------------- Story split (görsel + metin) ---------------- */
.story-split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.story-split .story-image { background: var(--cream) center/cover no-repeat; min-height: 70vh; }
.story-split .story-content {
    background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 7%;
}
.story-split .story-content p {
    font-family: var(--serif); font-size: 1.35rem; line-height: 1.75; margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .hero-split, .story-split { grid-template-columns: 1fr; }
    .hero-split { min-height: auto; }
    .hero-split .hero-img, .story-split .story-image { min-height: 60vh; order: -1; }
    .story-split .story-content { padding: 55px 28px; }
    .editorial-band { min-height: 60vh; }
}

/* ---------------- Butonlar ---------------- */
.btn-ink {
    background: var(--green); color: #fff;
    border: 1px solid var(--green);
    border-radius: 40px;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 12px; padding: 13px 32px; font-weight: 600;
}
.btn-ink:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-outline-ink {
    background: transparent; color: var(--ink);
    border: 1px solid var(--green); border-radius: 40px;
    text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 12px; padding: 12px 30px; font-weight: 600;
}
.btn-outline-ink:hover { background: var(--green); color: #fff; }
.btn-light-outline { border-radius: 40px; }

/* ---------------- Bölüm başlıkları ---------------- */
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .kicker {
    text-transform: uppercase; letter-spacing: 4px;
    font-size: 12px; color: var(--green); display: block; margin-bottom: 10px; font-weight: 600;
}
.section-title h2 { font-size: 2.2rem; margin: 0; }

/* ---------------- Kategori kartları ---------------- */
.cat-card {
    position: relative; display: block; overflow: hidden;
    background: var(--beige); aspect-ratio: 3/4;
}
.cat-card .cat-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25));
    color: #fff; transition: background .3s;
}
.cat-card:hover .cat-inner { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45)); }
.cat-card h3 { font-size: 2rem; color: #fff; margin: 0; }
.cat-card span { text-transform: uppercase; letter-spacing: 3px; font-size: 11px; margin-top: 8px; }
/* "Daha Fazlası" kutusu — aynı kutu stili, koyu vurgu */
.cat-card-more { background: var(--ink); }
.cat-card-more .cat-inner { background: none; }
.cat-card-more h3 { font-family: var(--sans); font-weight: 300; }
.cat-card-more:hover .cat-inner { background: rgba(255,255,255,.06); }
/* Bölümler arası ekstra boşluk */
.section-spaced { padding-top: 100px; }
@media (max-width: 768px){ .section-spaced { padding-top: 60px; } }

/* ---------------- Ürün kartları ---------------- */
.product-card { display: block; }
.product-card .pimg {
    aspect-ratio: 3/4; background: var(--cream); overflow: hidden; position: relative;
}
.product-card .pimg img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.product-card:hover .pimg img { transform: scale(1.04); }
.product-card:hover { opacity: 1; }
.product-card .pname {
    font-family: var(--serif); font-size: 1.25rem; margin: 14px 0 2px; color: var(--ink);
}
.product-card .pprice { font-size: 14px; color: var(--muted); }
/* İndirimli fiyat */
.price-old { text-decoration: line-through; color: var(--muted); opacity: .7; margin-right: 6px; }
.price-sale { color: #9a3b3b; font-weight: 500; }
.product-detail .price .price-old { font-size: 1.1rem; }
.product-detail .price .price-sale { color: #9a3b3b; }
/* Rozetler (kart üzerinde) — görsele overlay, sol üst */
.pbadges {
    position: absolute; top: 10px; left: 10px; right: 10px;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 6px; z-index: 2; pointer-events: none;
}
.pbadge {
    font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 9px; line-height: 1; display: inline-flex; align-items: center;
    gap: 4px; width: auto;
}
.pbadge-sale { background: #9a3b3b; color: #fff; }
/* Yıldız: küçük yuvarlak ikon (sağ üstte) */
.pbadge-star {
    margin-left: auto; width: 26px; height: 26px; padding: 0; border-radius: 50%;
    justify-content: center; background: rgba(255,255,255,.92); color: #1a1a1a;
    box-shadow: 0 1px 4px rgba(0,0,0,.12); font-size: 11px;
}
.badge-soldout {
    position: absolute; top: 12px; left: 12px;
    background: #fff; color: var(--ink);
    font-size: 10px; letter-spacing: 1px; padding: 5px 10px; text-transform: uppercase;
}

/* ---------------- Hikaye bandı ---------------- */
.story-band { background: var(--cream); }
.story-band .story-text p {
    font-family: var(--serif); font-size: 1.45rem; line-height: 1.7;
    color: var(--ink); margin-bottom: 1.1rem;
}

/* ---------------- Ürün detay ---------------- */
.product-gallery img { width: 100%; margin-bottom: 12px; background: var(--cream); }
.product-detail .price { font-size: 1.6rem; font-family: var(--serif); }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-options input { display: none; }
.size-options label {
    border: 1px solid var(--ink); min-width: 52px; text-align: center;
    padding: 11px 8px; cursor: pointer; text-transform: uppercase;
    font-size: 13px; letter-spacing: 1px; transition: all .2s;
}
.size-options input:checked + label { background: var(--ink); color: #fff; }
.size-options input:disabled + label { opacity: .3; cursor: not-allowed; text-decoration: line-through; }

/* ---------------- Tablo / sepet ---------------- */
.table thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--ink); color: #cfc8bd;
    padding: 70px 0 30px; margin-top: 0;
}
.site-footer a { color: #cfc8bd; }
.site-footer a:hover { color: #fff; }
/* Logo bir <img> olduğu için currentColor çalışmaz; filtre ile beyaza çeviriyoruz */
.site-footer .logo { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-paytr { height: 22px; width: auto; background: #fff; padding: 8px 12px; border-radius: 6px; box-sizing: content-box; }
.site-footer h5 {
    color: #fff; text-transform: uppercase; letter-spacing: 2px;
    font-size: 13px; font-family: var(--sans); margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; line-height: 2.1; font-size: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 45px; padding-top: 22px; font-size: 12px; color: #8a8278;
    text-align: center; letter-spacing: 1px;
}
.powered-by { text-align: center; font-size: 11px; color: #6f685e; margin-top: 14px; letter-spacing: .5px; }
.powered-by a { color: #9b9384; }
.powered-by a:hover { color: #fff; }

/* ---------------- WhatsApp yüzen buton ---------------- */
.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 1050;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 20px rgba(37,211,102,.45);
    transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); opacity: 1; color: #fff; box-shadow: 0 8px 26px rgba(37,211,102,.6); }
.header-actions .nav-icon { font-size: 19px; }

/* KDV notu */
.vat-note { font-size: 12px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }

/* Az belirgin stok bilgisi (ürün detay) */
.stock-note { font-size: 12px; letter-spacing: .5px; min-height: 16px; color: var(--muted); }
.stock-note::before { content: '•'; margin-right: 6px; }
.stock-note.in { color: #5a8a5a; }
.stock-note.low { color: #b0823a; }
.stock-note.out { color: #9a4a4a; }

/* Dil değiştirici */
.lang-switch { font-size: 12px; letter-spacing: 1px; color: var(--muted); white-space: nowrap; }
.lang-switch a { color: var(--muted); padding: 0 2px; }
.lang-switch a.active { color: var(--ink); font-weight: 600; }
.lang-switch .sep { opacity: .4; }

/* Scroll-reveal (yumuşak bölüm geçişleri) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* Tam genişlik bantlar arası yumuşak ton geçişi */
.section + .editorial-band, .editorial-band + .story-split, .story-split + .editorial-band { margin-top: 0; }
.band-divider { height: 0; }

/* İçerik (yasal/kurumsal) sayfaları */
.content-page h3 {
    font-family: var(--serif); font-size: 1.5rem; margin: 2rem 0 .8rem;
}
.content-page h4 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; font-weight: 600; }
.content-page p, .content-page li { color: #4a463f; }
.content-page ul, .content-page ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.content-page li { margin-bottom: .4rem; }
.product-desc h2, .product-desc h3 { font-family: var(--serif); }

/* ---------------- Animasyonlu nav alt çizgi ---------------- */
.navbar-nav .nav-link { position: relative; }
.navbar-nav .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 4px; height: 1px; width: 0;
    background: var(--ink); transition: width .3s ease;
}
.navbar-nav .nav-link:hover::after { width: 100%; }
.products-menu { border-radius: 0; border: 1px solid var(--line); min-width: 240px; padding: 10px 0; margin-top: 0; }
.products-menu .dropdown-item { padding: 8px 18px; font-size: 14px; }
.products-menu .dropdown-item:active { background: var(--ink); }
/* Ürünler menüsü: alt çizgi yok, ok işareti yok */
.navbar-nav .dropdown > .nav-link::after { display: none !important; }
/* Masaüstünde üzerine gelince açıl */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover > .dropdown-menu { display: block; }
    /* Menü, linkin hemen altına flush açılır; fare köprüsü için görünmez üst boşluk */
    .navbar-nav .dropdown > .dropdown-menu { margin-top: 0; padding-top: 14px; border-top: 0; }
    .navbar-nav .dropdown > .dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
}
/* Ürünler bağlantısı diğerleriyle aynı hizada (dropdown-toggle ok boşluğu kaldır) */
.navbar-nav .dropdown-toggle { display: inline-flex; align-items: center; }

/* ---------------- Hamburger (mobil) ---------------- */
.menu-toggle { background: none; }
.menu-toggle .bars { display: inline-block; width: 26px; }
.menu-toggle .bars span {
    display: block; height: 2px; background: var(--ink); border-radius: 2px;
    margin: 5px 0; transition: transform .3s, opacity .3s; width: 26px;
}
.menu-toggle:hover .bars span:nth-child(1) { width: 18px; }
.menu-toggle:hover .bars span:nth-child(3) { width: 22px; }

/* ---------------- Offcanvas mobil menü ---------------- */
.mobile-menu { background: var(--cream); width: 84% !important; max-width: 360px; }
.mobile-menu .offcanvas-header { border-bottom: 1px solid var(--line); padding: 22px 24px; }
.mobile-nav { display: flex; flex-direction: column; padding: 10px 0; }
.mobile-nav a {
    padding: 13px 4px; font-size: 17px; color: var(--ink);
    border-bottom: 1px solid rgba(0,0,0,.05); font-family: var(--serif);
}
.mobile-nav .mm-group-title {
    text-transform: uppercase; letter-spacing: 2px; font-size: 11px; color: var(--muted);
    margin-top: 22px; padding: 6px 4px; font-family: var(--sans);
}
.mobile-nav .mm-cat { font-size: 16px; }
.mobile-nav .mm-sub { font-size: 14px; color: var(--muted); font-family: var(--sans); padding-left: 16px; }
.mobile-foot { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ---------------- Toast ---------------- */
.toast-host { position: fixed; top: 80px; right: 20px; z-index: 1080; display: flex; flex-direction: column; gap: 10px; }
.toast-item {
    background: var(--ink); color: #fff; padding: 14px 20px; font-size: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.25); display: flex; align-items: center;
    transform: translateX(120%); opacity: 0; transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s;
    max-width: 340px; border-radius: 2px;
}
.toast-item.in { transform: none; opacity: 1; }
.toast-item.toast-error { background: #8a2b2b; }
.toast-item .toast-link { color: #fff; text-decoration: underline; margin-left: 10px; white-space: nowrap; font-weight: 600; }
@media (max-width: 576px) { .toast-host { left: 14px; right: 14px; top: 70px; } .toast-item { max-width: none; } }

/* ---------------- Sepet rozeti animasyonu ---------------- */
.cart-link.bump { animation: cartBump .5s ease; }
@keyframes cartBump { 0%{transform:scale(1)} 30%{transform:scale(1.35)} 60%{transform:scale(.9)} 100%{transform:scale(1)} }

/* ---------------- Mobil sticky sepet çubuğu ---------------- */
.mobile-cart-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
    background: var(--ink); color: #fff !important;
    display: none; align-items: center; justify-content: space-between;
    padding: 14px 18px; font-size: 14px; transform: translateY(100%); transition: transform .35s ease;
}
.mobile-cart-bar.show { display: flex; transform: none; }
.mobile-cart-bar .mcb-go { text-transform: uppercase; letter-spacing: 1px; font-size: 12px; margin-left: 14px; }
.mobile-cart-bar .mcb-right { display: flex; align-items: center; font-weight: 600; }
@media (min-width: 992px) { .mobile-cart-bar { display: none !important; } }
@media (max-width: 991px) { .whatsapp-float { bottom: 76px; } } /* sepet çubuğunun üstünde */

/* ---------------- Modern sayfa başlığı (alt sayfalar) ---------------- */
/* Yatay sayfa başlığı: solda başlık, sağda breadcrumb */
.page-head {
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 26px 0;
}
.page-head-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.page-head .ph-left { text-align: left; }
.page-head .ph-kicker {
    display: block; text-transform: uppercase; letter-spacing: 4px;
    font-size: 11px; color: var(--muted); margin-bottom: 4px;
}
.page-head h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0; }
.page-head .ph-desc { color: var(--muted); margin: 6px 0 0; font-size: 14px; max-width: 520px; }
.page-head .ph-crumb {
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted); white-space: nowrap; text-align: right;
}
.page-head .ph-crumb a { color: var(--muted); }
.page-head .ph-crumb a:hover { color: var(--ink); }
.page-head .ph-crumb .sep { margin: 0 7px; opacity: .5; }
.page-head .ph-crumb .current { color: var(--ink); }
@media (max-width: 600px) {
    .page-head-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .page-head .ph-crumb { text-align: left; }
}
.page-head .ph-kicker {
    text-transform: uppercase; letter-spacing: 4px; font-size: 11px; color: var(--muted);
    display: block; margin-bottom: 14px;
}
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-head .ph-desc { max-width: 620px; margin: 16px auto 0; color: var(--muted); line-height: 1.7; }
.page-head .ph-rule { width: 46px; height: 2px; background: var(--ink); margin: 22px auto 0; }

/* ---------------- Görsel animasyonları ---------------- */
.hero-img, .story-image {
    animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
    from { background-size: 108%; background-position: center 48%; }
    to   { background-size: 118%; background-position: center 52%; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-img, .story-image { animation: none; background-size: cover; }
}
.hero-text > * { opacity: 0; transform: translateY(18px); animation: fadeUp .9s ease forwards; }
.hero-text .kicker { animation-delay: .1s; }
.hero-text .logo-mark { animation-delay: .25s; }
.hero-text .lead { animation-delay: .45s; }
.hero-text .btn { animation-delay: .65s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* Yumuşak bant kenar geçişleri (sert kesimi yumuşatır) */
.editorial-band.feather::before {
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(247,244,239,0) 16%,
                      rgba(0,0,0,.06) 50%, rgba(0,0,0,.22) 78%, var(--cream) 100%);
}
.editorial-band.feather-dark::before {
    background:
      linear-gradient(180deg, var(--cream) 0%, rgba(247,244,239,0) 18%,
                      rgba(0,0,0,.25) 70%, var(--ink) 100%);
}
.story-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(247,244,239,0) 75%, var(--cream) 100%);
}
.story-split .story-image { position: relative; }

/* ---------------- Yardımcı ---------------- */
.breadcrumb-bar { padding: 18px 0; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.flash { border-radius: 0; }
.empty-state { text-align: center; padding: 90px 20px; }
.empty-state .serif { font-size: 2rem; }

@media (max-width: 768px) {
    .hero { padding: 70px 16px 80px; }
    .hero .logo-mark { height: 100px; }
    .section { padding: 55px 0; }
    .section-title h2 { font-size: 1.9rem; }
    .story-band .story-text p { font-size: 1.2rem; }
}

/* ============ Wulf Naturals — ana sayfa ============ */
.wn-hero {
    background: linear-gradient(180deg, var(--cream), #fff);
    padding: 80px 0 70px; border-bottom: 1px solid var(--line);
}
.wn-hero-logo { height: 120px; margin-bottom: 22px; }
.wn-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 12px 0 16px; line-height: 1.2; }
.wn-hero .kicker { color: var(--green); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 600; }
.wn-hero .lead { max-width: 640px; margin: 0 auto 28px; color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.btn-lg { padding: 15px 42px; font-size: 13px; }

.wn-features { padding: 50px 0; background: #fff; }
.wn-feat i { font-size: 30px; color: var(--green); margin-bottom: 12px; }
.wn-feat h4 { font-size: 1.05rem; margin: 0 0 4px; }
.wn-feat p { color: var(--muted); font-size: 13px; margin: 0; }

.wn-story { background: var(--cream); padding: 80px 0; }
.wn-story .kicker { color: var(--green); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.wn-story-text { max-width: 720px; margin: 0 auto; font-size: 1.15rem; line-height: 1.9; color: #4a534b; }

.wn-markets { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.wn-markets span {
    border: 1px solid var(--line); border-radius: 40px; padding: 12px 28px;
    font-weight: 600; color: var(--ink); background: #fff;
}

/* ============ Wulf — hero banner + promo + pazaryeri ============ */
.wn-hero-banner {
    position: relative; background: #2E3031 center/cover no-repeat;
    min-height: 72vh; display: flex; align-items: center;
}
.wn-hero-overlay {
    position: relative; width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.30));
    padding: 70px 0; text-align: center;
}
.wn-hero-banner .container-narrow { position: relative; z-index: 1; }
.wn-hero-logo { height: 78px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.wn-hero-banner h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; margin: 0 0 14px; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.wn-hero-banner p { color: #f0f0f0; font-size: 1.15rem; margin: 0 auto 26px; max-width: 600px; }
@media (max-width:768px){ .wn-hero-banner{ min-height: 64vh; } }

.wn-promo {
    background: var(--green); color: #fff; text-align: center; padding: 46px 0;
}
.wn-promo-tag { text-transform: uppercase; letter-spacing: 4px; font-size: 12px; opacity: .9; }
.wn-promo h2 { color: #fff; margin: 8px 0; }
.wn-promo-pct { font-size: 2.6rem; font-weight: 700; }
.wn-promo p { letter-spacing: 1px; margin-bottom: 18px; opacity: .95; }

.wn-markets { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: stretch; }
.wn-market { display: block; width: 260px; max-width: 80vw; padding: 8px; border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.wn-market:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.08); opacity: 1; }
.wn-market img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ============ Wulf — orijinal tarz hero (iki tonlu yeşil) ============ */
.wn-hero2 { display: grid; grid-template-columns: 0.85fr 1.15fr; background: #0a332d; overflow: hidden; }
.wn-hero2-left { background: #0a332d center/cover no-repeat; min-height: 520px; }
.wn-hero2-right { background: #0a332d; display: flex; align-items: center; padding: 40px 4%; }
.wn-hero2-inner { display: flex; align-items: center; gap: 24px; width: 100%; justify-content: space-between; }
.wn-hero2-text { color: #f3efe4; text-align: center; flex: 1 1 auto; }
.wn-hero2-text h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(2rem, 3.8vw, 3.4rem); color: #f3efe4; margin: 0; letter-spacing: 1px; line-height: 1; }
.wn-hero2-sub { font-family: 'Fredoka', sans-serif; font-weight: 600; color: #bfe0c8; letter-spacing: 2px; font-size: clamp(1rem,1.6vw,1.3rem); margin: 8px 0 14px; }
.wn-hero2-text p { color: #dfe9df; margin: 0 auto 22px; max-width: 360px; }
.wn-hero2-pouches { max-height: 360px; width: auto; flex-shrink: 0; filter: drop-shadow(0 12px 24px rgba(0,0,0,.3)); }
.btn-cream { background: #f3efe4; color: #0e3a33; border: 1px solid #f3efe4; border-radius: 40px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; padding: 13px 34px; font-weight: 700; }
.btn-cream:hover { background: #fff; color: #0e3a33; }
@media (max-width: 900px) {
    .wn-hero2 { grid-template-columns: 1fr; }
    .wn-hero2-left { min-height: 280px; }
    .wn-hero2-inner { flex-direction: column; gap: 18px; }
    .wn-hero2-pouches { max-height: 220px; }
}

/* Ürün kartı — yuvarlak isim rozeti (orijinal tarz) */
.pbadge-circle {
    position: absolute; top: 8px; right: 8px; z-index: 3;
    width: 74px; height: 74px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 10px; line-height: 1.1;
    color: #fff; padding: 6px; text-transform: uppercase; letter-spacing: .3px;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.pbadge-circle.green { background: #2f6b4f; }
.pbadge-circle.red   { background: #8a3b32; }
@media (max-width: 600px){ .pbadge-circle { width: 58px; height: 58px; font-size: 8.5px; } }

/* Footer dalgalı üst kenar */
.site-footer { position: relative; }

/* ============ Wulf — ana sayfa rötuşları ============ */
/* Bölüm başlıkları daha küçük */
.section-title h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.section-title .kicker { font-size: 11px; letter-spacing: 3px; }

/* Öne çıkan ürünler — kırık beyaz arka plan */
.wn-products { background: #f6f6f1; }

/* Ürün kartı görsel alanı — tam ürün görünür, ferah */
.product-card .pimg { background: #ffffff; border: 1px solid #eef1ec; border-radius: 14px; }
.product-card .pimg img { object-fit: contain; padding: 16px; transition: transform .5s ease; }
.product-card:hover .pimg img { transform: scale(1.05); }
.product-card .pname { font-size: 1rem; font-weight: 600; margin: 12px 0 2px; }
.product-card .pprice { font-size: .95rem; color: var(--ink); }

/* Pazaryeri bölümü — beyaz, solda resim + sağda yanıp sönen yazı */
.wn-markets-sec { background: #fff; padding: 70px 0; }
.wn-markets-img { width: 100%; max-height: 440px; object-fit: cover; border-radius: 20px; box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.wn-markets-kicker { text-transform: uppercase; letter-spacing: 4px; font-size: 11px; color: var(--green); font-weight: 600; }
.wn-markets-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 8px 0 26px; }
.wn-rotate { color: var(--green); display: inline-block; transition: opacity .3s ease; min-width: 4ch; }
.wn-markets-logos { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.wn-markets-logos .wn-market { width: auto; padding: 8px 12px; }
.wn-markets-logos .wn-market img { width: auto; height: 56px; }
@media (max-width: 991px){ .wn-markets-img { max-height: 320px; margin-bottom: 10px; } }

/* ============ Açık (light) footer + orijinal logo ============ */
.site-footer { background: #f4f7f1; color: #54605a; padding: 60px 0 26px; }
.site-footer .logo { filter: none; height: 54px; margin-bottom: 16px; }
.site-footer a { color: #54605a; }
.site-footer a:hover { color: var(--green); }
.site-footer h5 { color: var(--ink); }
.site-footer .footer-bottom { border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .powered-by { color: var(--muted); margin-top: 10px; }
.site-footer .powered-by a { color: var(--green); }
.site-footer .footer-paytr { background: #fff; }

/* ============ Alt sayfa içerikleri (content-page) daha estetik ============ */
.content-page { color: #444c46; }
.content-page h3 { color: var(--green); font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.content-page h4 { font-size: 1.05rem; margin: 1.1rem 0 .3rem; color: var(--ink); }
.content-page p, .content-page li { line-height: 1.85; }
.content-page ul, .content-page ol { padding-left: 1.1rem; }

/* SSS açılır-kapanır (details/summary) */
.content-page details {
    border: 1px solid var(--line); border-radius: 12px; margin: 10px 0; background: #fff; overflow: hidden;
}
.content-page details > summary {
    list-style: none; cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.content-page details > summary::-webkit-details-marker { display: none; }
.content-page details > summary::after { content: '+'; color: var(--green); font-size: 22px; font-weight: 400; line-height: 1; }
.content-page details[open] > summary::after { content: '−'; }
.content-page details > summary:hover { color: var(--green); }
.content-page details .faq-body { padding: 0 20px 16px; color: #54605a; line-height: 1.8; }
.content-page .faq-group { font-family: 'Fredoka', sans-serif; color: var(--green); margin: 28px 0 10px; font-size: 1.2rem; }

/* ============ Ürün detay galeri (ana + küçük kutular) ============ */
.pg2-main { background: #fff; border: 1px solid #eef1ec; border-radius: 18px; overflow: hidden; }
.pg2-main img { width: 100%; aspect-ratio: 1/1; object-fit: contain; padding: 24px; transition: opacity .15s ease; display: block; }
.pg2-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.pg2-thumb { width: 74px; height: 74px; padding: 4px; border: 1px solid #e2ebe1; border-radius: 12px; background: #fff; cursor: pointer; overflow: hidden; transition: border-color .2s; }
.pg2-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pg2-thumb.active { border-color: var(--green); border-width: 2px; }
.pg2-thumb:hover { border-color: var(--green); }

/* ============ Ürün açıklama özellik satırları ============ */
.product-desc .desc-feature { margin: 14px 0; padding-left: 2px; }
.product-desc .desc-feature strong { color: var(--ink); }
.product-desc p { margin-bottom: 12px; }

/* ============ Hikayemiz — editöryel hikaye düzeni ============ */
.story-article { max-width: 760px; margin: 0 auto; font-size: 1.1rem; line-height: 1.95; color: #3c443e; }
.story-article .story-lead { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink); font-weight: 600; margin-bottom: 1.4rem; }
.story-article p { margin-bottom: 1.3rem; }
.story-article .story-quote {
    border-left: 4px solid var(--green); margin: 2.2rem 0; padding: .4rem 0 .4rem 1.4rem;
    font-family: 'Fredoka', sans-serif; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--green-dark); line-height: 1.4;
}

/* ============ Üst menü: daha küçük font + Mağaza dropdown ============ */
.nav-link { font-size: 12px !important; letter-spacing: 1px !important; }
.navbar-nav .nav-item { margin-right: 2px; }
.nav-shop .dropdown-menu {
    border: 1px solid var(--line); border-radius: 12px; padding: 8px; margin-top: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10); min-width: 220px;
}
.nav-shop .dropdown-item {
    border-radius: 8px; font-size: 13px; padding: 8px 12px; text-transform: none; letter-spacing: .2px; color: var(--ink);
}
.nav-shop .dropdown-item:hover, .nav-shop .dropdown-item:focus { background: var(--cream); color: var(--green-dark); }
.nav-shop .dropdown-toggle::after { vertical-align: middle; margin-left: 5px; border-top-color: var(--muted); }
.mobile-subnav { font-size: .92em; color: var(--muted) !important; padding-left: 14px !important; }

/* ============ Galeri ok butonları ============ */
.pg2-main { position: relative; }
.pg2-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.92); color: var(--ink);
    box-shadow: 0 4px 14px rgba(0,0,0,.12); cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: background .2s, color .2s, transform .2s;
}
.pg2-nav:hover { background: var(--green); color: #fff; }
.pg2-prev { left: 12px; } .pg2-next { right: 12px; }
.pg2-main:hover .pg2-nav { transform: translateY(-50%) scale(1.05); }
@media (max-width: 575px){ .pg2-nav { width: 36px; height: 36px; } }

/* ============ Sipariş Takip — estetik ============ */
.track-wrap { max-width: 560px; margin: 0 auto; }
.track-card {
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: 40px 36px; box-shadow: 0 14px 40px rgba(0,0,0,.06); text-align: center;
}
.track-card .track-icon {
    width: 72px; height: 72px; border-radius: 50%; background: var(--cream);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
    color: var(--green); font-size: 30px;
}
.track-card h3 { font-family: 'Fredoka', sans-serif; margin-bottom: 6px; }
.track-card .track-sub { color: var(--muted); margin-bottom: 26px; font-size: .95rem; }
.track-card .form-label { text-align: left; display: block; }
.track-card .form-control { border-radius: 12px; padding: 12px 14px; }
.track-card .btn { border-radius: 40px; }

/* ============ Ana sayfa promo kupon kodu ============ */
.wn-promo-code { margin-top: -6px; margin-bottom: 18px; opacity: .95; font-size: 1.02rem; }
.wn-promo-code strong { background: rgba(255,255,255,.22); padding: 2px 10px; border-radius: 6px; letter-spacing: 1px; }

/* ============ Sepet kupon alanı ============ */
.coupon-form .form-control { border-radius: 10px 0 0 10px; }
.coupon-form .btn { border-radius: 0 10px 10px 0; }
.coupon-applied { background: #eaf6ee; border: 1px dashed var(--green); border-radius: 10px; padding: 10px 12px; font-size: .92rem; }

/* ============ Hikayemiz — "Nasıl Başladı?" mockup düzeni ============ */
.story-howto { align-items: center; position: relative; }
.story-arrow { position: absolute; bottom: 26px; left: 46%; width: 150px; height: auto; pointer-events: none; z-index: 1; }
@media (max-width: 991px){ .story-arrow { display: none; } }
.story-howto h2 { font-family: 'Fredoka', sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.2rem; }
.story-howto p { color: #3c443e; line-height: 1.9; margin-bottom: 1.1rem; }
.story-howto .dogs-strip { max-width: 380px; width: 100%; margin-top: 18px; }
.story-photo { position: relative; }
.story-photo img.main { width: 100%; border-radius: 26px; box-shadow: 0 18px 50px rgba(0,0,0,.14); object-fit: cover; }
@media (max-width: 991px){ .story-photo { margin-top: 28px; } }

/* ============ Bekleyen ödemeler (sepet) ============ */
.pending-pay { background:#fff7ed; border:1px solid #f3d9a8; border-radius:14px; padding:18px 20px; }
.pending-pay h5 { color:#9a6a00; font-family:'Fredoka',sans-serif; }
.pending-item { background:#fff; border:1px solid #eee2c8; border-radius:10px; padding:12px 14px; margin-top:10px; }

/* ============ Topluluk medya gönderme (paylas) ============ */
.share-wrap { max-width: 720px; margin: 0 auto; }
.share-intro .share-emoji { font-size: 42px; }
.share-intro h2 { font-family:'Fredoka',sans-serif; color:var(--green-dark); margin:10px 0 8px; }
.share-intro p { color:var(--muted); max-width:560px; margin:0 auto 24px; line-height:1.7; }
.share-card { position:relative; background:#fff; border:1px solid var(--line); border-radius:18px; padding:26px; box-shadow:0 12px 36px rgba(0,0,0,.06); }
.share-card .form-control { border-radius:10px; }
.dropzone { display:block; margin-top:18px; border:2px dashed #bcdcc6; border-radius:16px; background:var(--cream);
  text-align:center; padding:34px 20px; cursor:pointer; transition:border-color .2s, background .2s; }
.dropzone:hover, .dropzone.drag { border-color:var(--green); background:#eef7f0; }
.dropzone .fa-cloud-arrow-up { font-size:38px; color:var(--green); }
.dz-title { font-family:'Fredoka',sans-serif; color:var(--ink); margin-top:10px; font-size:1.05rem; }
.dz-title span { color:var(--green-dark); text-decoration:underline; }
.dz-hint { color:var(--muted); font-size:12.5px; margin-top:6px; line-height:1.6; }
.share-list { margin-top:14px; display:flex; flex-direction:column; gap:8px; }
.share-item { display:flex; align-items:center; gap:10px; background:var(--cream); border:1px solid var(--line);
  border-radius:10px; padding:9px 12px; font-size:13px; }
.share-item .nm { flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.share-item .sz { color:var(--muted); font-size:12px; white-space:nowrap; }
.share-item.over { border-color:#e3b7b1; background:#fbecea; color:#b0392c; }
.share-item.over .sz { color:#b0392c; }
