/* ---------------------------------------------------------------
   Fontlar kendi sunucumuzdan (self-host). Google Fonts'a istek YOK.
   Değişken (variable) sürümler: tek dosya tüm ağırlıkları taşır.
   Türkçe karakterler (ğ, ş, İ, ı) latin-ext alt kümesinde.
   Kaynak: Google Fonts (Inter: OFL, Cormorant Garamond: OFL)
   --------------------------------------------------------------- */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-vf-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url('../fonts/cormorant-garamond-vf-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/inter-vf-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/inter-vf-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --soft: #f6f3ee;
    --ink: #23201b;
    --muted: #6c655b;
    --line: #e4dfd5;
    --gold: #8a6a34;
    --green: #2d5f4a;
    --green-strong: #24503e;
    --green-soft: #e7efe9;
    --green-ink: #eef3ef;
    --up: #2d7a55;
    --down: #b23b3b;
    --radius: 4px;
    /* Gövde/arayüz: Inter. Başlıklar: Cormorant Garamond (çağdaş, ince işçilikli serif). */
    --font-govde: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-baslik: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-govde);
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

/* Form elemanları tarayıcı varsayılan fontunu kullanır; gövde fontuna çekiyoruz */
button,
input,
select,
textarea {
    font-family: inherit;
}

h1, h2, h3 {
    margin: 0;
    font-family: var(--font-baslik);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 27px;
}

h3 {
    font-size: 22px;
}

p {
    margin: 0 0 14px;
}

.container {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
}

/* Üst kurumsal şerit */
.topband {
    background: var(--green-strong);
    color: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 12.5px;
}

.topband-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 34px;
    padding: 5px 0;
}

.topband a {
    color: #fff;
}

.topband a:hover {
    text-decoration: underline;
}

.topband .sep {
    opacity: .45;
    margin: 0 8px;
}

.topband-left,
.topband-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Header */
.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.topbar-inner {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.topbar-inner .nav {
    margin-left: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    height: 64px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 0;
    font-size: 13.5px;
}

/* Hamburger — sadece dar ekranda görünür (bkz. max-width: 900px) */
.nav-ac {
    display: none;
    position: relative;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
}

.nav-ac-cizgi,
.nav-ac-cizgi::before,
.nav-ac-cizgi::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.nav-ac-cizgi::before,
.nav-ac-cizgi::after {
    content: "";
    position: absolute;
}

.nav-ac-cizgi::before {
    transform: translateY(-6px);
}

.nav-ac-cizgi::after {
    transform: translateY(6px);
}

/* Açıkken çarpıya döner */
.topbar.menu-acik .nav-ac-cizgi {
    background: transparent;
}

.topbar.menu-acik .nav-ac-cizgi::before {
    transform: rotate(45deg);
}

.topbar.menu-acik .nav-ac-cizgi::after {
    transform: rotate(-45deg);
}

.nav-item {
    position: relative;
}

.nav-item summary,
.nav-link {
    display: inline-flex;
    min-height: 72px;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    color: var(--ink);
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    white-space: nowrap;
}

.nav-item summary::-webkit-details-marker {
    display: none;
}

.nav-item summary::after {
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--muted);
}

.nav a:hover,
.nav summary:hover,
.nav-item[open] summary {
    color: var(--green);
}

.nav-item[open] > summary {
    background: var(--green-soft);
}

.menu-panel {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 50;
    min-width: 196px;
    border: 1px solid var(--line);
    border-top: 2px solid var(--green);
    background: var(--surface);
    box-shadow: 0 16px 32px rgba(20, 40, 32, .14);
}

.menu-panel a {
    display: block;
    padding: 10px 14px;
    color: var(--ink);
    font-size: 13.5px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #eee9df;
}

.menu-panel a:last-child {
    border-bottom: 0;
}

.menu-panel a:hover {
    background: var(--green-soft);
    color: var(--green-strong);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--ink);
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.btn-primary:hover {
    background: #000;
    border-color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: var(--ink);
}

/* Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.hero-slider .slides {
    display: flex;
    transition: transform .55s ease;
}

.hero-slider .slide {
    flex: 0 0 100%;
    display: block;
    line-height: 0;
}

/* Tek görsel; Bootstrap gibi: genişliğe göre ölçeklenir, kırpılmaz.
   Sadece çok geniş ekranda üst sınır + hafif kırpma. */
.hero-slider img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(20, 18, 16, .38);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}

.slider-arrow:hover {
    background: rgba(20, 18, 16, .6);
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.slider-dots button[aria-current] {
    width: 22px;
    background: #fff;
}

@media (max-width: 700px) {
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 19px;
    }
}

/* Hero */
.hero {
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
}

.hero h1 {
    font-size: 40px;
}

.lead {
    margin: 16px 0 0;
    color: var(--muted);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-media img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

/* Sections */
.section {
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
}

/* Sadece bu iki bölüm hafif yeşil; gerisi beyaz */
#fiyatlar,
#taki {
    background: var(--green-soft);
}

.section:last-child {
    border-bottom: 0;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.section-head p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.section-link {
    font-size: 14px;
    color: var(--gold);
    white-space: nowrap;
}

.section-link:hover {
    text-decoration: underline;
}

/* Vurgulu sürüm: bölüm bağlantısının silik kalmaması gereken yerler */
.section-link.guclu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--gold);
    color: var(--ink);
    font-weight: 600;
}

.section-link.guclu::after {
    content: "→";
    color: var(--gold);
    transition: transform .18s ease;
}

.section-link.guclu:hover {
    text-decoration: none;
}

.section-link.guclu:hover::after {
    transform: translateX(3px);
}

/* Categories */
.category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-chip {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 7px 12px;
    font-size: 14px;
    color: var(--ink);
}

.category-chip:hover {
    border-color: var(--ink);
}

.category-chip--aktif {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.category-chip--aktif:hover {
    border-color: var(--green);
}

/* Ürün detay */
.urun-detay {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 44px;
    align-items: start;
}

/* Fotoğrafsız ürün: görsel sütunu hiç basılmaz, bilgi tam genişlik alır */
.urun-detay.tek {
    grid-template-columns: 1fr;
    max-width: 74ch;
}

.urun-gorsel {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.urun-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.urun-bilgi h1 {
    margin: 10px 0 0;
    font-size: 34px;
}

.urun-fiyat {
    margin: 18px 0 4px;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 800px) {
    .urun-detay {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Yatay ürün kaydırıcısı */
.pcar {
    position: relative;
}

.pcar-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
}

.pcar-track::-webkit-scrollbar {
    display: none;
}

/* Bootstrap tarzı tam çerçeveli kart: görsel + isim + fiyat tek kutuda */
.pcar-card {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 66px) / 4);
    display: flex;
    flex-direction: column;
    color: inherit;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pcar-card:hover {
    border-color: #d3cbba;
    box-shadow: 0 8px 24px rgba(35, 32, 27, .08);
    transform: translateY(-2px);
}

/* /urunler ızgara görünümü — aynı kart */
.pcar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px 20px;
}

.pcar-grid .pcar-card {
    flex-basis: auto;
}

/* Görsel kutunun tepesine yapışık, genişliğe göre ölçeklenir */
.pcar-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.pcar-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.pcar-card:hover .pcar-img img {
    transform: scale(1.03);
}

.pcar-symbol {
    font-family: var(--font-baslik);
    font-size: 26px;
    color: #c8bfae;
}

.pcar-body {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 12px 16px;
}

.pcar-name {
    text-align: center;
    font-size: 12px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
}

.pcar-price {
    margin-top: auto;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

/* Fotoğrafsız model kartı: boş görsel kutusu yerine ad + açıklama */
.pcar-yazi {
    min-height: 178px;
}

.pcar-yazi .pcar-body {
    gap: 0;
    padding: 18px 16px 16px;
    text-align: left;
}

.pcar-etiket {
    font-size: 11px;
    letter-spacing: .04em;
    color: var(--muted);
}

.pcar-baslik {
    margin-top: 6px;
    font-family: var(--font-baslik);
    font-size: 20px;
    line-height: 1.3;
}

.pcar-aciklama {
    margin: 8px 0 16px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

/* margin-top:auto korunur — fiyat satırı her kartta aynı hizada, altta durur */
.pcar-yazi .pcar-price {
    padding-top: 12px;
    border-top: 1px solid var(--line);
    text-align: left;
    color: var(--green);
}


.pcar-arrow {
    position: absolute;
    top: calc((100% - 80px) / 2);
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.pcar-arrow:hover {
    border-color: var(--ink);
}

.pcar-arrow.prev {
    left: -19px;
}

.pcar-arrow.next {
    right: -19px;
}

.pcar-arrow[hidden] {
    display: none;
}

@media (max-width: 1100px) {
    .pcar-track > .pcar-card {
        flex-basis: calc((100% - 44px) / 3);
    }

    .pcar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .pcar-track > .pcar-card {
        flex-basis: calc((100% - 22px) / 2);
    }

    .pcar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcar-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .pcar-track > .pcar-card {
        flex-basis: 78%;
    }
}

/* Ürün çekmecesi (drawer) */
.drawer[hidden] {
    display: none;
}

.drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
}

.drawer-arka {
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 23, .45);
    opacity: 0;
    transition: opacity .28s ease;
}

.drawer.acik .drawer-arka {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(430px, 100%);
    display: flex;
    flex-direction: column;
    background: var(--surface);
    box-shadow: -24px 0 60px rgba(0, 0, 0, .18);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.drawer.acik .drawer-panel {
    transform: none;
}

.drawer-kapat {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
}

.drawer-kapat:hover {
    background: #fff;
    color: var(--green);
}

.drawer-gorsel {
    flex: 0 0 auto;
    width: 100%;
    background: var(--soft);
}

.drawer-gorsel img {
    display: block;
    width: 100%;
    height: auto;
}

.drawer-gorsel .pcar-symbol {
    font-size: 46px;
    display: none;
}

/* Fotoğrafsız üründe çekmecede boş kutu / "K" çıkmaz, görsel alanı hiç görünmez */
.drawer-gorsel.bos {
    display: none;
}

.drawer-govde {
    padding: 24px 24px 30px;
}

.drawer-govde h2 {
    margin: 8px 0 0;
    font-size: 29px;
}

.drawer-govde .lead {
    margin: 12px 0 0;
    font-size: 15px;
}

.drawer-fiyat {
    margin: 18px 0 4px;
    font-size: 22px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.drawer-aksiyon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.drawer-aksiyon a {
    width: 100%;
}

.drawer-detay-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

.drawer-detay-link:hover {
    color: var(--green);
}

@media (max-width: 560px) {
    .drawer-panel {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 90vh;
        border-radius: 18px 18px 0 0;
        transform: translateY(100%);
    }

    .drawer.acik .drawer-panel {
        transform: none;
    }

    /* Bottom-sheet'te görsel çok yer kaplamasın */
    .drawer-gorsel img {
        max-height: 46vh;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Store info strip */
.store-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.store-info div span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 3px;
}

.store-info div strong {
    font-weight: 600;
}

/* About */
/* Hakkımızda — giriş cümlesi tam genişlik, kalan metin iki sütun */
.hakkimizda {
    background: var(--soft);
}

/* Giriş paragrafının sağ kenarı, alttaki sol sütunun sağ kenarıyla hizalanır */
.about-giris {
    max-width: calc((100% - 44px) / 2);
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.6;
}

.about-sutunlar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 44px;
}

.about-sutunlar p {
    margin: 0;
    color: var(--muted);
}

/* Hakkımızda sayfası — solda başlıklı metin, sağda yapışkan görsel */
/* align-items:start VERİLMEZ — sağ sütun satır boyunca uzamalı ki içindeki
   .hakkimizda-yapiskan sticky olarak yol alabilsin. */
.hakkimizda-duzen {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 44px;
}

.hakkimizda-metin p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.hakkimizda-metin h2 {
    margin: 34px 0 12px;
    font-size: 25px;
}

.hakkimizda-metin h2:first-child {
    margin-top: 0;
}

.hakkimizda-yapiskan {
    position: sticky;
    top: 113px;
}

.hakkimizda-gorsel {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--soft);
}

.hakkimizda-gorsel img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hakkimizda-gorsel figcaption {
    padding: 12px 14px;
    border-top: 1px solid var(--line);
    background: var(--surface);
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

.yazi-eylem {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-grid p {
    color: var(--muted);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.notice {
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--muted);
    padding: 12px 14px;
    font-size: 14px;
}

/* Page title */
.page-title {
    border-bottom: 1px solid var(--line);
    background: var(--soft);
    padding: 36px 0;
}

.page-title p {
    margin: 10px 0 0;
    color: var(--muted);
}

/* Footer */
.footer {
    position: relative;
    color: var(--green-ink);
    padding: 76px 0 44px;
    /* açıktan koyuya geçiş */
    background: linear-gradient(180deg, #3c7861 0%, #2d5f4a 44%, #1e442f 100%);
}

/* logonun bulunduğu sol alta doğru ışık vurması */
.footer::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: min(640px, 58%);
    height: 280px;
    pointer-events: none;
    background:
        radial-gradient(120% 150% at 18% 100%, rgba(255, 244, 214, .17), rgba(255, 244, 214, 0) 62%),
        radial-gradient(90% 120% at 12% 100%, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 60%);
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 54px;
    align-items: start;
}

.footer-top:not(:has(.footer-social)) {
    grid-template-columns: 1fr;
}

.footer-top:not(:has(.footer-social)) .footer-cols {
    padding-right: 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 1.4fr;
    gap: 30px;
    padding-right: 44px;
}

.footer-col h2 {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .55);
    margin: 0 0 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
    margin-top: 13px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-support .fsup {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
    color: #fff;
}

.fsup-ic {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.footer-support .fsup small {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    margin-bottom: 1px;
}

.footer-support .fsup strong {
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 4px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.footer-social a {
    color: rgba(255, 255, 255, .7);
    display: grid;
    place-items: center;
}

.footer-social a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-bottom .brand-logo {
    height: 48px;
    filter: drop-shadow(0 0 20px rgba(255, 226, 168, .28));
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 12.5px;
    line-height: 1.7;
}

.footer-legal p strong {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 94px;
    z-index: 199;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(35, 32, 27, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.to-top.gorunur {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    border-color: var(--ink);
    color: var(--gold);
}

@media (max-width: 560px) {
    .to-top {
        right: 15px;
        bottom: 78px;
        width: 38px;
        height: 38px;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .topbar-inner {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 0;
    }

    .topbar-inner .nav {
        margin-left: 0;
    }

    .topband-inner {
        justify-content: center;
        text-align: center;
    }

    .topband-left {
        display: none;
    }

    /* Dar ekranda menü hamburgerin arkasına gizlenir, açılınca dikey liste olur */
    .nav-ac {
        display: inline-flex;
    }

    .nav {
        display: none;
    }

    .topbar.menu-acik .nav {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-self: auto;
        width: 100%;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        border-top: 1px solid var(--line);
        font-size: 15px;
    }

    /* Satırlar tam genişlik olmalı; summary varsayılan inline-flex'te daralıyor */
    .nav-item summary,
    .nav-link {
        display: flex;
        width: 100%;
        min-height: 48px;
        padding: 0 4px;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
    }

    .nav-item summary::after {
        margin-left: auto;
        align-self: center;
    }

    .menu-panel {
        position: static;
        border-width: 0;
        box-shadow: none;
        background: var(--soft);
    }

    .menu-panel a {
        padding: 11px 4px 11px 18px;
        border-bottom: 1px solid var(--line);
    }

    .hero-grid,
    .about-sutunlar,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Hakkımızda: dar ekranda görsel metinden önce gelsin, yapışkanlık kalksın */
    .hakkimizda-duzen {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hakkimizda-yan {
        order: -1;
    }

    .hakkimizda-yapiskan {
        position: static;
    }

    .hakkimizda-gorsel img {
        aspect-ratio: 3 / 2;
    }

    .store-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 22px;
        padding-right: 0;
    }

    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        border-left: 0;
        border-top: 1px solid var(--line);
        margin-top: 26px;
        padding-top: 20px;
        gap: 18px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-legal {
        flex-basis: 100%;
        order: 3;
    }
}

@media (max-width: 560px) {
    .topband {
        font-size: 12px;
    }

    .store-info {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        height: 260px;
    }
}

/* ---- Altın / yatırım bölümleri ---- */

.update-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: baseline;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.update-line .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--up);
    display: inline-block;
    margin-right: 6px;
}

.update-line.stale .dot {
    background: var(--down);
}

.price-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 460px;
}

.price-table th {
    text-align: right;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: var(--green-soft);
}

.price-table th:first-child {
    text-align: left;
}

.price-table td {
    padding: 12px 16px;
    text-align: right;
    border-bottom: 1px solid var(--line);
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.price-table .val {
    font-variant-numeric: tabular-nums;
}

.chg {
    font-variant-numeric: tabular-nums;
    font-size: 13px;
}

.chg.up {
    color: var(--up);
}

.chg.down {
    color: var(--down);
}

.chg.flat {
    color: var(--muted);
}

/* Ziynet ürün kartları */
.gold-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gold-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--surface);
}

.gold-card h3 {
    font-size: 21px;
}

.gold-card .spec {
    margin: 4px 0 12px;
    color: var(--muted);
    font-size: 13px;
}

.gold-card .price {
    font-size: 20px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.gold-card .price small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
}

/* Hesaplayıcı */
.calc {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    max-width: 520px;
    background: var(--surface);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    margin-bottom: 14px;
}

.calc label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

.calc select,
.calc input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    font-family: inherit;
}

.calc select:focus,
.calc input:focus {
    outline: none;
    border-color: var(--ink);
}

.calc-out {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.calc-out .total {
    font-size: 24px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.calc-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted);
}

/* IBAN / ödeme */
.pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.iban-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--surface);
}

.iban-card .bank {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.iban-no {
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    font-size: 16px;
    font-weight: 600;
    word-break: break-all;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 10px;
}

.iban-meta {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}

.iban-meta strong {
    color: var(--ink);
    font-weight: 600;
}

.copy-btn {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: var(--radius);
    cursor: pointer;
}

.copy-btn:hover {
    border-color: var(--ink);
}

.pay-steps {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
}

.pay-steps li {
    margin-bottom: 8px;
}

/* Harita */
.map-frame {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
}

.map-frame iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

@media (max-width: 900px) {
    .gold-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pay-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .gold-grid {
        grid-template-columns: 1fr;
    }

    .calc-row {
        grid-template-columns: 1fr;
    }
}

/* Sabit WhatsApp butonu */
.wa-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px 11px 13px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .35), 0 2px 6px rgba(0, 0, 0, .15);
    transition: transform .18s ease, background .18s ease;
}

.wa-fab:hover {
    background: #1fbe5b;
    transform: translateY(-2px);
    color: #fff;
}

.wa-fab svg {
    flex: 0 0 auto;
}

@media (max-width: 560px) {
    .wa-fab {
        right: 14px;
        bottom: 14px;
        padding: 12px;
    }

    .wa-fab span {
        display: none;
    }
}
