/* ============================================
   KAHVALTI MASASI REHBERİ
   Tema: Sabah Işığı + Çini
   ============================================ */

/* --- Custom Properties --- */
:root {
    --bg-krem: #FDF6EC;
    --bg-beyaz: #FFFFFF;
    --bg-krem-koyu: #F5EBDA;
    --amber-cay: #C8860A;
    --amber-acik: #E8A832;
    --amber-soluk: #F5DEB3;
    --amber-koyu: #8B6508;
    --cini-mavi: #1A5276;
    --cini-acik: #2980B9;
    --cini-cok-acik: #D4E6F1;
    --cini-soluk: #EBF5FB;
    --metin-koyu: #2C2C2C;
    --metin-gri: #5D5D5D;
    --metin-acik: #8B8B8B;
    --border: #E8DFD0;
    --border-hover: #C8860A;
    --kirmizi-hata: #C0392B;
    --yesil-basari: #27AE60;
    --golge: 0 2px 12px rgba(26, 82, 118, 0.07);
    --golge-hover: 0 6px 24px rgba(26, 82, 118, 0.13);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-xs: 4px;
    --gecis: 0.3s ease;
    --font-ana: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-genislik: 1100px;
    --cini-desen: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 8L34 22L48 18L38 28L48 38L34 34L30 48L26 34L12 38L22 28L12 18L26 22Z' fill='none' stroke='%231A5276' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E");
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-ana);
    background-color: var(--bg-krem);
    color: var(--metin-koyu);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--cini-mavi);
    text-decoration: none;
    transition: color var(--gecis);
}

a:hover {
    color: var(--amber-cay);
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--cini-mavi);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 12px;
    color: #fff;
}

/* --- Focus Styles --- */
:focus-visible {
    outline: 3px solid var(--amber-cay);
    outline-offset: 2px;
}

/* --- Container --- */
.container {
    max-width: var(--max-genislik);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-ana);
    line-height: 1.3;
    color: var(--cini-mavi);
    font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; }

p + p { margin-top: 1em; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-beyaz);
    border-bottom: 2px solid var(--border);
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cini-mavi);
    text-decoration: none;
    white-space: nowrap;
}

.site-logo:hover { color: var(--amber-cay); }

/* --- Nav --- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav-list a {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    position: relative;
    color: var(--metin-koyu);
    transition: background var(--gecis), color var(--gecis);
}

.nav-list a:hover {
    background: var(--cini-soluk);
    color: var(--cini-mavi);
}

.nav-list a.active {
    background: var(--cini-mavi);
    color: #fff;
}

.nav-list a.active:hover {
    background: var(--cini-acik);
    color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--metin-koyu);
    border-radius: 2px;
    transition: transform var(--gecis), opacity var(--gecis);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 64px 0 48px;
    background:
        var(--cini-desen),
        linear-gradient(165deg, var(--bg-krem) 0%, #F5E6C8 40%, var(--amber-soluk) 70%, var(--bg-krem) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 134, 10, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-metin {
    max-width: 560px;
}

.hero h1 {
    margin-bottom: 16px;
    color: var(--cini-mavi);
}

.hero h1 .accent {
    color: var(--amber-cay);
}

.hero-alt {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--metin-gri);
    line-height: 1.7;
}

.hero-gorsel img {
    border-radius: var(--radius);
    box-shadow: var(--golge-hover);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-cini-desen {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cini-mavi), var(--amber-cay), var(--cini-mavi));
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 64px 0;
}

.content-section:nth-child(even) {
    background:
        var(--cini-desen),
        var(--bg-krem-koyu);
}

.section-baslik {
    text-align: center;
    margin-bottom: 40px;
}

.section-baslik h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-baslik h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-cay), var(--cini-mavi));
    border-radius: 2px;
}

.section-giris {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
    color: var(--metin-gri);
    font-size: 1.05rem;
}

/* ============================================
   SECTION IMAGES
   ============================================ */
.section-gorsel {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--golge);
}

.section-gorsel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.section-gorsel--kucuk {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.prose-gorsel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin: 32px 0;
}

.prose-gorsel .prose-gorsel-metin {
    max-width: none;
}

.prose-gorsel .prose-gorsel-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--golge);
}

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

/* ============================================
   TABAK KARTLARI (Ceramic plate panels)
   ============================================ */
.kart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.tabak-kart {
    background: var(--bg-beyaz);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 4px solid var(--cini-mavi);
    box-shadow: var(--golge);
    padding: 32px 28px;
    transition: box-shadow var(--gecis), transform var(--gecis);
    position: relative;
    overflow: hidden;
}

.tabak-kart::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--cini-desen);
    opacity: 0.5;
    pointer-events: none;
}

.tabak-kart:hover {
    box-shadow: var(--golge-hover);
    transform: translateY(-3px);
}

.tabak-kart h3 {
    color: var(--cini-mavi);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.tabak-kart p {
    color: var(--metin-gri);
    font-size: 0.95rem;
}

.tabak-kart ul {
    list-style: none;
    margin-top: 12px;
}

.tabak-kart ul li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: var(--metin-gri);
    font-size: 0.93rem;
}

.tabak-kart ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-cay);
}

.tabak-kart--amber {
    border-top-color: var(--amber-cay);
}

.tabak-kart-gorsel {
    margin: -32px -28px 20px -28px;
    overflow: hidden;
}

.tabak-kart-gorsel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ============================================
   PROSE (continuous text sections)
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
}

.prose h3 {
    margin-top: 1.8em;
    color: var(--cini-mavi);
}

.prose p {
    margin-bottom: 1em;
    color: var(--metin-koyu);
}

.prose ul, .prose ol {
    margin: 1em 0;
    padding-left: 24px;
    color: var(--metin-gri);
}

.prose li {
    margin-bottom: 0.5em;
}

.bilgi-kutusu {
    background: var(--cini-soluk);
    border-left: 4px solid var(--cini-mavi);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.bilgi-kutusu p {
    color: var(--cini-mavi);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.ipucu-kutusu {
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%);
    border-left: 4px solid var(--amber-cay);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
}

.ipucu-kutusu p {
    color: var(--amber-koyu);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDIONS
   ============================================ */
.faq-listesi {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--bg-beyaz);
    overflow: hidden;
    transition: box-shadow var(--gecis);
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(26,82,118,0.06);
}

.faq-soru {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-ana);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cini-mavi);
    text-align: left;
    line-height: 1.4;
    transition: background var(--gecis);
}

.faq-soru:hover {
    background: var(--cini-soluk);
}

.faq-soru::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--amber-cay);
    border: 1px solid var(--border);
    border-radius: 50%;
    margin-left: 16px;
    transition: transform var(--gecis), background var(--gecis);
}

.faq-soru[aria-expanded="true"]::after {
    content: '\2212';
    background: var(--cini-mavi);
    color: #fff;
    border-color: var(--cini-mavi);
    transform: rotate(180deg);
}

.faq-cevap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    color: var(--metin-gri);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.faq-cevap p {
    padding: 0 24px 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--cini-mavi);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p,
.footer-col address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: color var(--gecis);
}

.footer-col a:hover {
    color: var(--amber-acik);
}

.footer-col address a {
    color: rgba(255,255,255,0.8);
}
.footer-col address a:hover {
    color: var(--amber-acik);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cerez-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--bg-beyaz);
    border-top: 2px solid var(--cini-mavi);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 24px;
}

.cerez-banner-inner {
    max-width: var(--max-genislik);
    margin: 0 auto;
}

.cerez-katman p {
    font-size: 0.92rem;
    color: var(--metin-gri);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cerez-katman h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.cerez-butonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cerez-btn {
    padding: 10px 24px;
    border: 2px solid var(--cini-mavi);
    border-radius: var(--radius-sm);
    background: var(--bg-beyaz);
    color: var(--cini-mavi);
    font-family: var(--font-ana);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--gecis), color var(--gecis);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.cerez-btn:hover {
    background: var(--cini-mavi);
    color: #fff;
}

.cerez-secenekler {
    margin-bottom: 20px;
}

.cerez-secenek {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.cerez-secenek input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--cini-mavi);
    flex-shrink: 0;
}

.cerez-secenek span {
    font-size: 0.9rem;
    color: var(--metin-gri);
    line-height: 1.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.iletisim-hero {
    padding: 48px 0 32px;
    background:
        var(--cini-desen),
        linear-gradient(135deg, var(--bg-krem) 0%, var(--cini-soluk) 100%);
    text-align: center;
}

.iletisim-hero h1 {
    margin-bottom: 12px;
}

.iletisim-hero p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--metin-gri);
    font-size: 1.05rem;
}

.iletisim-bilgi-section {
    padding: 48px 0 0;
}

.iletisim-bilgi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.iletisim-bilgi-kart {
    background: var(--bg-beyaz);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--golge);
    text-align: center;
}

.iletisim-bilgi-baslik {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cini-mavi);
    margin-bottom: 8px;
}

.iletisim-bilgi-kart p {
    color: var(--metin-gri);
    font-size: 0.92rem;
}

/* ============================================
   CONTACT FORM (standalone card)
   ============================================ */
.iletisim-form-section {
    padding: 48px 0 72px;
}

.form-kart {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-beyaz);
    border: 1px solid var(--border);
    border-top: 4px solid var(--cini-mavi);
    border-radius: var(--radius);
    box-shadow: var(--golge-hover);
    padding: 40px 36px;
}

.form-kart h2 {
    text-align: center;
    margin-bottom: 8px;
}

.form-kart-aciklama {
    text-align: center;
    color: var(--metin-gri);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.form-satir {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-alan {
    margin-bottom: 20px;
}

.form-alan label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--metin-koyu);
    margin-bottom: 6px;
}

.form-alan label .zorunlu {
    color: var(--kirmizi-hata);
    margin-left: 2px;
}

.form-alan input[type="text"],
.form-alan input[type="email"],
.form-alan input[type="tel"],
.form-alan textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-ana);
    font-size: 0.95rem;
    color: var(--metin-koyu);
    background: var(--bg-krem);
    transition: border-color var(--gecis), box-shadow var(--gecis);
}

.form-alan input:focus,
.form-alan textarea:focus {
    border-color: var(--cini-acik);
    box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.12);
    outline: none;
    background: var(--bg-beyaz);
}

.form-alan textarea {
    min-height: 140px;
    resize: vertical;
}

.form-onay {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-onay input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--cini-mavi);
    flex-shrink: 0;
}

.form-onay label {
    font-size: 0.88rem;
    color: var(--metin-gri);
    line-height: 1.5;
}

.form-gonder {
    display: block;
    width: 100%;
    padding: 14px 40px;
    background: var(--cini-mavi);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-ana);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--gecis), transform var(--gecis);
}

.form-gonder:hover {
    background: var(--amber-cay);
    transform: translateY(-1px);
}

.form-gonder:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-sonuc {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    margin-top: 16px;
    text-align: center;
}

.form-sonuc-basarili {
    background: #E8F8F0;
    color: var(--yesil-basari);
    border: 1px solid #A3D9B7;
}

.form-sonuc-hata {
    background: #FDEDEC;
    color: var(--kirmizi-hata);
    border: 1px solid #F1948A;
}

/* Honeypot */
.bal-tuzagi {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   LEGAL / PROSE PAGES
   ============================================ */
.yasal-icerik {
    padding: 56px 0 72px;
}

.yasal-icerik .container {
    max-width: 800px;
}

.yasal-icerik h1 {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--cini-mavi);
}

.yasal-icerik h2 {
    font-size: 1.25rem;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: var(--cini-mavi);
}

.yasal-icerik h3 {
    font-size: 1.05rem;
    margin-top: 1.5em;
    color: var(--amber-koyu);
}

.yasal-icerik p {
    color: var(--metin-gri);
    margin-bottom: 1em;
}

.yasal-icerik ul {
    margin: 0.8em 0;
    padding-left: 24px;
    color: var(--metin-gri);
}

.yasal-icerik ul li {
    margin-bottom: 0.4em;
}

.yasal-icerik address {
    font-style: normal;
    background: var(--cini-soluk);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    color: var(--metin-koyu);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.hakkimizda-hero {
    padding: 56px 0 40px;
    background:
        var(--cini-desen),
        linear-gradient(135deg, var(--bg-krem) 0%, var(--cini-soluk) 100%);
    text-align: center;
}

.hakkimizda-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--metin-gri);
    font-size: 1.05rem;
}

/* ============================================
   ANIMATIONS (scroll reveal — progressive)
   ============================================ */
/* Default: content visible (no-JS safe) */
.reveal {
    opacity: 1;
    transform: none;
}

/* Only hide when JS confirms observer is ready */
html.js-reveal-ready .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-reveal-ready .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html.js-reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-beyaz);
        flex-direction: column;
        gap: 0;
        border-bottom: 2px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 8px 0;
    }

    .nav-list.nav-open {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 12px 24px;
        border-radius: 0;
        font-size: 0.92rem;
    }

    .hero {
        padding: 48px 0 36px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-gorsel {
        order: -1;
    }

    .kart-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-section {
        padding: 44px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-nav a {
        font-size: 0.8rem;
        padding: 7px 12px;
    }

    .cerez-butonlar {
        flex-direction: column;
    }

    .cerez-btn {
        min-width: 100%;
    }

    .iletisim-bilgi {
        grid-template-columns: 1fr;
    }

    .form-satir {
        grid-template-columns: 1fr;
    }

    .form-kart {
        padding: 28px 20px;
    }

    .prose-gorsel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .container {
        padding: 0 16px;
    }

    .tabak-kart {
        padding: 24px 20px;
    }

    .cerez-banner {
        padding: 16px;
    }
}
