/* ============================================================
   Arden Tasarım — Ön yüz stili
   Tema: Sıcak ahşap (krem zemin, ceviz vurgu, antrasit metin)
   ============================================================ */

:root {
    --bg: #F8F4EE;
    --surface: #FFFFFF;
    --sand: #F1EAE0;
    --sand-2: #E9DFD1;
    --ink: #2A2522;
    --ink-2: #4E4640;
    --muted: #857A70;
    --line: #E6DCCF;
    --walnut: #7B5234;
    --walnut-dark: #5C3C25;
    --walnut-deep: #3B2618;
    --oak: #C9A073;
    --oak-soft: #F4E8D9;
    --wa: #1FAF5A;
    --success: #3F7D58;
    --danger: #B3261E;

    --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(59, 38, 24, .06);
    --shadow: 0 10px 30px -12px rgba(59, 38, 24, .18);
    --shadow-lg: 0 24px 60px -20px rgba(59, 38, 24, .28);
    --ease: cubic-bezier(.2, .7, .2, 1);

    --bs-body-font-family: var(--font-sans);
    --bs-body-color: var(--ink);
    --bs-body-bg: var(--bg);
    --bs-link-color: var(--walnut);
    --bs-link-hover-color: var(--walnut-dark);
    --bs-border-color: var(--line);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 15.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: var(--walnut); text-decoration: none; transition: color .2s; }
a:hover { color: var(--walnut-dark); }
img { max-width: 100%; }
h1, h2, h3, h4, h5 { color: var(--ink); letter-spacing: -.01em; }
::selection { background: var(--oak); color: #fff; }
:focus-visible { outline: 2px solid var(--walnut); outline-offset: 3px; border-radius: 4px; }

.skip-link { position: absolute; left: 1rem; top: 1rem; z-index: 2000; background: var(--ink); color: #fff; padding: .5rem 1rem; border-radius: 8px; }

/* ============ Butonlar ============ */
.btn {
    --bs-btn-font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    border-radius: 999px; padding: .7rem 1.35rem; font-size: .92rem; letter-spacing: .01em;
    transition: transform .2s var(--ease), background-color .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn-lg { padding: .9rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: .4rem .9rem; font-size: .82rem; }
.btn:active { transform: translateY(1px); }
.btn i { font-size: .95em; }

.btn-wood { background: var(--walnut); color: #fff; border: 1px solid var(--walnut); box-shadow: 0 8px 20px -10px rgba(123, 82, 52, .8); }
.btn-wood:hover, .btn-wood:focus { background: var(--walnut-dark); border-color: var(--walnut-dark); color: #fff; }
.btn-wood:disabled { background: var(--walnut); color: #fff; opacity: .75; }
.btn-oak { background: var(--oak); color: var(--walnut-deep); border: 1px solid var(--oak); }
.btn-oak:hover { background: #D9B58C; border-color: #D9B58C; color: var(--walnut-deep); }
.btn-outline-wood { background: transparent; color: var(--walnut); border: 1.5px solid var(--walnut); }
.btn-outline-wood:hover { background: var(--walnut); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; border: 1px solid var(--wa); }
.btn-whatsapp:hover { background: #178F49; border-color: #178F49; color: #fff; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--walnut); font-size: .92rem; }
.link-arrow i { transition: transform .25s var(--ease); font-size: .8em; }
.link-arrow:hover i.fa-arrow-right { transform: translateX(4px); }

.eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: var(--walnut); margin-bottom: .75rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7; }
.eyebrow-light { color: var(--oak); }

em { font-style: italic; }
h2 em, h1 em, .display-title em { font-family: var(--font-serif); color: var(--walnut); font-weight: 500; }

/* ============ Topbar ============ */
.topbar { background: var(--walnut-deep); color: #E9DCCB; font-size: .8rem; padding: .45rem 0; }
.topbar a, .topbar span { color: #E9DCCB; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-info i { color: var(--oak); }
.topbar-social { display: flex; align-items: center; gap: .9rem; }
.topbar-wa { background: rgba(255,255,255,.08); padding: .15rem .7rem; border-radius: 999px; }

/* ============ Header ============ */
.site-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(248, 244, 238, .92);
    backdrop-filter: saturate(1.4) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s, border-color .25s, background-color .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px -18px rgba(59,38,24,.35); background: rgba(255, 253, 249, .96); }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { width: 42px; height: 42px; color: var(--walnut); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.brand-text small { font-size: .62rem; font-weight: 700; letter-spacing: .42em; text-transform: uppercase; color: var(--walnut); margin-top: .3rem; }
.brand-logo { display: block; height: 50px; width: auto; max-width: 100%; }
.brand-footer .brand-logo { height: 58px; }
.mobile-menu .brand-logo { height: 40px; }

.main-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .65rem 1rem; border-radius: 999px;
    color: var(--ink-2); font-weight: 600; font-size: .94rem;
}
.main-nav > ul > li > a i { font-size: .65rem; transition: transform .25s; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--walnut); background: var(--oak-soft); }

.has-mega { position: static !important; }
.mega-menu {
    position: absolute; left: 50%; top: calc(100% - 6px);
    transform: translate(-50%, 8px);
    width: min(880px, calc(100vw - 2rem));
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 1.25rem;
    opacity: 0; visibility: hidden; transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.mega-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -24px; height: 24px; }
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-mega:hover > a i { transform: rotate(180deg); }
.site-header .container { position: relative; }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; }
.mega-item { display: flex; align-items: center; gap: .8rem; padding: .65rem .75rem; border-radius: 12px; color: var(--ink); }
.mega-item:hover { background: var(--bg); color: var(--ink); }
.mega-item strong { display: block; font-size: .9rem; font-weight: 700; line-height: 1.3; }
.mega-item small { color: var(--muted); font-size: .76rem; }
.mega-icon {
    width: 42px; height: 42px; flex: none; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--oak-soft); color: var(--walnut);
}
.mega-icon .f-icon { width: 26px; height: 26px; }
.mega-item:hover .mega-icon { background: var(--walnut); color: #fff; }
.mega-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1rem; padding: .9rem 1rem 0; border-top: 1px dashed var(--line); font-size: .86rem; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
    background: var(--surface); color: var(--ink); display: inline-flex; align-items: center; justify-content: center;
    transition: background-color .2s, color .2s, border-color .2s;
}
.icon-btn:hover { background: var(--walnut); color: #fff; border-color: var(--walnut); }

.header-search { border-top: 1px solid var(--line); background: var(--surface); }
.header-search .search-form { margin: .9rem 0; }

.search-form { position: relative; display: flex; align-items: center; gap: .5rem; background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px; padding: .3rem .3rem .3rem 1.1rem; }
.search-form:focus-within { border-color: var(--walnut); box-shadow: 0 0 0 4px rgba(123,82,52,.12); }
.search-form > i { color: var(--muted); }
.search-form input { flex: 1; border: 0; outline: 0; background: transparent; padding: .55rem .2rem; font-size: .95rem; min-width: 0; }
.search-form-sm { padding: .15rem .8rem; }
.search-form-lg { max-width: 720px; }
.search-form-lg input { font-size: 1.05rem; }

/* Mobil menü */
.mobile-menu { background: var(--bg); width: min(360px, 90vw) !important; }
.mobile-menu .offcanvas-header { border-bottom: 1px solid var(--line); }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav > a { padding: .8rem .25rem; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-cats { display: grid; gap: .15rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.mobile-cats a { display: flex; align-items: center; gap: .7rem; padding: .35rem .25rem; color: var(--ink-2); font-size: .9rem; font-weight: 600; }
.mobile-cats .mega-icon { width: 34px; height: 34px; border-radius: 10px; }
.mobile-cats .mega-icon .f-icon { width: 22px; height: 22px; }

.flash-wrap { margin-top: 1rem; }
.alert { border-radius: var(--radius); border: 0; }
.alert-soft-success { background: #E8F3EC; color: #24553A; }
.alert-soft-danger { background: #FBEAE8; color: #8A1F18; }

/* ============ Genel bölüm ============ */
.section { padding: 5rem 0; }
.section-sand { background: var(--sand); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.section-head h2, .display-title { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.7rem); font-weight: 700; line-height: 1.15; margin-bottom: .75rem; }
.section-head p { color: var(--muted); max-width: 600px; margin: 0; }
.section-head-center { justify-content: center; text-align: center; }
.section-head-center p { margin: 0 auto; }
.section-head-center .eyebrow::after { content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7; }
.lead-muted { color: var(--ink-2); font-size: 1.05rem; }

.f-icon { width: 100%; height: 100%; display: block; }

/* ============ Hero ============ */
.hero { position: relative; background: var(--walnut-deep); overflow: hidden; }
.hero .carousel-item { min-height: clamp(520px, 72vh, 700px); position: relative; }
.hero .carousel-item:not(.has-image) {
    background:
        radial-gradient(1200px 500px at 85% 20%, rgba(201,160,115,.28), transparent 60%),
        repeating-linear-gradient(100deg, rgba(255,255,255,.025) 0 2px, transparent 2px 22px),
        linear-gradient(120deg, #3B2618 0%, #5C3C25 55%, #7B5234 100%);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,27,17,.86) 0%, rgba(43,27,17,.55) 50%, rgba(43,27,17,.15) 100%); }
.carousel-item:not(.has-image) .hero-overlay { background: none; }
.hero-container { position: relative; z-index: 2; display: flex; align-items: center; min-height: inherit; padding-top: 4rem; padding-bottom: 5rem; }
.hero-content { max-width: 620px; color: var(--hero-text, #fff); }
.hero-title { font-family: var(--font-serif); font-weight: 600; color: inherit; font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4rem); line-height: 1.08; margin-bottom: 1.1rem; letter-spacing: -.015em; }
.hero-subtitle { font-size: clamp(1rem, .95rem + .3vw, 1.2rem); opacity: .88; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero .carousel-item.active .hero-content > * { animation: rise .8s var(--ease) both; }
.hero .carousel-item.active .hero-content > *:nth-child(2) { animation-delay: .08s; }
.hero .carousel-item.active .hero-content > *:nth-child(3) { animation-delay: .16s; }
.hero .carousel-item.active .hero-content > *:nth-child(4) { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 1.6rem; transform: translateX(-50%); display: flex; gap: .5rem; width: min(1320px, 100%); padding: 0 calc(var(--bs-gutter-x, 1.5rem) * .5 + 12px); }
.hero-dots button { width: 34px; height: 4px; border: 0; border-radius: 4px; background: rgba(255,255,255,.35); padding: 0; transition: width .3s, background-color .3s; }
.hero-dots button.active { width: 56px; background: var(--oak); }

.hero-aside-wrap { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.hero-aside {
    pointer-events: auto; width: 330px;
    background: rgba(255, 253, 249, .96); border-radius: var(--radius-lg); padding: 1.1rem;
    box-shadow: var(--shadow-lg);
}
.hero-aside-head { display: flex; justify-content: space-between; align-items: center; padding: .25rem .5rem .75rem; font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero-aside-head a { letter-spacing: 0; text-transform: none; font-size: .85rem; }
.hero-aside-item { display: flex; align-items: center; gap: .8rem; padding: .55rem .5rem; border-radius: 12px; color: var(--ink); font-weight: 700; font-size: .92rem; }
.hero-aside-item + .hero-aside-item { border-top: 1px solid var(--line); }
.hero-aside-item i { color: var(--muted); font-size: .75rem; transition: transform .2s; }
.hero-aside-item:hover { background: var(--bg); color: var(--walnut); }
.hero-aside-item:hover i { transform: translateX(3px); color: var(--walnut); }

/* ============ Avantaj bandı ============ */
.usp-band { background: var(--surface); border-bottom: 1px solid var(--line); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-item { display: flex; align-items: center; gap: 1rem; padding: 1.6rem 1.25rem; }
.usp-item + .usp-item { border-left: 1px solid var(--line); }
.usp-item > i { width: 48px; height: 48px; border-radius: 50%; background: var(--oak-soft); color: var(--walnut); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; flex: none; }
.usp-item strong { display: block; font-size: .95rem; }
.usp-item span { color: var(--muted); font-size: .84rem; }

/* ============ Kategori kartları ============ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cat-card {
    position: relative; display: flex; flex-direction: column; overflow: hidden;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    color: var(--ink); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; color: var(--ink); }
.cat-media {
    position: relative; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, #fff 0, transparent 60%),
        repeating-linear-gradient(90deg, rgba(123,82,52,.045) 0 1px, transparent 1px 14px),
        var(--sand);
    color: var(--walnut); overflow: hidden;
}
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-icon { width: 44%; height: auto; transition: transform .5s var(--ease); stroke-width: 1.5; }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-2deg); }
.cat-body { display: flex; flex-direction: column; gap: .15rem; padding: 1rem 3.6rem 1.1rem 1.15rem; }
.cat-name { font-weight: 800; font-size: 1rem; line-height: 1.3; }
.cat-count { color: var(--muted); font-size: .84rem; }
.cat-arrow {
    position: absolute; right: 1rem; bottom: 1.05rem; width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center; font-size: .8rem;
    border: 1px solid var(--line); color: var(--walnut); transition: all .3s var(--ease);
}
.cat-card:hover .cat-arrow { background: var(--walnut); border-color: var(--walnut); color: #fff; transform: rotate(-45deg); }
.cat-card-cta {
    justify-content: flex-end; min-height: 100%;
    background: linear-gradient(150deg, var(--walnut) 0%, var(--walnut-deep) 100%);
    border-color: transparent; color: #fff;
}
.cat-card-cta .cat-body { padding: 1.5rem 4rem 1.5rem 1.4rem; gap: .35rem; }
.cat-card-cta .cat-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: #fff; }
.cat-card-cta .cat-count { color: #E9DCCB; }
.cat-card-cta .cat-arrow { border-color: rgba(255,255,255,.35); color: #fff; bottom: 1.5rem; }
.cat-card-cta:hover { color: #fff; }
.cat-card-cta:hover .cat-arrow { background: var(--oak); border-color: var(--oak); color: var(--walnut-deep); }

/* ============ Ürün kartı ============ */
.product-card {
    height: 100%; display: flex; flex-direction: column;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.pc-media { position: relative; display: block; aspect-ratio: 1 / 1; background: var(--sand); overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.05); }
.pc-placeholder {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: var(--walnut);
    background:
        radial-gradient(circle at 70% 25%, rgba(255,255,255,.9) 0, transparent 55%),
        repeating-linear-gradient(0deg, rgba(123,82,52,.05) 0 1px, transparent 1px 16px),
        linear-gradient(160deg, #F4ECE1, #E8DCCB);
}
.pc-placeholder .f-icon { width: 42%; height: auto; stroke-width: 1.4; opacity: .9; transition: transform .5s var(--ease); }
.product-card:hover .pc-placeholder .f-icon { transform: scale(1.07); }
.pc-placeholder.is-large .f-icon { width: 38%; stroke-width: 1.1; }
.pc-badges { position: absolute; top: .75rem; left: .75rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.badge-soft { background: rgba(255,255,255,.92); color: var(--walnut-dark); font-size: .7rem; font-weight: 800; letter-spacing: .04em; padding: .3rem .6rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.badge-soft.is-deal { background: var(--walnut); color: #fff; }
.pc-body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.1rem 1.1rem; }
.pc-cat { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.pc-cat:hover { color: var(--walnut); }
.pc-title { font-size: 1rem; font-weight: 800; line-height: 1.35; margin: 0 0 .35rem; }
.pc-title a { color: var(--ink); }
.pc-title a:hover { color: var(--walnut); }
.pc-meta { font-size: .8rem; color: var(--muted); display: flex; gap: .4rem; align-items: center; margin-bottom: .2rem; }
.pc-meta i { font-size: .72rem; color: var(--oak); }
.pc-body::after { content: ""; flex: 1 0 .6rem; order: 1; }
.pc-foot { order: 2; padding-top: .9rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; border-top: 1px dashed var(--line); }
.pc-price { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.pc-price del { color: var(--muted); font-size: .8rem; }
.pc-price strong { font-size: 1.12rem; font-weight: 800; color: var(--walnut-dark); white-space: nowrap; }
.pc-price strong.is-ask { font-size: .88rem; color: var(--ink-2); }
.pc-price .pn-suffix { font-size: .74rem; font-weight: 600; color: var(--muted); }
.pc-price small { font-size: .74rem; color: var(--muted); font-weight: 600; }
.pc-cta { flex: none; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; width: 40px; height: 40px; font-size: .8rem; font-weight: 800; color: var(--walnut); border-radius: 999px; background: var(--oak-soft); white-space: nowrap; transition: background-color .2s, color .2s, transform .25s var(--ease); }
.pc-cta-text { display: none; }
.pc-cta i { font-size: .8rem; }
.product-card:hover .pc-cta { background: var(--walnut); color: #fff; }
.pc-cta:hover { background: var(--walnut); color: #fff; }

/* ============ Adımlar ============ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: s; }
.steps li { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem 1.6rem; }
.steps li > i { width: 54px; height: 54px; border-radius: 16px; background: var(--oak-soft); color: var(--walnut); display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem; }
.steps h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: .35rem; }
.steps p { color: var(--muted); font-size: .9rem; margin: 0; }
.step-no { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-serif); font-size: 2.2rem; line-height: 1; color: var(--sand-2); font-weight: 600; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -1.1rem; width: 1.1rem; border-top: 1.5px dashed var(--oak); }

/* ============ Promo ============ */
.promo {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    display: grid; grid-template-columns: 1.3fr 1fr; align-items: center;
    background:
        radial-gradient(700px 300px at 90% 10%, rgba(201,160,115,.3), transparent 60%),
        repeating-linear-gradient(100deg, rgba(255,255,255,.03) 0 2px, transparent 2px 20px),
        linear-gradient(120deg, var(--walnut-deep), var(--walnut));
    color: #fff;
}
.promo-text { padding: clamp(2rem, 1rem + 4vw, 4rem); }
.promo h2 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); margin-bottom: .75rem; }
.promo p { color: #EADDCB; max-width: 520px; margin-bottom: 1.6rem; }
.promo-art { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 2.5rem 3rem 2.5rem 0; }
.promo-tile { flex: 1; max-width: 150px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--oak); padding: 22px; }
.promo-tile.is-main { max-width: 190px; background: rgba(255,255,255,.1); color: #F4E8D9; transform: translateY(-10px); }
.promo-tile .f-icon { stroke-width: 1.4; }

/* ============ Neden biz ============ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-grid-4 { grid-template-columns: repeat(4, 1fr); }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.why-card > i { color: var(--walnut); font-size: 1.35rem; margin-bottom: .9rem; display: block; }
.why-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: .35rem; }
.why-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ============ İstatistik ============ */
.stats-band { background: var(--walnut-deep); color: #fff; padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; text-align: center; }
.stat i { color: var(--oak); font-size: 1.4rem; margin-bottom: .5rem; display: block; }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2.4rem; line-height: 1.1; }
.stat span { color: #D9C8B3; font-size: .9rem; }

/* ============ Yorumlar ============ */
.testimonial { height: 100%; margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; }
.testimonial .rating { color: var(--oak); font-size: .85rem; margin-bottom: .9rem; display: flex; gap: .15rem; }
.testimonial blockquote { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.6; color: var(--ink); margin: 0 0 1.4rem; }
.testimonial figcaption { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.testimonial figcaption strong { display: block; font-size: .95rem; }
.testimonial figcaption small { color: var(--muted); }
.avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.avatar-initial { display: inline-flex; align-items: center; justify-content: center; background: var(--oak-soft); color: var(--walnut); font-weight: 800; }

/* ============ Blog kartı ============ */
.blog-card { height: 100%; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-media { display: block; aspect-ratio: 16 / 10; background: var(--sand); overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--oak); font-size: 2.6rem; background: linear-gradient(160deg, #F4ECE1, #E8DCCB); }
.blog-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-body time { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; }
.blog-body h3 { font-size: 1.12rem; font-weight: 800; line-height: 1.4; margin: .4rem 0 .5rem; }
.blog-body h3 a { color: var(--ink); }
.blog-body h3 a:hover { color: var(--walnut); }
.blog-body p { color: var(--muted); font-size: .92rem; }
.blog-body .link-arrow { margin-top: auto; }

/* ============ Sayfa başlığı ============ */
.page-hero { position: relative; background: var(--sand); padding: 2.2rem 0 2.6rem; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(100deg, rgba(123,82,52,.035) 0 1px, transparent 1px 18px); pointer-events: none; }
.page-hero.has-image { background: var(--walnut-deep); color: #fff; padding: 3rem 0 3.4rem; }
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero.has-image h1, .page-hero.has-image p, .page-hero.has-image .breadcrumb-item, .page-hero.has-image .breadcrumb-item a { color: #fff; }
.page-hero-row { display: flex; align-items: center; gap: 1.2rem; }
.page-hero h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem); margin: .2rem 0 .35rem; }
.page-hero p { color: var(--ink-2); max-width: 680px; margin: 0; }
.page-hero-icon { width: 78px; height: 78px; flex: none; border-radius: 22px; background: var(--surface); color: var(--walnut); padding: 14px; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.breadcrumb { margin: 0; font-size: .84rem; --bs-breadcrumb-divider-color: var(--muted); --bs-breadcrumb-item-active-color: var(--muted); }
.breadcrumb-item a { color: var(--ink-2); font-weight: 600; }
.breadcrumb-item a:hover { color: var(--walnut); }
.crumb-bar { padding-top: 1.2rem; }

/* ============ Listeleme araç çubuğu ============ */
.listing-toolbar { margin-bottom: 1.6rem; }
.chip-scroll { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .6rem; scrollbar-width: thin; scrollbar-color: var(--sand-2) transparent; -webkit-overflow-scrolling: touch; -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent); mask-image: linear-gradient(90deg, #000 92%, transparent); }
.chip-wrap { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { flex: none; display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .95rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); font-weight: 700; font-size: .85rem; white-space: nowrap; transition: all .2s; }
.chip span { font-size: .72rem; color: var(--muted); background: var(--bg); padding: .05rem .45rem; border-radius: 999px; }
.chip:hover { border-color: var(--walnut); color: var(--walnut); }
.chip.active { background: var(--walnut); border-color: var(--walnut); color: #fff; }
.chip.active span { background: rgba(255,255,255,.18); color: #fff; }
.toolbar-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: .8rem; }
.result-count { color: var(--muted); font-size: .9rem; }
.result-count strong { color: var(--ink); }
.sort-form { display: flex; align-items: center; gap: .5rem; color: var(--muted); }
.sort-form .form-select { border-radius: 999px; min-width: 220px; border-color: var(--line); font-weight: 600; }

.empty-state { text-align: center; background: var(--surface); border: 1px dashed var(--sand-2); border-radius: var(--radius-lg); padding: 3rem 1.5rem; color: var(--muted); }
.empty-state .f-icon { width: 90px; height: 90px; margin: 0 auto 1rem; color: var(--oak); }
.empty-state > i { color: var(--oak); margin-bottom: 1rem; }
.empty-state h2 { font-size: 1.3rem; font-weight: 800; }

.pager { display: flex; justify-content: center; align-items: center; gap: .35rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pager a { min-width: 42px; height: 42px; padding: 0 .6rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-2); font-weight: 700; }
.pager a:hover { border-color: var(--walnut); color: var(--walnut); }
.pager a.active { background: var(--walnut); border-color: var(--walnut); color: #fff; }
.pager .gap { color: var(--muted); padding: 0 .25rem; }

.inline-cta { margin-top: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--oak-soft); border: 1px solid #EAD7BF; border-radius: var(--radius-lg); padding: 1.8rem 2rem; }
.inline-cta h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; margin-bottom: .3rem; }
.inline-cta p { color: var(--ink-2); margin: 0; }

/* ============ Ürün detay ============ */
.pd-gallery { position: sticky; top: 100px; }
.pd-main { position: relative; aspect-ratio: 1 / 1; background: var(--sand); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-badge { position: absolute; top: 1rem; left: 1rem; }
.pd-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: .6rem; margin-top: .75rem; }
.pd-thumb { padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; aspect-ratio: 1; background: var(--sand); transition: border-color .2s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--walnut); }

.pd-info .pc-cat { display: inline-block; }
.pd-title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.5rem); line-height: 1.15; margin: .2rem 0 .8rem; }
.pd-lead { color: var(--ink-2); font-size: 1.02rem; }
.price-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.3rem 0 1.1rem; }
.price-label { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-line { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; }
.price-line strong { font-size: clamp(1.9rem, 1.5rem + 1vw, 2.4rem); font-weight: 800; color: var(--walnut-dark); letter-spacing: -.02em; }
.price-line strong.is-ask { font-size: 1.3rem; color: var(--ink); }
.price-line del { color: var(--muted); font-size: 1.05rem; }
.price-note { color: var(--ink-2); font-weight: 700; font-size: .9rem; margin-top: .1rem; }
.price-disclaimer { display: flex; gap: .5rem; margin: .8rem 0 0; padding-top: .8rem; border-top: 1px dashed var(--line); font-size: .82rem; color: var(--muted); }
.price-disclaimer i { color: var(--oak); margin-top: .25rem; }
.pd-actions { display: grid; grid-template-columns: 1.4fr 1fr; gap: .6rem; }
.pd-call { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .8rem; padding: .7rem; border-radius: 999px; border: 1px dashed var(--line); color: var(--ink-2); font-size: .9rem; }
.pd-call i { color: var(--walnut); }
.pd-call:hover { border-color: var(--walnut); color: var(--walnut); }
.spec-list { margin: 1.5rem 0 0; border-top: 1px solid var(--line); }
.spec-list > div { display: grid; grid-template-columns: 170px 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-list dt { font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: .55rem; }
.spec-list dt i { color: var(--oak); width: 16px; text-align: center; }
.spec-list dd { margin: 0; font-weight: 700; color: var(--ink); }
.pd-assure { list-style: none; padding: 0; margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .84rem; color: var(--ink-2); }
.pd-assure i { color: var(--success); margin-right: .35rem; }

.content-card, .info-card, .quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); }
.card-title-serif { font-family: var(--font-serif); font-weight: 600; font-size: 1.6rem; margin-bottom: 1rem; }
.quote-card { box-shadow: var(--shadow); border-color: transparent; position: relative; overflow: hidden; }
.quote-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--walnut), var(--oak)); }
.quote-card-head h2 { font-family: var(--font-serif); font-weight: 600; font-size: 1.65rem; margin-bottom: .3rem; }
.quote-card-head p { color: var(--muted); font-size: .92rem; }
.quote-product { display: flex; align-items: center; gap: .9rem; background: var(--bg); border-radius: var(--radius); padding: .7rem; margin: 1rem 0 1.3rem; }
.qp-thumb { width: 60px; height: 60px; flex: none; border-radius: 12px; overflow: hidden; background: var(--sand); color: var(--walnut); display: flex; align-items: center; justify-content: center; }
.qp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.qp-thumb .f-icon { width: 38px; height: 38px; }
.quote-product strong { display: block; font-size: .95rem; line-height: 1.3; }
.quote-product small { color: var(--walnut-dark); font-weight: 700; }

/* Form */
.quote-form .form-label { font-weight: 700; font-size: .85rem; color: var(--ink-2); margin-bottom: .35rem; }
.quote-form legend.form-label { float: none; width: auto; }
.form-control, .form-select { border-radius: 12px; border: 1.5px solid var(--line); padding: .7rem .9rem; font-size: .95rem; background-color: var(--surface); color: var(--ink); }
.form-control:focus, .form-select:focus { border-color: var(--walnut); box-shadow: 0 0 0 4px rgba(123,82,52,.12); }
.form-control::placeholder { color: #B3A89D; }
.form-check-input:checked { background-color: var(--walnut); border-color: var(--walnut); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(123,82,52,.12); border-color: var(--walnut); }
.was-validated .form-control:invalid, .was-validated .form-check-input:invalid { border-color: var(--danger); }
.req { color: var(--danger); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: inline-flex; padding: .55rem 1rem; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 700; font-size: .86rem; color: var(--ink-2); transition: all .2s; background: var(--surface); }
.choice input:checked + span { border-color: var(--walnut); background: var(--oak-soft); color: var(--walnut-dark); }
.choice input:focus-visible + span { outline: 2px solid var(--walnut); outline-offset: 2px; }
.form-foot { font-size: .78rem; color: var(--muted); text-align: center; margin: .8rem 0 0; }
.form-foot i { margin-right: .35rem; color: var(--oak); }

.mini-steps { list-style: none; padding: 0; margin: 0 0 1.5rem; counter-reset: ms; }
.mini-steps li { position: relative; padding: 0 0 1.1rem 3rem; counter-increment: ms; }
.mini-steps li::before { content: counter(ms); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--oak-soft); color: var(--walnut); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.mini-steps li:not(:last-child)::after { content: ""; position: absolute; left: 16.5px; top: 38px; bottom: 4px; border-left: 1.5px dashed var(--oak); }
.mini-steps strong { display: block; }
.mini-steps span { color: var(--muted); font-size: .9rem; }
.info-contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .6rem; }
.contact-tile strong { white-space: nowrap; }
.info-contacts.stacked .contact-tile strong { white-space: normal; }
.info-contacts.stacked { grid-template-columns: 1fr; }
.contact-tile { display: flex; align-items: center; gap: .85rem; padding: .85rem 1rem; border-radius: var(--radius); background: var(--bg); color: var(--ink); border: 1px solid transparent; transition: border-color .2s, background-color .2s; }
a.contact-tile:hover { border-color: var(--walnut); color: var(--ink); background: var(--surface); }
.contact-tile > i { width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--walnut); display: inline-flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--shadow-sm); }
.contact-tile.is-wa > i { background: var(--wa); color: #fff; }
.contact-tile small { display: block; color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-tile strong { font-size: .95rem; word-break: break-word; }
.note-box { display: flex; gap: .9rem; background: var(--oak-soft); border-radius: var(--radius); padding: 1rem 1.1rem; }
.note-box > i { color: var(--walnut); font-size: 1.3rem; margin-top: .2rem; }
.note-box strong { display: block; }
.note-box span { display: block; color: var(--ink-2); font-size: .9rem; margin-bottom: .3rem; }

.success-card { max-width: 620px; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2rem, 1rem + 4vw, 3.5rem); box-shadow: var(--shadow); }
.success-icon { width: 84px; height: 84px; border-radius: 50%; background: #E8F3EC; color: var(--success); display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.2rem; box-shadow: 0 0 0 10px #F3F9F5; }
.success-card h1 { font-family: var(--font-serif); font-weight: 600; font-size: 2.2rem; }
.success-card p { color: var(--ink-2); }
.ticket { display: inline-flex; flex-direction: column; margin: .5rem 0 1.6rem; padding: .8rem 2rem; border: 1.5px dashed var(--oak); border-radius: var(--radius); background: var(--oak-soft); }
.ticket small { color: var(--muted); font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.ticket strong { font-size: 1.5rem; letter-spacing: .08em; color: var(--walnut-dark); }

/* Hakkımızda */
.about-mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.about-tile { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; text-align: center; padding: 1rem; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); color: var(--ink); font-weight: 800; font-size: .85rem; line-height: 1.3; transition: transform .3s var(--ease), box-shadow .3s; }
.about-tile .f-icon { width: 46%; height: auto; color: var(--walnut); stroke-width: 1.5; }
.about-tile:nth-child(2), .about-tile:nth-child(4), .about-tile:nth-child(6) { background: var(--sand); }
.about-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--walnut); }

/* Blog yazısı */
.article { max-width: 780px; margin: 0 auto; }
.article-head h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem); line-height: 1.15; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--muted); font-size: .88rem; margin: .8rem 0 1.6rem; }
.article-meta i { margin-right: .35rem; color: var(--oak); }
.article-cover { width: 100%; border-radius: var(--radius-lg); margin-bottom: 2rem; }
.prose { color: var(--ink-2); line-height: 1.8; }
.prose h2, .prose h3 { font-family: var(--font-serif); color: var(--ink); font-weight: 600; margin: 1.8rem 0 .7rem; }
.prose h2 { font-size: 1.55rem; } .prose h3 { font-size: 1.25rem; }
.prose img { border-radius: var(--radius); height: auto; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose li { margin-bottom: .3rem; }
.prose li::marker { color: var(--walnut); }
.prose table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.prose td, .prose th { border: 1px solid var(--line); padding: .5rem .75rem; }
.prose-lg { font-size: 1.08rem; }

.error-page { text-align: center; max-width: 560px; margin: 0 auto; padding: 2rem 0; }
.error-code { font-family: var(--font-serif); font-size: clamp(5rem, 3rem + 8vw, 8rem); line-height: 1; color: var(--oak); font-weight: 600; }
.error-page h1 { font-weight: 800; font-size: 1.8rem; margin: .5rem 0; }
.error-page p { color: var(--muted); margin-bottom: 1.5rem; }

/* ============ Footer ============ */
.site-footer { background: #2A1C12; color: #CDBBA6; margin-top: 2rem; }
.footer-cta { position: relative; top: -2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 2rem 2.4rem; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--walnut), var(--walnut-dark)); box-shadow: var(--shadow-lg); color: #fff; }
.footer-cta h2 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin-bottom: .3rem; }
.footer-cta p { color: #EADDCB; margin: 0; max-width: 620px; }
.footer-cta-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-main { padding-bottom: 3rem; }
.footer-main h3 { color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-about { margin: 1.1rem 0 1.2rem; font-size: .92rem; max-width: 380px; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
.footer-links a, .footer-contact a { color: #CDBBA6; font-size: .92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--oak); }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .92rem; }
.footer-contact li { display: flex; gap: .7rem; }
.footer-contact i { color: var(--oak); margin-top: .3rem; width: 16px; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.07); color: #E9DCCB; transition: background-color .2s, color .2s; }
.footer-social a:hover { background: var(--oak); color: var(--walnut-deep); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.2rem 0; font-size: .84rem; color: #9E8B77; }

/* WhatsApp + mobil çubuk */
.whatsapp-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 1040; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; font-size: 1.8rem; align-items: center; justify-content: center; box-shadow: 0 12px 28px -8px rgba(31,175,90,.6); transition: transform .25s var(--ease); }
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
.mobile-cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040; display: flex; gap: .4rem; padding: .5rem .6rem calc(.5rem + env(safe-area-inset-bottom)); background: rgba(255,253,249,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -20px rgba(59,38,24,.4); }
.mobile-cta-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem; padding: .7rem .4rem; border-radius: 999px; font-weight: 800; font-size: .88rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line); }
.mobile-cta-bar a.is-wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.mobile-cta-bar a.is-primary { flex: 1.3; background: var(--walnut); border-color: var(--walnut); color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 1199.98px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991.98px) {
    body { padding-bottom: 72px; }
    .section { padding: 3.5rem 0; }
    .header-row { min-height: 68px; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-item:nth-child(3) { border-left: 0; }
    .usp-item:nth-child(n+3) { border-top: 1px solid var(--line); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps li::after { display: none; }
    .promo { grid-template-columns: 1fr; }
    .promo-art { display: none; }
    .pd-gallery { position: static; }
    .section-head { align-items: flex-start; }
    .footer-cta { padding: 1.6rem; }
}
@media (max-width: 767.98px) {
    body { font-size: 15px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .cat-body { padding: .8rem 2.8rem .9rem .9rem; }
    .cat-name { font-size: .9rem; }
    .cat-arrow { width: 30px; height: 30px; right: .7rem; bottom: .85rem; }
    .cat-card-cta { grid-column: span 2; }
    .usp-item { padding: 1.1rem .75rem; gap: .7rem; }
    .usp-item > i { width: 40px; height: 40px; font-size: .95rem; }
    .usp-item strong { font-size: .85rem; }
    .usp-item span { font-size: .76rem; }
    .why-grid, .why-grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .hero .carousel-item { min-height: 540px; }
    .hero-overlay { background: linear-gradient(180deg, rgba(43,27,17,.55) 0%, rgba(43,27,17,.85) 100%); }
    .pc-body { padding: .8rem .8rem .9rem; }
    .pc-title { font-size: .9rem; }
    .pc-meta { display: none; }
    .pc-foot { flex-direction: column; align-items: stretch; gap: .6rem; }
    .pc-price strong { font-size: 1rem; }
    .pc-cta { width: auto; height: auto; padding: .5rem .75rem; }
    .pc-cta-text { display: inline; }
    .pc-price strong { white-space: normal; }
    .toolbar-row { flex-direction: column; align-items: stretch; }
    .sort-form .form-select { min-width: 0; flex: 1; }
    .spec-list > div { grid-template-columns: 1fr; gap: .15rem; }
    .pd-actions { grid-template-columns: 1fr; }
    .info-contacts { grid-template-columns: 1fr; }
    .page-hero-icon { width: 60px; height: 60px; padding: 10px; border-radius: 16px; }
    .footer-links.two-col { grid-template-columns: 1fr; }
    .inline-cta { padding: 1.4rem; }
    .about-mosaic { grid-template-columns: repeat(2, 1fr); }
    .brand-logo { height: 40px; }
    .topbar-info a:not(:first-child) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
