/* ===================================================================
   Koç Pide ve Izgara — Premium Siyah & Altın Tema
   Mobil öncelikli, animasyonlu
   =================================================================== */

:root {
  --black:      #0a0a0a;
  --black-2:    #0f0f0f;
  --panel:      #141210;
  --panel-2:    #1b1813;
  --gold:       #d4af37;
  --gold-light: #f1d985;
  --gold-soft:  #e9cd78;
  --gold-dark:  #a97f1e;
  --gold-grad:  linear-gradient(135deg, #f7e9a0 0%, #e6c757 35%, #d4af37 60%, #a97f1e 100%);
  --text:       #f4f0e6;
  --muted:      #b1a892;
  --muted-2:    #8a836f;
  --border:     rgba(212, 175, 55, 0.18);
  --border-2:   rgba(212, 175, 55, 0.32);
  --shadow:     0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold:0 14px 40px rgba(212, 175, 55, 0.14);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1200px;
  --nav-h:      78px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --serif:      "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:       "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }

/* Altın gradyan metin */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

::selection { background: var(--gold); color: #000; }

/* Kaydırma çubuğu */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #0c0c0c; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-dark), var(--gold)); border-radius: 10px; }

/* ---------------- Düzen ---------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background:
    radial-gradient(1200px 500px at 50% -10%, rgba(212,175,55,0.05), transparent 60%),
    var(--black-2); }

/* Bölüm başlığı */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 28px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.sec-title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.sec-desc { color: var(--muted); font-size: 1.02rem; }

/* Altın süs ayraç */
.divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px auto 0; }
.divider span { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider i { width: 9px; height: 9px; transform: rotate(45deg); background: var(--gold); display: block; }

/* ---------------- Butonlar ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.03em; transition: all 0.35s var(--ease); cursor: pointer;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold { background: var(--gold-grad); color: #1a1206; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(212,175,55,0.34); }
.btn-outline { border: 1.5px solid var(--border-2); color: var(--gold); background: rgba(212,175,55,0.04); }
.btn-outline:hover { background: var(--gold); color: #1a1206; border-color: var(--gold); transform: translateY(-3px); }
.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* ---------------- Navbar ---------------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
  background: linear-gradient(180deg, rgba(0,0,0,0.55), transparent);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
  height: 66px;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand__logo {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border-2); padding: 2px; background: #0c0c0c;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.06), var(--shadow-gold);
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(8deg); }
.nav.scrolled .brand__logo { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.brand__name b { color: var(--gold); }
.brand__sub { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 16px; font-size: 0.92rem; font-weight: 500;
  color: var(--text); border-radius: 8px; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; padding: 11px 24px; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; border-radius: 10px; border: 1px solid var(--border); }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero / Slider ---------------- */
.hero { position: relative; height: 100vh; min-height: 600px; width: 100%; }
.hero .swiper { width: 100%; height: 100%; }
.hero-slide { position: relative; height: 100%; width: 100%; overflow: hidden; }
.hero-slide__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.15); transition: transform 7s ease-out;
}
.swiper-slide-active .hero-slide__bg { transform: scale(1); }
.hero-slide__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.32) 40%, rgba(10,10,10,0.9) 100%),
    radial-gradient(900px 600px at 50% 40%, transparent, rgba(0,0,0,0.45));
}
.hero-slide__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 0 22px; max-width: 900px; margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.82rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 6.4vw, 5.4rem); line-height: 1.08; margin-bottom: 22px; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5); overflow-wrap: break-word; max-width: 18ch; margin-inline: auto;
}
.hero-sub {
  font-size: clamp(1rem, 2.3vw, 1.35rem); color: #e8e2d4; max-width: 620px; margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Metin girişini Swiper'ın crossFade geçişi yönetir (slide ile birlikte belirir).
   Ayrı bir opacity animasyonu YOK -> metinler her zaman görünür kalır (güvenli).
   Aktif slide'da metne hafif yukarı süzülme + kademe için sadece transform/transition: */
.heroSwiper .hero-eyebrow, .heroSwiper .hero-title,
.heroSwiper .hero-sub, .heroSwiper .hero-actions {
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}
.heroSwiper.swiper-initialized .swiper-slide:not(.swiper-slide-active) .hero-slide__content > * { transform: translateY(26px); }
.heroSwiper.swiper-initialized .swiper-slide-active .hero-eyebrow { transition-delay: 0.15s; }
.heroSwiper.swiper-initialized .swiper-slide-active .hero-title { transition-delay: 0.28s; }
.heroSwiper.swiper-initialized .swiper-slide-active .hero-sub { transition-delay: 0.4s; }
.heroSwiper.swiper-initialized .swiper-slide-active .hero-actions { transition-delay: 0.52s; }

/* Profesyonel slider kontrol katmanı */
.hero-ui {
  position: absolute; left: 0; right: 0; bottom: 42px; z-index: 5;
  max-width: var(--maxw); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; pointer-events: none;
}
.hero-ui > * { pointer-events: auto; }
.hero-ui__count { font-family: var(--serif); font-size: 1.05rem; color: var(--text); display: flex; align-items: center; gap: 12px; letter-spacing: 0.05em; }
.hero-ui__count span:first-child { color: var(--gold); font-size: 1.9rem; font-weight: 700; }
.hero-ui__count i { width: 42px; height: 1px; background: var(--border-2); display: block; }
.hero-ui__count span:last-child { color: var(--muted); }

.hero-pagination { position: static !important; width: auto !important; display: flex; gap: 9px; }
.hero .swiper-pagination-bullet { background: rgba(255,255,255,0.45); opacity: 1; width: 9px; height: 9px; transition: all 0.35s var(--ease); margin: 0 !important; }
.hero .swiper-pagination-bullet-active { background: var(--gold); width: 32px; border-radius: 6px; box-shadow: 0 0 12px rgba(212,175,55,0.6); }

.hero-ui__nav { display: flex; gap: 12px; }
.hero-arrow { width: 54px; height: 54px; border-radius: 50%; color: var(--gold); border: 1px solid var(--border-2);
  background: rgba(10,10,10,0.4); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 1rem; transition: all 0.3s var(--ease); }
.hero-arrow:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: scale(1.05); }

.hero-progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.1); z-index: 5; }
.hero-progress__bar { display: block; height: 100%; width: 0; background: var(--gold-grad); box-shadow: 0 0 14px rgba(212,175,55,0.7); transition: width 0.15s linear; }


/* ---------------- Reveal animasyon ----------------
   Yalnızca JS aktifken gizlenir (html.js). JS yoksa içerik görünür kalır. */
.js [data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal="left"] { transform: translateX(-50px); }
.js [data-reveal="right"] { transform: translateX(50px); }
.js [data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }

/* ---------------- Hakkımızda ---------------- */
.about { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); position: relative; z-index: 2; }
.about__media::before {
  content: ""; position: absolute; inset: -16px -16px 16px 16px; border: 1.5px solid var(--border-2);
  border-radius: var(--radius); z-index: 1;
}
.about__badge {
  position: absolute; right: -18px; bottom: 26px; z-index: 3;
  background: var(--gold-grad); color: #1a1206; border-radius: var(--radius-sm);
  padding: 16px 22px; text-align: center; box-shadow: var(--shadow);
}
.about__badge b { font-family: var(--serif); font-size: 1.9rem; display: block; line-height: 1; }
.about__badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about__content .sec-title { text-align: left; }
.about__content .eyebrow::before { display: none; }
.about p { color: var(--muted); margin-bottom: 18px; }
.about__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 32px; }
.about__list li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.95rem; }
.about__list i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* İstatistikler */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(50px, 7vw, 80px); }
.stat { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--panel); transition: all 0.4s var(--ease); }
.stat:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow-gold); }
.stat b { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); display: block; line-height: 1; }
.stat span { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; display: block; }

/* ---------------- Özellikler ---------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  text-align: center; padding: 40px 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--black-2)); border: 1px solid var(--border);
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold-grad); transform: scaleX(0); transition: transform 0.4s var(--ease); }
.feature:hover { transform: translateY(-8px); border-color: var(--border-2); box-shadow: var(--shadow); }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: var(--gold);
  background: radial-gradient(circle, rgba(212,175,55,0.14), transparent 70%);
  border: 1px solid var(--border-2);
}
.feature h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ---------------- Öne çıkan menü kartları ---------------- */
.dish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dish {
  border-radius: var(--radius); overflow: hidden; background: var(--panel);
  border: 1px solid var(--border); transition: all 0.45s var(--ease); position: relative;
}
.dish:hover { transform: translateY(-10px); border-color: var(--border-2); box-shadow: var(--shadow); }
.dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--gold-grad); color: #1a1206;
}
.dish__body { padding: 22px 22px 24px; }
.dish__top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 10px; }
.dish__name { font-size: 1.25rem; font-family: var(--serif); }
.dish__price { font-family: var(--serif); font-size: 1.25rem; color: var(--gold); white-space: nowrap; font-weight: 700; }
.dish__desc { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

.section-cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }

/* ---------------- Galeri ---------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; border: 1px solid var(--border); }
.gallery__item:nth-child(1) { grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item::after { content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; inset: 0; display: grid; place-items: center; color: var(--gold); font-size: 1.6rem; background: rgba(10,10,10,0.55); opacity: 0; transition: opacity 0.4s; }
.gallery__item:hover img { transform: scale(1.12); }
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(5,5,5,0.94); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; animation: fadeIn 0.3s; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; border: 1px solid var(--border-2); }
.lightbox__close { position: absolute; top: 24px; right: 30px; font-size: 2rem; color: var(--gold); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------------- İletişim ---------------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex; gap: 18px; align-items: flex-start; padding: 24px;
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.35s var(--ease);
}
.info-card:hover { border-color: var(--border-2); transform: translateX(6px); }
.info-card i { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; color: var(--gold); background: rgba(212,175,55,0.1); border: 1px solid var(--border); }
.info-card h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; font-weight: 600; }
.info-card p, .info-card a { color: var(--text); font-size: 1rem; }
.info-card a:hover { color: var(--gold); }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 360px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.9) hue-rotate(180deg); }

/* ---------------- Footer ---------------- */
.footer { background: #070707; border-top: 1px solid var(--border); padding: clamp(56px, 7vw, 80px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer__brand img { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--border-2); padding: 3px; }
.footer p { color: var(--muted); font-size: 0.93rem; }
.footer h4 { color: var(--gold); font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: var(--muted); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a:hover { color: var(--gold); padding-left: 5px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); color: var(--gold); transition: all 0.35s var(--ease); }
.socials a:hover { background: var(--gold); color: #000; transform: translateY(-4px); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }
.footer__bottom a { color: var(--gold); }

/* ---------------- Yüzen butonlar ---------------- */
.floats { position: fixed; right: 20px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; box-shadow: var(--shadow); transition: all 0.35s var(--ease); }
.float-wa { background: #25d366; color: #fff; }
.float-wa:hover { transform: scale(1.1); }
.float-top { background: var(--gold-grad); color: #1a1206; opacity: 0; pointer-events: none; transform: translateY(20px); }
.float-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* ===================================================================
   MENÜ SAYFASI (QR)
   =================================================================== */
.menu-page { padding-top: 0; }
.menu-hero {
  position: relative; padding: clamp(110px, 16vw, 150px) 0 40px; text-align: center;
  background: radial-gradient(900px 400px at 50% 0%, rgba(212,175,55,0.08), transparent 60%), var(--black);
  border-bottom: 1px solid var(--border);
}
.menu-hero__logo { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px; border: 1.5px solid var(--border-2); padding: 4px; background: #0c0c0c; box-shadow: var(--shadow-gold); }
.menu-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 10px; }
.menu-hero p { color: var(--muted); }
.table-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 10px 24px;
  border-radius: 50px; background: var(--gold-grad); color: #1a1206; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold);
}

/* Yapışkan kategori navigasyonu */
.menu-nav { position: sticky; top: 0; z-index: 500; background: rgba(10,10,10,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.menu-nav__inner { display: flex; gap: 8px; overflow-x: auto; padding: 14px 0; scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-tab {
  white-space: nowrap; padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  color: var(--muted); border: 1px solid var(--border); transition: all 0.3s var(--ease); flex-shrink: 0;
}
.menu-tab:hover { color: var(--gold); border-color: var(--border-2); }
.menu-tab.active { background: var(--gold-grad); color: #1a1206; border-color: transparent; font-weight: 600; }

.menu-search { padding: 22px 0 0; }
.menu-search__box { position: relative; max-width: 440px; margin: 0 auto; }
.menu-search__box i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gold); }
.menu-search__box input {
  width: 100%; padding: 14px 18px 14px 48px; border-radius: 50px; background: var(--panel);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.95rem; outline: none; transition: border 0.3s;
}
.menu-search__box input:focus { border-color: var(--border-2); }
.menu-search__box input::placeholder { color: var(--muted-2); }

.menu-cat { padding-top: clamp(40px, 6vw, 64px); scroll-margin-top: 80px; }
.menu-cat__head { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.menu-cat__head .ico { font-size: 1.8rem; }
.menu-cat__head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.menu-cat__head .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-2), transparent); }

.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mitem {
  display: flex; gap: 18px; padding: 16px; border-radius: var(--radius); background: var(--panel);
  border: 1px solid var(--border); transition: all 0.4s var(--ease);
}
.mitem:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.mitem__img { width: 110px; height: 110px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.mitem__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mitem__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.mitem__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; }
.mitem__dots { flex: 1; border-bottom: 1px dotted var(--border-2); margin: 0 4px 6px; min-width: 14px; }
.mitem__price { font-family: var(--serif); font-size: 1.18rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.mitem__desc { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }
.mitem__badge { display: inline-block; margin-top: auto; padding-top: 8px; }
.mitem__badge span { display: inline-block; padding: 3px 12px; border-radius: 50px; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(212,175,55,0.14); color: var(--gold); border: 1px solid var(--border); }

.menu-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.menu-foot { text-align: center; padding: clamp(50px, 7vw, 80px) 0; color: var(--muted-2); }
.menu-foot a { color: var(--gold); }

/* ===================================================================
   DUYARLI (RESPONSIVE)
   =================================================================== */
@media (max-width: 992px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; margin: 0 auto; }
  .about__content .sec-title, .about__content .eyebrow, .about__content { text-align: center; }
  .about__content .eyebrow { justify-content: center; }
  .about__list { max-width: 480px; margin-left: auto; margin-right: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(82%, 340px);
    background: rgba(8,8,8,0.98); backdrop-filter: blur(16px); flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: 4px; padding: 100px 24px 40px;
    transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 999;
    border-left: 1px solid var(--border); box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 15px 16px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 16px 0 0; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item:nth-child(1) { grid-row: span 2; }
  .gallery__item:nth-child(6) { grid-column: span 1; }
  .about__badge { right: 50%; transform: translateX(50%); bottom: -24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .features { grid-template-columns: 1fr; }
  .dish-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .socials { justify-content: center; }
  .footer__links a:hover { padding-left: 0; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 14px 26px; }
  .mitem__img { width: 88px; height: 88px; }
  .brand__sub { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 1rem; }
  .brand__logo { width: 44px; height: 44px; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ===================================================================
   ÇOK SAYFALI: sabit nav, iç sayfa banner, CTA bandı
   =================================================================== */
.nav.solid { background: rgba(10,10,10,0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.5); border-bottom: 1px solid var(--border); }

.page-hero { position: relative; text-align: center; padding: calc(var(--nav-h) + 64px) 0 56px;
  background: radial-gradient(900px 420px at 50% 0%, rgba(212,175,55,0.1), transparent 62%),
    linear-gradient(180deg, #0c0b09, var(--black)); border-bottom: 1px solid var(--border); overflow: hidden; }
.page-hero::before, .page-hero::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%); }
.page-hero::before { top: -120px; left: -80px; }
.page-hero::after { bottom: -160px; right: -80px; }
.page-hero .eyebrow { justify-content: center; }
.page-hero__title { font-size: clamp(2.2rem, 5.5vw, 3.6rem); margin-bottom: 14px; position: relative; }
.page-hero__sub { color: var(--muted); max-width: 600px; margin: 0 auto; position: relative; }

.cta-band { padding: clamp(50px, 7vw, 80px) 0; }
.cta-band__inner { text-align: center; max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) 30px;
  border-radius: var(--radius); border: 1px solid var(--border-2);
  background: radial-gradient(700px 300px at 50% 0%, rgba(212,175,55,0.1), transparent 60%), var(--panel); }
.cta-band__inner h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 14px; }
.cta-band__inner p { color: var(--muted); margin-bottom: 30px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-ui { padding: 0 22px; bottom: 50px; }
  .hero-ui__count span:first-child { font-size: 1.4rem; }
  .hero-arrow { width: 46px; height: 46px; }
}
@media (max-width: 560px) {
  .hero-ui { justify-content: center; bottom: 60px; }
  .hero-ui__count, .hero-ui__nav { display: none; }
  .hero-pagination { justify-content: center; }
}

/* ===================================================================
   QR MENÜ SAYFASI v2 (kompakt başlık + kategori görünümü + sepet)
   =================================================================== */
.menu-body { background:
   radial-gradient(900px 500px at 50% -5%, rgba(212,175,55,0.06), transparent 60%), var(--black); }

/* Kompakt yapışkan başlık (boşluk yok) */
.mtopbar { position: sticky; top: 0; z-index: 600; background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.mtopbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mtopbar__brand { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; overflow: hidden; }
.mtopbar__brand img { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--border-2); padding: 2px; background: #0c0c0c; flex-shrink: 0; }
.mtopbar__brand span { font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mtopbar__brand b { color: var(--gold); }
.mtopbar__table { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 50px;
  background: var(--gold-grad); color: #1a1206; font-weight: 600; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }

/* Arama */
.msearch { max-width: var(--maxw); margin: 0 auto; padding: 16px 18px 4px; }
.msearch__box { position: relative; max-width: 520px; margin: 0 auto; }
.msearch__box > i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gold); }
.msearch__box input { width: 100%; padding: 13px 44px 13px 44px; border-radius: 50px; background: var(--panel);
  border: 1px solid var(--border); color: var(--text); font-family: inherit; font-size: 0.95rem; outline: none; transition: border 0.3s; }
.msearch__box input:focus { border-color: var(--border-2); }
.msearch__box input::placeholder { color: var(--muted-2); }
.msearch__box #searchClear { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px;
  border-radius: 50%; align-items: center; justify-content: center; color: var(--muted); }
.msearch__box #searchClear:hover { color: var(--gold); }

/* Yapışkan kategori sekmeleri */
.mtabs { position: sticky; top: 62px; z-index: 590; background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.mtabs__inner { max-width: var(--maxw); margin: 0 auto; display: flex; gap: 8px; overflow-x: auto; padding: 12px 18px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.mtabs__inner::-webkit-scrollbar { display: none; }
.mtab { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; padding: 10px 18px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 500; color: var(--muted); border: 1px solid var(--border); background: var(--panel);
  transition: all 0.3s var(--ease); flex-shrink: 0; cursor: pointer; }
.mtab__ico { font-size: 1.05rem; }
.mtab:hover { color: var(--gold); border-color: var(--border-2); }
.mtab.active { background: var(--gold-grad); color: #1a1206; border-color: transparent; font-weight: 600; }

/* Kategori bölümleri — tek seferde biri görünür */
.mwrap { padding: 26px 18px 60px; }
.mcat { display: none; animation: catIn 0.4s var(--ease); }
.mcat.active { display: block; }
.mwrap.searching .mcat { display: block; animation: none; }
@keyframes catIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.mcat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.mcat__head .ico { font-size: 1.7rem; }
.mcat__head h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
.mcat__head .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-2), transparent); }
.mcat__head .mcat__count { color: var(--muted-2); font-size: 0.8rem; white-space: nowrap; }

/* 2/3/4 sütun fotoğraf ızgarası */
.mlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
@media (min-width: 600px) { .mlist { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 940px) { .mlist { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.mcard { display: flex; flex-direction: column; min-width: 0; border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--black-2)); border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.mcard__body { min-width: 0; }
.mcard:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.mcard__imgwrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #0c0b09; }
.mcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mcard:hover .mcard__img { transform: scale(1.07); }
.mcard__imgwrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,0.55)); pointer-events: none; }
.mcard__badge { position: absolute; top: 9px; left: 9px; z-index: 2; padding: 4px 10px; border-radius: 50px; font-size: 0.6rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; background: var(--gold-grad); color: #1a1206; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.mcard__body { padding: 12px 13px 13px; display: flex; flex-direction: column; flex: 1; gap: 6px; }
.mcard__name { font-family: var(--serif); font-size: 1.04rem; font-weight: 700; line-height: 1.25; }
.mcard__desc { color: var(--muted); font-size: 0.8rem; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mcard__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mcard__price { font-family: var(--serif); font-size: 1.12rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.mcard__add { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 50px;
  background: rgba(212,175,55,0.12); border: 1px solid var(--border-2); color: var(--gold); font-weight: 600; font-size: 0.82rem;
  transition: all 0.25s var(--ease); cursor: pointer; flex-shrink: 0; }
.mcard__add:hover, .mcard__add.added { background: var(--gold-grad); color: #1a1206; border-color: transparent; }
.mcard__add:active { transform: scale(0.94); }

.order-note { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; color: var(--muted); display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.order-note i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.order-note--top { margin-top: 14px; }
.mtopbar__home { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border); color: var(--gold); flex-shrink: 0; }
.cart-warn { background: rgba(212,175,55,0.1); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; color: var(--gold); font-size: 0.84rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }

/* Sepet çubuğu */
.cart-bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 820; width: min(560px, calc(100% - 32px));
  display: flex; align-items: center; gap: 14px; padding: 14px 22px; border-radius: 50px; border: none;
  background: var(--gold-grad); color: #1a1206; box-shadow: 0 16px 40px rgba(0,0,0,0.5); cursor: pointer; font-weight: 600; }
.cart-bar__count { display: inline-grid; place-items: center; min-width: 26px; height: 26px; padding: 0 7px; border-radius: 50px;
  background: #1a1206; color: var(--gold-light); font-size: 0.85rem; margin-right: 6px; }
.cart-bar__total { margin-left: auto; font-family: var(--serif); font-size: 1.1rem; }
.cart-bar__go { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; }

/* Sepet çekmecesi */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 900; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
/* Çekmeceyi kırpan kabuk — ekran dışı çekmecenin yatay taşma yapmasını önler */
.cart-shell { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 910; }
.cart-drawer { position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: #0e0d0b;
  border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.6); pointer-events: auto; }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.cart-drawer__head h3 { font-family: var(--serif); font-size: 1.25rem; display: flex; align-items: center; gap: 10px; }
.cart-drawer__head h3 i { color: var(--gold); }
.cart-drawer__head button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); color: var(--gold); font-size: 1.1rem; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item__info { display: flex; flex-direction: column; min-width: 0; }
.cart-item__name { font-weight: 600; }
.cart-item__price { color: var(--muted); font-size: 0.85rem; }
.cart-qty { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cart-qty__btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-2); color: var(--gold); background: rgba(212,175,55,0.06); display: grid; place-items: center; }
.cart-qty__btn:hover { background: var(--gold); color: #1a1206; }
.cart-qty__n { min-width: 20px; text-align: center; font-weight: 600; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty i { font-size: 2.5rem; color: var(--gold-dark); display: block; margin-bottom: 14px; }
.cart-drawer__foot { padding: 18px 20px; border-top: 1px solid var(--border); }
.cart-drawer__foot textarea { width: 100%; padding: 11px 14px; border-radius: 10px; background: var(--panel); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; resize: none; margin-bottom: 14px; outline: none; }
.cart-drawer__foot textarea:focus { border-color: var(--border-2); }
.cart-sum { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-family: var(--serif); }
.cart-sum span:last-child { color: var(--gold); font-size: 1.35rem; font-weight: 700; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 90px; transform: translateX(-50%) translateY(20px); z-index: 1200;
  padding: 13px 22px; border-radius: 50px; background: #1a1712; color: var(--text); border: 1px solid var(--border-2);
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all 0.35s var(--ease); max-width: 90%; text-align: center; font-size: 0.92rem; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.ok { border-color: rgba(76,175,125,0.5); }
.toast.err { border-color: rgba(224,90,77,0.5); color: #ffb4ac; }

@media (max-width: 600px) {
  .mcard__name { font-size: 0.96rem; }
  .mcard__price { font-size: 1.02rem; }
  .mcard__desc { -webkit-line-clamp: 2; font-size: 0.76rem; }
  .mcard__add { padding: 7px 11px; font-size: 0.78rem; }
  .mcard__add span { display: none; }       /* dar ekranda sadece + ikonu */
  .mcard__add { width: 34px; height: 34px; justify-content: center; padding: 0; gap: 0; }
  .mtopbar__brand span { font-size: 0.95rem; }
  .mtabs { top: 60px; }
}
@media (max-width: 360px) {
  .mlist { gap: 11px; }
  .mtopbar__brand span { max-width: 150px; }
}

/* ===================================================================
   Sayfalar arası geçiş animasyonu
   - Temel (tüm tarayıcılar): yüklenişte yumuşak fade (yalnız opacity;
     transform sabit navbar'ı bozardı)
   - Modern (Chrome/Edge/Safari): gerçek sayfa geçişi — View Transitions
   =================================================================== */

/* Temel fade — yalnızca View Transitions desteklenmeyen tarayıcılarda */
@keyframes kp-fade-in { from { opacity: 0; } to { opacity: 1; } }
html:not(.has-vt) body { animation: kp-fade-in .5s ease both; }

/* Cross-document sayfa geçişlerini etkinleştir */
@view-transition { navigation: auto; }

/* Çıkan sayfa: hafifçe yukarı süzülerek silinir */
@keyframes kp-vt-out {
  to { opacity: 0; transform: translateY(-12px) scale(.99); }
}
/* Gelen sayfa: aşağıdan yumuşakça belirir */
@keyframes kp-vt-in {
  from { opacity: 0; transform: translateY(18px) scale(.992); }
  to   { opacity: 1; transform: none; }
}
::view-transition-old(root) { animation: kp-vt-out .30s cubic-bezier(.4,0,1,1) both; }
::view-transition-new(root) { animation: kp-vt-in  .45s cubic-bezier(.22,.61,.36,1) both; }

/* Navbar geçiş boyunca sabit kalsın (crossfade'e dahil olmaz) */
#nav { view-transition-name: kp-nav; }

/* Hareketi azalt tercihi: tüm geçiş animasyonlarını kapat */
@media (prefers-reduced-motion: reduce) {
  html:not(.has-vt) body { animation: none; }
  ::view-transition-group(root),
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
}

/* ===================================================================
   Combo / set menü kartı (QR menü)
   =================================================================== */
.mcard--combo {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.18), 0 14px 34px rgba(0,0,0,0.45);
}
.mcard__combo-tag {
  position: absolute;
  top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold-grad, linear-gradient(135deg,#f7e9a0,#d4af37 70%,#a97f1e));
  color: #1a1206;
  font-size: .72rem; font-weight: 700;
  padding: 4px 9px; border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  z-index: 2;
}
.mcard__combo {
  display: flex; gap: 7px; align-items: flex-start;
  font-size: .8rem; line-height: 1.45;
  color: var(--gold-light, #f1d985);
  margin: 2px 0 4px;
}
.mcard__combo i { margin-top: 3px; color: var(--gold, #d4af37); font-size: .76rem; }
.mcard__price-old {
  color: var(--muted-2, #7d7560);
  font-size: .82em;
  font-weight: 500;
  margin-right: 4px;
  opacity: .85;
}
