﻿/* ===================================================================
   QR Menu PH - Public Stil (site.css)
   index / kategori / urun ortak + sayfaya özel stiller
   =================================================================== */

:root {
    --gold: #c9a227;
    --gold-light: #e8c860;
    --gold-deep: #a8841a;
    --green: #14443a;
    --green-soft: #1c5044;

    --header-h: 64px;
    --catbar-h: 50px;
    --hero-h: 300px;
    --ph-h: 300px;

    --header-bg: #0c0c0c;
    --bg: #f3efe6;
    --tint-1: rgba(201, 162, 39, .10);
    --tint-2: rgba(20, 68, 58, .06);
    --surface: #ffffff;
    --surface-2: #faf7ee;
    --text: #1b1b1b;
    --text-soft: #5d5d5d;
    --line: #e9e2d2;
    --cat-bg: #101110;
    --cat-bg-2: #1e201d;
    --cat-text: #ffffff;
    --shadow: 0 20px 45px -24px rgba(20, 44, 38, .40);
    --shadow-soft: 0 10px 24px -16px rgba(0, 0, 0, .30);
    --input-bg: #fbf9f2;
    --warn: #c0702a;
}

[data-bs-theme="dark"] {
    --header-bg: #080a09;
    --bg: #0b0e0c;
    --tint-1: rgba(201, 162, 39, .14);
    --tint-2: rgba(28, 80, 68, .18);
    --surface: #141815;
    --surface-2: #1a201c;
    --text: #ededed;
    --text-soft: #a7aea9;
    --line: #2a322c;
    --cat-bg: #19211d;
    --cat-bg-2: #243329;
    --cat-text: #f6f1e3;
    --shadow: 0 22px 48px -24px rgba(0, 0, 0, .75);
    --shadow-soft: 0 10px 26px -16px rgba(0, 0, 0, .6);
    --input-bg: #10140f;
    --warn: #d98b46;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 74px; }

body {
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    color: var(--text);
    background-color: var(--header-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: color .35s ease;
}

h1, h2, h3, .display-font {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: .3px;
}

/* RTL (Arapça) ince ayar */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .side-nav a:hover,
[dir="rtl"] .cat-nav a:hover { padding-left: 0; padding-right: 10px; }

/* ===================== ÜST BAR ===================== */
.topbar { position: sticky; top: 0; z-index: 1030; background: var(--header-bg); color: #fff;
    box-shadow: 0 2px 0 rgba(201, 162, 39, .30), 0 8px 24px -16px rgba(0, 0, 0, .6); }
.topbar .inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); padding: 0 12px; gap: 6px; }
.icon-btn { background: transparent; border: 0; color: #fff; font-size: 1.32rem; line-height: 1; padding: 6px 7px; cursor: pointer; transition: color .25s ease, transform .2s ease; }
.icon-btn:hover { color: var(--gold-light); }
.icon-btn:active { transform: scale(.9); }

.brand { text-align: center; line-height: 1; user-select: none; text-decoration: none; display: block; }
.brand .b-main { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 700; display: block;
    background: linear-gradient(180deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand .b-sub { display: block; font-size: .54rem; letter-spacing: 3.5px; font-weight: 400; color: var(--gold); margin-top: 1px; }
.brand-logo { display: block; margin: 0 auto; height: 44px; width: auto; max-width: 220px; object-fit: contain; }

.top-right { display: flex; align-items: center; gap: 2px; }
.lang-toggle { display: flex; align-items: center; font-size: .76rem; font-weight: 500; margin-right: 2px; }
.lang-toggle a, .lang-toggle button { background: transparent; border: 0; color: #8a8a8a; padding: 4px 5px; cursor: pointer; text-decoration: none; transition: color .2s ease; }
.lang-toggle a.active, .lang-toggle button.active { color: var(--gold-light); }
.lang-toggle .sep { color: #555; }

#searchBar { background: var(--cat-bg); position: relative; z-index: 2; }
#searchBar .form-control { background: #0c0c0c; border: 1px solid rgba(201, 162, 39, .35); color: #fff; border-radius: 999px; }
#searchBar .form-control::placeholder { color: #7d7d7d; }
#searchBar .form-control:focus { box-shadow: 0 0 0 .2rem rgba(201, 162, 39, .2); border-color: var(--gold); }
.search-wrap { position: relative; }
.search-results { position: absolute; left: 12px; right: 12px; top: calc(100% - 6px); z-index: 5;
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden auto;
    max-height: min(60vh, 420px); box-shadow: 0 20px 44px -18px rgba(0, 0, 0, .55); }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; text-decoration: none; color: var(--text); border-bottom: 1px solid var(--line); }
.sr-item:last-child { border-bottom: 0; }
.sr-item:hover, .sr-item:focus { background: var(--surface-2); }
.sr-item img { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 10px; object-fit: cover; background: var(--surface-2); }
.sr-ad { flex: 1 1 auto; font-size: .92rem; font-weight: 500; line-height: 1.25; }
.sr-fiyat { flex: 0 0 auto; font-size: .85rem; font-weight: 600; color: var(--gold); white-space: nowrap; }
.sr-empty { padding: 16px 12px; text-align: center; color: var(--text-soft); font-size: .9rem; }

/* ===================== HERO (OWL CAROUSEL) ===================== */
.hero { position: relative; z-index: 1; height: var(--hero-h); background: var(--header-bg); overflow: hidden; }
.hero-owl, .hero-owl .owl-stage-outer, .hero-owl .owl-stage, .hero-owl .owl-item { height: var(--hero-h); }
.hero-slide { display: block; height: var(--hero-h); background-size: cover; background-position: center; position: relative; text-decoration: none; color: inherit; }
.hero-dim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 18, 15, .15) 22%, rgba(8, 18, 15, .80) 100%); }
.slide-caption { position: absolute; left: 0; right: 0; bottom: 74px; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.slide-caption .eyebrow { font-size: .66rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.slide-caption h2 { font-size: 1.95rem; font-weight: 600; margin: 6px 0 0; text-shadow: 0 2px 18px rgba(0, 0, 0, .7); }

.hero .owl-dots { position: absolute; left: 0; right: 0; bottom: 40px; z-index: 3; text-align: center; }
.hero .owl-dots .owl-dot span { width: 8px; height: 8px; margin: 0 4px; display: block; background: rgba(255, 255, 255, .45); border-radius: 50%; transition: width .3s ease, background-color .3s ease; }
.hero .owl-dots .owl-dot.active span { background: var(--gold); width: 24px; border-radius: 6px; }
.hero .owl-dots .owl-dot:focus { outline: 0; }
.hero .owl-dots .owl-dot:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 50%; }

/* ===================== İÇERİK ===================== */
.content {
    position: relative; z-index: 2; margin-top: -24px;
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 10% 4%, var(--tint-1), transparent 38%),
        radial-gradient(circle at 92% 98%, var(--tint-2), transparent 42%);
    border-top-left-radius: 28px; border-top-right-radius: 28px;
    box-shadow: 0 -16px 30px -20px rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(201, 162, 39, .35);
    transition: background-color .35s ease;
}
.content::before { content: ""; display: block; width: 44px; height: 4px; border-radius: 4px; margin: 12px auto 0;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); }

/* ===================== ORTAK BÖLÜM ===================== */
.panel { background: var(--surface); border-radius: 24px; box-shadow: var(--shadow); padding: 28px 18px 30px; margin: 22px 14px; border: 1px solid var(--line);
    transition: background-color .35s ease, border-color .35s ease; }
.section-head { text-align: center; margin-bottom: 24px; }
.section-head .eyebrow { font-size: .66rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.section-head .motif { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--gold); margin: 4px 0 2px; }
.section-head .motif span { height: 1px; width: 30px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head .motif span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.section-head .motif i { font-size: 1rem; }
.section-head h3 { font-size: 1.95rem; font-weight: 700; color: var(--text); margin: 0; }
.section-head .sub { font-size: .82rem; color: var(--text-soft); margin-top: 4px; }

/* ===================== ÖNE ÇIKANLAR (OWL) ===================== */
.feature-owl .feature-card { text-align: center; width: 100%; }
.feature-owl .thumb { width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; object-fit: cover; background: var(--surface-2); box-shadow: var(--shadow-soft); border: 1px solid rgba(201, 162, 39, .25); }
.feature-owl .name { display: block; margin-top: 10px; font-size: .82rem; font-weight: 500; line-height: 1.25; color: var(--text); min-height: 2.3em; }
.feature-owl .owl-stage { display: flex; }
.feature-owl .owl-item { display: flex; }
.feature-owl .price { display: block; margin-top: 3px; font-size: .82rem; font-weight: 600; color: var(--gold); }
.feature-owl { position: relative; }
.feature-owl .owl-nav { margin: 0; }
.feature-owl .owl-nav button.owl-prev,
.feature-owl .owl-nav button.owl-next {
    position: absolute; top: 34%; transform: translateY(-50%);
    width: 30px; height: 30px; margin: 0; padding: 0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10, 12, 10, .42) !important; color: #fff !important;
    border: 1px solid rgba(201, 162, 39, .45) !important; font-size: .95rem;
    opacity: .5; transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}
.feature-owl .owl-nav button.owl-prev { left: -6px; }
.feature-owl .owl-nav button.owl-next { right: -6px; }
.feature-owl .owl-nav button.owl-prev:hover,
.feature-owl .owl-nav button.owl-next:hover { opacity: 1; background: var(--gold) !important; color: #2a2207 !important; }

.feature-card a { text-decoration: none; color: inherit; }

/* ===================== KATEGORİLER =====================
   KART ORANI KARE (aspect-ratio: 1/1) — sabit yükseklik DEĞİL.
   Eskiden min-height:86px sabitti: telefonda kabul edilebilirdi ama kart genişledikçe
   (tablet/masaüstünde iki sütun ~500-980px'e çıkıyor) oran 11:1'e kadar bozuluyor ve
   kategori görseli okunamayan ince bir şeride dönüşüyordu.
   Sütun sayısı ekranla birlikte artar; böylece kart KARE kalırken devasa büyümez. */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 600px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1300px) { .cat-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; } }

.cat-btn { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; aspect-ratio: 1 / 1; min-height: 86px; padding: 14px 12px; border-radius: 16px;
    background: linear-gradient(160deg, var(--cat-bg-2), var(--cat-bg)); color: var(--cat-text); font-weight: 500; font-size: 1rem; text-decoration: none; line-height: 1.22; overflow: hidden;
    border: 1px solid rgba(201, 162, 39, .28); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.cat-btn::before { content: ""; position: absolute; inset: 0; background: radial-gradient(130% 100% at 0% 0%, rgba(201, 162, 39, .22), transparent 55%); opacity: 0; transition: opacity .3s ease; }
.cat-btn::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .3s ease; }
.cat-btn:hover, .cat-btn:active { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 18px 30px -18px rgba(0, 0, 0, .7), 0 0 0 1px rgba(201, 162, 39, .25); }
.cat-btn:hover::before { opacity: 1; }
.cat-btn:hover::after { transform: scaleY(1); }
.cat-btn .cat-ad { position: relative; z-index: 2; }
/* Kategori görseli varsa: fotoğraf kartı TAMAMEN ve KARARTMASIZ doldurur; ad ALTTAKİ koyu
   şeride yazılır. Eski tasarım fotoğrafın tümüne koyu geçiş bindirip adı ortaya yazıyordu —
   fotoğraf "geride/basık" görünüyor, ad da fotoğrafa karışıp zor okunuyordu (kullanıcı
   bildirimi, 18.08.2026). Şerit alt kenardan yukarı hızla koyulaşır ve yazı en az %80 örtük
   bölgede durur: ad HANGİ fotoğrafın üstünde olursa olsun net okunur (görme bozukluğu şartı —
   yazı fotoğraf parlaklığına bırakılmaz), fotoğrafın kalanı ise olduğu gibi canlı kalır. */
.cat-btn.has-img { background-image: var(--cat-img); background-size: cover; background-position: center;
    color: #fff; border-color: rgba(201, 162, 39, .55); align-items: flex-end; padding: 0; }
.cat-btn.has-img .cat-ad { width: 100%; padding: 30px 12px 12px; font-weight: 700; font-size: 1.02rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .9);
    background: linear-gradient(180deg, rgba(9, 7, 4, 0), rgba(9, 7, 4, .55) 14px, rgba(9, 7, 4, .8) 30px, rgba(9, 7, 4, .88)); }

/* ===================== KATEGORİ AÇIKLAMASI ===================== */
.kat-aciklama { margin: 14px 16px 0; padding: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.55; }

/* ===================== ALT KATEGORİ ÇİPLERİ (kategori sayfası) ===================== */
.alt-kat-serit { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px 16px 4px; }
.alt-kat-cip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px;
    background: linear-gradient(160deg, var(--cat-bg-2), var(--cat-bg)); color: var(--cat-text);
    text-decoration: none; font-size: .92rem; font-weight: 500; border: 1px solid rgba(201, 162, 39, .3);
    box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.alt-kat-cip:hover, .alt-kat-cip:active { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 12px 22px -14px rgba(0, 0, 0, .6); }
.alt-kat-cip i { color: var(--gold); }

/* ===================== HAKKIMIZDA ===================== */
.about-card { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-img { width: 100%; height: 175px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(201, 162, 39, .25); box-shadow: var(--shadow-soft); }
.about-text p { color: var(--text-soft); line-height: 1.7; margin: 0 0 12px; font-size: .95rem; }

/* ===================== KONUM ===================== */
.loc-card { display: flex; align-items: center; gap: 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; padding: 18px; box-shadow: var(--shadow-soft); }
.loc-icon { flex: 0 0 56px; height: 56px; width: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2207; font-size: 1.5rem; box-shadow: 0 8px 18px -10px var(--gold); }
.loc-line { font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.loc-line strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .6px; color: var(--text-soft); font-weight: 500; }

/* Gömülü harita (Ayar.HaritaEmbed — admin whitelist ile doğrulanmış <iframe>) */
.harita-gomili { margin-top: 16px; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); line-height: 0; }
.harita-gomili iframe { display: block; width: 100%; height: 280px; border: 0; }

.pill-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: #fff; text-decoration: none; padding: 12px 22px; border: 0; border-radius: 999px;
    font-weight: 500; font-size: .94rem; cursor: pointer; transition: transform .2s ease, background-color .25s ease, filter .2s ease; box-shadow: var(--shadow-soft); }
.pill-btn:hover { transform: translateY(-2px); background: var(--green); }
.pill-btn.gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2207; }
.pill-btn.gold:hover { filter: brightness(1.05); }

/* ===================== FORM ===================== */
.form-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.ft { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 6px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--line);
    color: var(--text-soft); font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .2s ease; }
.ft i { font-size: 1.25rem; }
.ft:hover { border-color: rgba(201, 162, 39, .5); color: var(--text); }
.ft.active { background: linear-gradient(160deg, var(--gold-light), var(--gold)); color: #2a2207; border-color: var(--gold); box-shadow: 0 8px 18px -12px var(--gold); }
.ff { margin-bottom: 12px; }
.ff .form-control { background: var(--input-bg); border: 1px solid var(--line); color: var(--text); border-radius: 12px; padding: 12px 14px; }
.ff .form-control::placeholder { color: var(--text-soft); }
.ff .form-control:focus { background: var(--input-bg); color: var(--text); border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201, 162, 39, .18); }
.form-msg { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 14px; padding: 12px; border-radius: 12px;
    background: rgba(201, 162, 39, .12); border: 1px solid rgba(201, 162, 39, .4); color: var(--gold-deep); font-weight: 500; }
[data-bs-theme="dark"] .form-msg { color: var(--gold-light); }

/* ===================== İLETİŞİM ===================== */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ci { flex: 0 0 42px; height: 42px; width: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); color: var(--gold); font-size: 1.15rem; border: 1px solid rgba(201, 162, 39, .3); }
.contact-list .label { font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; color: var(--text-soft); }
.contact-list .value { font-size: .98rem; color: var(--text); font-weight: 500; text-decoration: none; }
a.value:hover { color: var(--gold); }

/* ===================== SAĞ/SOL MENÜ (OFFCANVAS) ===================== */
.offcanvas { background: var(--header-bg); color: #fff; }
.offcanvas-header { border-bottom: 1px solid rgba(201, 162, 39, .25); }
.offcanvas-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }
.offcanvas .btn-close { filter: invert(1) grayscale(1) brightness(1.6); }
.side-nav { list-style: none; margin: 8px 0 0; padding: 0; }
.side-nav li { border-bottom: 1px solid rgba(255, 255, 255, .06); }
.side-nav a { display: flex; align-items: center; gap: 14px; padding: 16px 6px; color: #eaeaea; text-decoration: none; font-size: 1.02rem; transition: color .2s ease, padding-left .2s ease; }
.side-nav a i { color: var(--gold); font-size: 1.15rem; width: 22px; text-align: center; }
.side-nav a:hover { color: var(--gold-light); padding-left: 10px; }
.menu-label { font-size: .64rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin: 20px 6px 6px; }
.menu-label:first-child { margin-top: 4px; }
.cat-nav { list-style: none; margin: 2px 0 0; padding: 0; }
.cat-nav li { border-bottom: 1px solid rgba(255, 255, 255, .05); }
.cat-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 6px; color: #d8d8d8; text-decoration: none; font-size: .94rem; transition: color .2s ease, padding-left .2s ease; }
.cat-nav a i { color: var(--gold); font-size: .68rem; }
.cat-nav a.active { color: var(--gold-light); }
.cat-nav a:hover { color: var(--gold-light); padding-left: 10px; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--header-bg); color: #c9c9c9; text-align: center; padding: 30px 18px 26px; margin-top: 24px; border-top: 1px solid rgba(201, 162, 39, .25); }
.site-footer .b-main { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.site-footer .footer-logo { display: block; margin: 0 auto; height: 48px; max-width: 240px; }
.site-footer .socials { display: flex; justify-content: center; gap: 18px; margin: 14px 0; }
.site-footer .socials a { color: #fff; font-size: 1.25rem; transition: color .2s ease, transform .2s ease; }
.site-footer .socials a:hover { color: var(--gold); transform: translateY(-2px); }
.site-footer small { color: #7f7f7f; font-size: .76rem; }
.site-footer .footer-credit { display: block; margin-top: 6px; }
.site-footer .footer-credit a { color: var(--gold); text-decoration: none; font-size: .78rem; opacity: .9; transition: opacity .2s ease, color .2s ease; }
.site-footer .footer-credit a:hover { opacity: 1; color: var(--gold-light); }

/* Meşgul buton spinner (AJAX formlar) */
.yukleniyor { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em;
    border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
    animation: yukleniyorDon .6s linear infinite; }
@keyframes yukleniyorDon { to { transform: rotate(360deg); } }

/* ===================== QMODAL (ÖZEL SONUÇ/ONAY MODALI) ===================== */
/* "Tamam" / "Evet" denilmeden kapanmaz; overlay tıklaması ve Esc etkisizdir (site.js -> window.QModal). */
.qm-overlay { position: fixed; inset: 0; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0, 0, 0, .55); }
.qm-overlay[hidden] { display: none; }
.qm-box { width: 100%; max-width: 420px; background: var(--surface); color: var(--text); border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: center; box-shadow: 0 20px 60px rgba(0, 0, 0, .35); }
.qm-ikon i { font-size: 2.6rem; line-height: 1; }
.qm-box.qm-ok .qm-ikon i { color: #2e7d52; }
.qm-box.qm-hata .qm-ikon i { color: #c0392b; }
.qm-box.qm-uyari .qm-ikon i { color: #b8860b; }
.qm-box.qm-onay .qm-ikon i { color: var(--gold); }
.qm-mesaj { margin: 14px 0 20px; font-size: 1rem; line-height: 1.5; white-space: pre-line; }
.qm-aksiyon { display: flex; gap: 10px; justify-content: center; }
.qm-btn { border: 0; border-radius: 999px; padding: 9px 24px; font-weight: 600; cursor: pointer; font-size: .92rem; }
.qm-btn-ana { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2207; }
.qm-btn-iptal { background: transparent; border: 1px solid var(--line); color: var(--text-soft); }

/* ===================== ÇEREZ BİLDİRİMİ (alt bant) ===================== */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1030;
    display: flex; align-items: center; gap: 12px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--surface); color: var(--text); border-top: 1px solid rgba(201, 162, 39, .35);
    box-shadow: 0 -12px 30px -20px rgba(0, 0, 0, .6); font-size: .9rem; line-height: 1.45;
    animation: cookieUp .35s ease both; }
.cookie-bar[hidden] { display: none; }
.cookie-bar .bi-cookie { color: var(--gold); font-size: 1.3rem; flex: 0 0 auto; }
.cookie-text { flex: 1 1 auto; color: var(--text-soft); }
.cookie-ok { flex: 0 0 auto; cursor: pointer; border: 0; border-radius: 10px; padding: 9px 20px;
    font-family: inherit; font-weight: 600; font-size: .88rem; color: #1b1b1b;
    background: var(--gold); transition: background .2s ease, transform .2s ease; }
.cookie-ok:hover { background: var(--gold-light); transform: translateY(-1px); }
@keyframes cookieUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 480px) {
    .cookie-bar { flex-wrap: wrap; justify-content: center; text-align: center; }
    .cookie-ok { flex: 1 1 100%; padding: 11px; }
}

/* ===================== KATEGORİ BAŞLIK ÇUBUĞU ===================== */
.cat-bar { position: sticky; top: var(--header-h); z-index: 1020; display: flex; align-items: center; gap: 12px;
    height: var(--catbar-h); padding: 0 16px; background: var(--surface); border-bottom: 1px solid var(--line);
    transition: background-color .35s ease, border-color .35s ease; }
.back-link { display: flex; align-items: center; justify-content: center; color: var(--text); font-size: 1.35rem; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.back-link:hover { color: var(--gold); transform: translateX(-2px); }
.cat-bar h1 { font-family: 'Jost', sans-serif; font-size: 1.18rem; font-weight: 600; margin: 0; color: var(--text); }
.cat-bar span.title { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.cat-bar .count { margin-left: auto; font-size: .76rem; color: var(--text-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 4px 10px; border-radius: 999px; }

/* Yatay kaydırılabilir kategori şeridi (kategori + ürün sayfası) */
.cat-strip { position: sticky; top: var(--header-h); z-index: 1020; background: var(--surface); border-bottom: 1px solid var(--line); }
.cat-strip-inner { display: flex; align-items: center; gap: 8px; min-height: var(--catbar-h); overflow-x: auto; overflow-y: hidden;
    white-space: nowrap; padding: 0 14px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-chip { flex: 0 0 auto; padding: 10px 16px; border-radius: 999px; font-size: .86rem; font-weight: 500; line-height: 1;
    text-decoration: none; color: var(--text); background: var(--surface-2); border: 1px solid var(--line);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.cat-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
[data-bs-theme="dark"] .cat-chip:hover { color: var(--gold-light); }
.cat-chip.active { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2207;
    border-color: var(--gold); font-weight: 600; box-shadow: 0 6px 14px -8px var(--gold); }

/* ===================== ÜRÜN LİSTESİ (KATEGORİ SAYFASI) ===================== */
.product-list { padding: 6px 0 8px; background: var(--bg); }
.product { text-decoration: none; color: inherit; display: flex; gap: 14px; align-items: flex-start; padding: 18px 16px; background: var(--surface);
    border-bottom: 1px solid var(--line); transition: background-color .2s ease; }
.product:active { background: var(--surface-2); }
.p-thumb { flex: 0 0 78px; width: 78px; height: 78px; border-radius: 14px; object-fit: cover;
    border: 1px solid rgba(201, 162, 39, .28); background: var(--surface-2); box-shadow: var(--shadow-soft); }
.p-body { flex: 1; min-width: 0; }
.product .p-name { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0; margin: 0 0 5px; color: var(--text); }
.p-desc { font-size: .85rem; line-height: 1.45; color: var(--text-soft); margin: 0 0 7px;
    display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product .p-price { font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: 9px; }
.p-meta { display: flex; gap: 18px; font-size: .78rem; color: var(--text-soft); }
.p-meta i { color: var(--gold); margin-right: 4px; }
.p-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 9px; }
.kcal-chip { display: inline-flex; align-items: center; gap: 4px; font-size: .74rem; font-weight: 600; color: var(--gold-deep); background: rgba(201, 162, 39, .12); border: 1px solid rgba(201, 162, 39, .4); padding: 2px 9px; border-radius: 999px; }
[data-bs-theme="dark"] .kcal-chip { color: var(--gold-light); }
.alg-warn { display: inline-flex; align-items: center; color: var(--warn); font-size: .85rem; margin-left: 2px; }
.alg { width: 19px; height: 19px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .64rem; font-weight: 700; color: var(--warn); background: rgba(192, 112, 42, .1); border: 1px solid rgba(192, 112, 42, .4); }
.empty-list { text-align: center; color: var(--text-soft); padding: 50px 16px; background: var(--bg); }
.empty-list i { font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 12px; }

/* ===================== ÜRÜN DETAY ===================== */
/* Parallax: görsel sticky ile sabitlenir; .detail-body (z-index:2) üstüne kayar. */
.product-hero { position: sticky; top: calc(var(--header-h) + var(--catbar-h)); z-index: 1; background: var(--header-bg); overflow: hidden; }
.ph-owl, .ph-owl .owl-stage-outer, .ph-owl .owl-stage, .ph-owl .owl-item { height: var(--ph-h); }
.ph-slide { height: var(--ph-h); background-size: cover; background-position: center; }
.product-hero .owl-dots { position: absolute; left: 0; right: 0; bottom: 30px; z-index: 4; text-align: center; }
.product-hero .owl-dots .owl-dot span { width: 8px; height: 8px; margin: 0 4px; display: block; background: rgba(255, 255, 255, .55); border-radius: 50%; transition: width .3s ease; }
.product-hero .owl-dots .owl-dot.active span { background: var(--gold); width: 24px; border-radius: 6px; }
.product-hero .owl-dots .owl-dot:focus { outline: 0; }
.product-hero .owl-dots .owl-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 50%; }
.fav-btn { position: absolute; top: 14px; right: 14px; z-index: 5; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: var(--gold); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .5); cursor: pointer; transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.fav-btn:hover { transform: scale(1.08); }
.fav-btn.active { background: var(--gold); color: #fff; }

/* Beğeni sayacı: favBtn'in hemen altında, fotoğraf üzerinde her temada okunur sabit renkli rozet */
.fav-count { position: absolute; top: 64px; right: 14px; z-index: 5; display: inline-flex; align-items: center; gap: 5px;
    padding: 5px 11px; border-radius: 999px; background: rgba(10, 12, 10, .55); color: #fff; font-size: .82rem;
    font-weight: 600; line-height: 1; box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .5); }
.fav-count i { color: #e5484d; font-size: .78rem; }
.fav-count b { font-weight: 700; }

/* Ürün detay küçük görselleri (thumbnail) — birden fazla görselde carousel ile senkron */
.ph-thumbs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 14px 12px 2px; }
.ph-thumb { flex: 0 0 auto; width: 54px; height: 54px; padding: 0; border: 2px solid transparent; border-radius: 10px;
    background-size: cover; background-position: center; cursor: pointer; opacity: .55;
    box-shadow: 0 2px 8px -4px rgba(0, 0, 0, .4); transition: opacity .2s ease, border-color .2s ease, transform .15s ease; }
.ph-thumb:hover { opacity: 1; transform: translateY(-2px); }
.ph-thumb.active { opacity: 1; border-color: var(--gold); }

.detail-body { position: relative; z-index: 2; margin-top: -22px; background: var(--surface);
    background-image: radial-gradient(circle at 92% 100%, var(--tint-2), transparent 45%);
    border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0 -14px 28px -20px rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(201, 162, 39, .35); padding: 18px 18px 8px; transition: background-color .35s ease; }

.nav-tabs { border-bottom: 1px solid var(--line); margin-bottom: 16px; gap: 4px; }
.nav-tabs .nav-link { color: var(--text-soft); border: 0; border-bottom: 2px solid transparent; font-weight: 500; padding: 9px 14px; background: transparent; }
.nav-tabs .nav-link:hover { color: var(--text); border-color: transparent; }
.nav-tabs .nav-link.active { color: var(--text); background: transparent; border-bottom-color: var(--gold); }

.detail-body .p-name { font-size: 1.7rem; font-weight: 700; color: var(--text); margin: 2px 0 4px; }
.detail-body .p-price { font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 0 0 18px; }
.detail-body .p-price b { color: var(--gold); }
.detail-body .p-tags { margin: -8px 0 18px; }
.detail-body .kcal-chip { font-size: .82rem; gap: 5px; padding: 4px 12px; }
.alg-mini { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 600; color: var(--warn); background: rgba(192, 112, 42, .1); border: 1px solid rgba(192, 112, 42, .4); padding: 4px 12px; border-radius: 999px; }

.ing-list { margin: 0; }
.ing { font-size: .92rem; line-height: 1.5; color: var(--text); margin: 0 0 14px; }
.kcal { color: var(--gold); font-weight: 600; }
.ing-total { font-weight: 700; color: var(--text); margin: 6px 0 0; }
/* Malzeme miktarı (migration 016). Bilgi taşır -> soluklaştırılmaz; adın yanında
   ayrı bir dolgu rozetiyle durur ki "2 adet" ile ad birbirine karışmasın. */
.ing-mik { display: inline-block; margin: 0 4px; padding: 1px 8px; border-radius: 999px; background: rgba(201, 162, 39, .14); color: var(--gold-deep); font-size: .8rem; font-weight: 700; }
/* Kalori tahmin uyarısı: okunur kalmalı, süs değil — kalori sayısı sunulurken zorunlu bilgi. */
.ing-tahmin { display: flex; align-items: flex-start; gap: 7px; margin: 12px 0 0; padding: 9px 12px; border-radius: 8px; background: rgba(201, 162, 39, .10); border-left: 3px solid var(--gold); color: var(--text); font-size: .84rem; line-height: 1.45; }
.ing-tahmin i { color: var(--gold-deep); margin-top: 2px; }
.diet-note { font-size: .82rem; color: var(--text-soft); font-style: italic; margin: 12px 0 0; }

.calc-card { margin-top: 22px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.calc-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.calc-head i { color: var(--gold); font-size: 1.25rem; }
.calc-head h3 { font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--text); }
.kcal-item { display: flex; align-items: center; gap: 11px; padding: 8px 0; cursor: pointer; margin: 0; }
.kcal-item input { width: 18px; height: 18px; accent-color: var(--gold); flex: 0 0 auto; cursor: pointer; }
.ki-name { flex: 0 0 40%; font-size: .85rem; color: var(--text); }
.ki-bar { flex: 1; height: 7px; border-radius: 6px; background: var(--line); overflow: hidden; }
.ki-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); border-radius: 6px; transition: opacity .2s ease; }
.ki-val { flex: 0 0 44px; text-align: right; font-size: .84rem; font-weight: 600; color: var(--text-soft); }
.kcal-item input:not(:checked) ~ .ki-name, .kcal-item input:not(:checked) ~ .ki-val { opacity: .4; }
.kcal-item input:not(:checked) ~ .ki-bar > span { opacity: .2; }
.calc-total { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line); }
.calc-total .num { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.calc-total .unit { font-size: .9rem; color: var(--text-soft); }
.calc-hint { text-align: center; font-size: .74rem; color: var(--text-soft); margin-top: 4px; }

.allergen-card { margin-top: 18px; background: rgba(192, 112, 42, .06); border: 1px solid rgba(192, 112, 42, .35); border-radius: 18px; padding: 18px; }
.allergen-card .calc-head i { color: var(--warn); }
.alg-intro { font-size: .88rem; color: var(--text); margin: 0 0 12px; }
.alg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.alg-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 9px 11px; }
.alg-ic { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .76rem; font-weight: 700; background: var(--warn); color: #fff; flex: 0 0 auto; }
.alg-foot { font-size: .78rem; color: var(--text-soft); margin: 13px 0 0; line-height: 1.5; }

.share { display: flex; align-items: center; gap: 10px; margin: 24px 0 6px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.share .lbl { font-weight: 600; color: var(--text); }
.share a { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; background: #16181a; text-decoration: none; transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.share a:hover { transform: translateY(-2px); background: var(--gold); color: #2a2207; }

.empty-comments { text-align: center; color: var(--text-soft); padding: 30px 10px; }
.empty-comments i { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 10px; }

/* Yorum kartı + form */
.yorum-kart { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; margin-bottom: 12px; }
.yorum-kart .yk-ust { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.yorum-kart .yk-ad { font-weight: 600; color: var(--text); }
.yorum-kart .yk-tarih { font-size: .74rem; color: var(--text-soft); }
.yorum-kart .yk-metin { font-size: .9rem; color: var(--text); line-height: 1.5; }
.yorum-form { margin-top: 18px; }

/* Yorum kartı puan gösterimi (salt okunur) */
.yk-puan { margin-bottom: 6px; line-height: 1; }
.yk-puan i { font-size: .82rem; color: var(--line); margin-inline-end: 1px; }
.yk-puan i.bi-star-fill { color: var(--gold); }

/* Yıldız puan girişi (yorum formu) — erişilebilir: gerçek radio input'lar görsel olarak gizli
   (visually-hidden, TAB sırasında ve odakta kalır), etiketler ikon gösterir. Sağdan sola (row-reverse)
   DOM sırası ~5,4,3,2,1~ ile "checked ~ label" tekniği: soldan sağa 1..5 dolu görünüm sağlar. */
.star-rating { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-rating input {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.star-rating label { cursor: pointer; font-size: 1.55rem; line-height: 1; color: var(--line); padding: 3px; border-radius: 8px; transition: color .15s ease; }
.star-rating label i { pointer-events: none; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--gold); }
.star-rating input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.star-rating-label { display: block; font-size: .82rem; color: var(--text-soft); margin-bottom: 6px; }

/* ===================== ÜRÜN GERİ BİLDİRİM MODALI ===================== */
/* "PAYLAŞ" altındaki açılış butonu */
.gb-acilis { margin-top: 8px; }
/* Modal gövdesi: mevcut .qm-overlay/.qm-box (bkz. yukarıda "QMODAL") ile aynı görünüm; form içeriği için genişlik/hizalama override'ı */
.gb-box { max-width: 460px; text-align: left; }
.gb-baslik { margin: 0 0 16px; font-size: 1.3rem; font-weight: 700; color: var(--text); text-align: center; }
.gb-form .ff { margin-bottom: 10px; }
.gb-form .ff:last-of-type { margin-bottom: 0; }
.gb-hata { color: #c0392b; font-size: .84rem; background: rgba(192, 57, 43, .1); border: 1px solid rgba(192, 57, 43, .35); border-radius: 10px; padding: 9px 12px; margin-bottom: 12px; }
.gb-aksiyon { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gb-aksiyon .pill-btn { padding: 10px 20px; }

/* ===================== GARSON ÇAĞIRMA (floating buton + modal) ===================== */
/* Masa QR'ı ile girilmişse ve Ayar.GarsonCagriAktif ise görünür (bkz. _Layout.cshtml). */
.waiter-fab {
    position: fixed; z-index: 1040; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); right: 16px;
    width: 56px; height: 56px; border-radius: 50%; border: 0; padding: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2207;
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .55); cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.waiter-fab:hover { transform: translateY(-2px) scale(1.05); }
.waiter-fab:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.waiter-fab .bi-bell-fill { animation: waiterBell 2.6s ease-in-out infinite; }
@keyframes waiterBell {
    0%, 84%, 100% { transform: rotate(0); }
    87% { transform: rotate(-12deg); }
    90% { transform: rotate(10deg); }
    93% { transform: rotate(-6deg); }
    96% { transform: rotate(0); }
}
@media (prefers-reduced-motion: reduce) { .waiter-fab .bi-bell-fill { animation: none; } }

/* Modal gövdesi .qm-overlay/.qm-box ile aynı görünüm (bkz. QMODAL); form için .gb-box/.gb-form yeniden kullanılır */
.waiter-tur-secim { display: flex; gap: 8px; margin-bottom: 12px; }
.waiter-tur-opt { flex: 1; position: relative; cursor: pointer; margin: 0; }
.waiter-tur-opt input {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.waiter-tur-opt span {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 6px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line);
    color: var(--text-soft); font-size: .8rem; font-weight: 500; text-align: center;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.waiter-tur-opt span i { font-size: 1.15rem; }
.waiter-tur-opt input:checked + span { background: linear-gradient(160deg, var(--gold-light), var(--gold)); color: #2a2207; border-color: var(--gold); }
.waiter-tur-opt input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===================== YUKARI ÇIK (top-fab) =====================
   Sayfa ~400px kaydırılınca belirir (site.js). Gizliyken pointer-events:none —
   görünmezken tıklamayı yutmasın.
   ⚠ DOLGULU zemin + tam kontrastlı ikon (yalnız-kenarlıklı/ghost buton KULLANILMAZ):
   düşük görme keskinliğinde şeffaf buton fark edilmiyor. Hover TEK ve SABİT bir renge
   döner (altın dolgu + koyu ikon) — opaklık oynatma yeterli değildir.
   Garson butonu (.waiter-fab, 56px) sağ altta duruyorsa .top-fab--ust ile bir kat yukarı
   alınır; ikisi aynı anda görünürken üst üste binmesin. */
.top-fab {
    position: fixed; z-index: 1039; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); right: 16px;
    width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold); padding: 0;
    background: var(--cat-bg); color: var(--gold-light);
    font-size: 1.35rem; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .55); cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease,
                background-color .2s ease, color .2s ease;
}
.top-fab.gorunur { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.top-fab:hover, .top-fab:focus-visible { background: var(--gold); color: #2a2207; }
.top-fab:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
.top-fab--ust { bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
@media (prefers-reduced-motion: reduce) { .top-fab { transition: opacity .2s ease, visibility .2s ease; transform: none; } }

/* ===================== REVEAL ===================== */
.js .reveal { opacity: 0; }
.js #catGrid .cat-btn { opacity: 0; }
/* ⚠ Burada prefers-reduced-motion için "opacity:1 !important" override'ı YOK (18.08.2026'da
   kaldırıldı): hareket azaltmada animasyon artık site.js'te hareketsiz FADE'e düşürülüyor;
   !important kalsaydı fade görünmez olurdu. Hareketsizlik güvencesi JS'te (animateIn -> reduce
   dalı yalnız opacity animasyonu yapar); GSAP hiç inmezse JS'teki fallback zaten anında gösterir. */

/* ===================== HATA SAYFASI — referans no ===================== */
/* Hata numarası telefonda okunacak/ekran görüntüsünden aktarılacak bir bilgidir:
   soluk ("sub"/muted) stil KULLANILMAZ. Dolgulu zemin + tam kontrastlı metin +
   tek aralıklı yazı tipi → 0/O, 8/B karışmasın. */
.hata-ref {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 14px auto 4px;
    padding: 9px 16px;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    color: var(--text);
    font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
    font-size: .95rem;
    letter-spacing: .04em;
}

    .hata-ref b {
        font-weight: 700;
        color: var(--text);
    }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 576px) {
    :root { --hero-h: 380px; --ph-h: 400px; }
    .feature-card .name { font-size: .92rem; }
    .about-card { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
    .about-img { height: 210px; }
    .brand .b-main { font-size: 1.62rem; }
    .slide-caption h2 { font-size: 2.3rem; }
    .detail-body .p-name { font-size: 2rem; }
}
