/* Başak Kır Pidesi - Static Frontend v3
   Full black, brand yellow #f4df16, boxed modern UI, fully responsive.
*/
:root{
  --bg:#000000;
  --panel:#0b0b0e;
  --panel2:#101014;
  --line:rgba(255,255,255,.10);
  --line2:rgba(244,223,22,.22);
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --muted2:rgba(255,255,255,.62);
  --brand:#f4df16;
  --brand2:#fff27a;
  --shadow: 0 20px 70px rgba(0,0,0,.70);
  --r14:14px;
  --r18:18px;
  --r24:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{width:min(var(--max), 92vw); margin:0 auto}
code{color:var(--brand2)}

/* Header */
.header{
  position:sticky; top:0; z-index:60;
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  height:48px; width:auto; display:block;
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.05;
  font-weight:950; letter-spacing:.2px;
}
.brand .name small{
  color:var(--brand2);
  font-weight:750;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
}

/* Footer logo + phone emphasis */
.footer-logo{
  display:block;
  width:auto;
  height:224px;
  max-width:100%;
  margin:0 0 10px;
}
@media (max-width:640px){
  .footer-logo{height:160px;}
}

.footer-phones a{color:inherit}
.footer-phones .branch-name{color:#fff; font-weight:900;}
.footer-phones .branch-phone{color:var(--brand2); font-weight:850;}

/* =========================================================
   Header brand slogan: handwritten + tighter spacing
   ========================================================= */
.header .brand .name{line-height:1.02;}
.header .brand .name small{
  margin-top:2px;
  text-transform:none;
  letter-spacing:0;
  font-size:13px;
  font-weight:800;
  color:var(--brand2);
  font-family: "Segoe Script", "Bradley Hand", "Snell Roundhand", cursive;
}

.nav{
  display:flex; align-items:center; gap:10px;
}
.nav a{
  font-weight:850;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:11px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.86);
}
.nav a:hover{background:rgba(255,255,255,.06); color:#fff}
.nav a.active{
  color:#000;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 12px 34px rgba(0,0,0,.55), 0 0 0 1px rgba(244,223,22,.40);
}

.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:12px 14px;
  font-weight:950;
  letter-spacing:.02em;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease, filter .12s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); border-color:rgba(255,255,255,.28)}
.btn.primary{
  border:none;
  color:#0a0a0c;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 46px rgba(0,0,0,.70), 0 0 0 1px rgba(244,223,22,.45), 0 0 44px rgba(244,223,22,.14);
}
.btn.primary:hover{filter:brightness(1.02)}
.btn.ghost{
  background: rgba(0,0,0,.30);
  border:1px solid rgba(244,223,22,.34);
}
.btn.ghost:hover{border-color:rgba(244,223,22,.85); box-shadow: 0 0 0 1px rgba(244,223,22,.20), 0 0 34px rgba(244,223,22,.10)}
.icon-btn{
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  display:none;
  align-items:center; justify-content:center;
}
.icon-btn svg{width:18px;height:18px;fill:#fff}

/* Mobile nav */
@media (max-width: 980px){
  .nav{display:none}
  .icon-btn{display:inline-flex}
  .brand img{height:54px}
}

/* Mobile header fit: keep logo, optionally hide brand text if it doesn't fit */
@media (max-width: 520px){
  .header-inner{gap:10px; padding:10px 0}
  .brand{gap:10px; min-width:0}
  .brand img{height:48px}
  .brand .name{display:none}
  .actions{gap:8px}
  .btn.primary{padding:10px 12px; font-size:14px}
  .icon-btn{width:42px; height:42px}
}
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.92);
}
.mobile-nav[data-open="1"]{display:block}
.mobile-nav a{
  display:block;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.90);
}
.mobile-nav a.active{color:var(--brand2)}
.mobile-nav a:last-child{border-bottom:none}

/* Hero */
.hero{
  padding: 18px 0 0;
}
.hero-box{
  position:relative;
  border-radius: var(--r24);
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 18% 20%, rgba(244,223,22,.16), rgba(0,0,0,0) 52%),
    radial-gradient(circle at 82% 18%, rgba(244,223,22,.10), rgba(0,0,0,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.10fr .90fr;
  gap:18px;
  align-items:center;
  padding: 30px;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; padding:22px}
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(244,223,22,.22);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.90);
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
}
.kicker b{color:var(--brand2)}
.hero-title{
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.06;
  font-weight: 980;
  margin:14px 0 10px;
  letter-spacing:-.03em;
}
.hero-lead{
  color:var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  margin:0;
}
.hero-actions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:16px;
}
.hero-right{
  border-radius: var(--r24);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  padding: 14px;
}
.hero-right img{width:100%; height:auto; display:block}

.pills{
  margin-top:16px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.86);
  font-size:13px;
  font-weight:750;
}
.pill b{color:var(--brand2); font-weight:980}

/* Sections */
.section{padding: 34px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px;
}
@media (max-width: 980px){
  .section-head{flex-direction:column; align-items:flex-start}
}
.section h2{
  margin:0;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight:980;
  letter-spacing:-.02em;
}
.section p.desc{margin:10px 0 0; color:var(--muted)}
.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){.grid{grid-template-columns:1fr}}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r24);
  padding:18px;
  overflow:hidden;
}
.card h3{margin:0 0 8px; font-weight:980}
.card p{margin:0; color:var(--muted); font-size:14px}

.feature{
  display:flex; gap:14px; align-items:flex-start;
}
.feature .ico{
  width:44px;height:44px;border-radius:14px;
  border:1px solid rgba(244,223,22,.25);
  background: rgba(244,223,22,.10);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.feature .ico svg{width:20px;height:20px;fill:var(--brand2)}

.product-card{
  display:flex; flex-direction:column; gap:12px;
}
.product-img{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  overflow:hidden;
}
.product-img img{width:100%; height:240px; object-fit:cover; display:block}
.price{
  color:var(--brand2);
  font-weight:980;
  font-size:18px;
}

.split{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media (max-width: 980px){.split{grid-template-columns:1fr}}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r24);
  padding:20px;
}
.hr{height:1px; background: rgba(255,255,255,.10); margin:14px 0}
.list{margin:0; padding-left:18px; color:var(--muted)}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:rgba(255,255,255,.86);
  font-size:13px;
  background: rgba(0,0,0,.25);
}
.badge .tag{
  color:var(--brand2);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
}

/* Footer */
.footer{
  margin-top:44px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.92);
}
.footer-inner{
  padding:34px 0 22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
}
@media (max-width: 980px){.footer-inner{grid-template-columns:1fr}}
.footer h4{margin:0 0 10px; font-weight:980}
.footer a{color:rgba(255,255,255,.86)}
.footer a:hover{color:var(--brand2)}
.footer small{color:rgba(255,255,255,.55)}
.social{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px;
  border:1px solid rgba(244,223,22,.35);
  border-radius:999px;
}
.social:hover{border-color:rgba(244,223,22,.85); box-shadow: 0 0 0 1px rgba(244,223,22,.20), 0 0 34px rgba(244,223,22,.10)}
.social svg{width:18px;height:18px;fill:var(--brand2)}


/* Order Modal */
.modal-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index: 120;
}
.modal-backdrop[data-open="1"]{display:flex}
.modal{
  width:min(980px, 96vw);
  /* Keep the modal within the viewport; overflow is handled by the body scroll */
  max-height: 92vh;
  max-height: 92dvh;
  border-radius: var(--r24);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 18% 20%, rgba(244,223,22,.14), rgba(0,0,0,0) 54%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.modal-head h3{
  margin:0;
  font-weight:980;
  letter-spacing:-.01em;
}
.modal-close{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
}
.modal-body{
  padding:18px;
  /* Header is fixed; body scrolls when content is taller than viewport */
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(92vh - 74px);
  max-height: calc(92dvh - 74px);
}
.order-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .order-grid{grid-template-columns:1fr}
}
.branch-card{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.34);
  padding:14px;
}
.branch-card h4{margin:0 0 6px; font-weight:980}
.branch-card .addr{margin:0 0 12px; color:var(--muted2); font-size:13px}
.platform-row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
@media (max-width: 520px){
  .platform-row{grid-template-columns:1fr}
}
.platform-btn{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(244,223,22,.30);
  background: rgba(244,223,22,.10);
  color:#fff;
  font-weight:950;
  letter-spacing:.01em;
}
.platform-btn:hover{
  border-color: rgba(244,223,22,.85);
  box-shadow: 0 0 0 1px rgba(244,223,22,.20), 0 0 34px rgba(244,223,22,.10);
}
.picon{
  width:34px; height:34px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
  display:flex; align-items:center; justify-content:center;
  font-weight:980;
  color: var(--brand2);
  letter-spacing:.06em;
}
.notice{
  margin-top:12px;
  color: rgba(255,255,255,.60);
  font-size:12px;
  line-height:1.45;
}

/* Platform logo rendering */
.picon{padding:6px}
.picon img{width:100%;height:100%;object-fit:contain;display:block}

.platform-btn{
  min-height:52px;
}
@media (max-width:520px){
  .platform-btn{min-height:50px}
}

/* Platform logo rendering */
.platform-logo{
  width: 120px;
  height: 22px;
  object-fit: contain;
  display:block;
  filter: none;
}
@media (max-width:520px){
  .platform-logo{width: 140px; height: 24px;}
}
.platform-btn{
  justify-content:flex-start;
}
.platform-btn .picon{display:none}
.platform-btn.fallback .picon{display:flex}
.platform-btn.fallback .platform-logo{display:none}



/* Campaign cards */
.campaigns-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){ .campaigns-grid{ grid-template-columns:1fr; } }

.campaign-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  min-height: 210px;
  background: #000;
  border: 2px solid rgba(244,223,22,.85);
  box-shadow:
    0 18px 60px rgba(0,0,0,.70),
    0 0 26px rgba(244,223,22,.22),
    inset 0 0 0 1px rgba(244,223,22,.28);
}

.campaign-card::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 22%, rgba(244,223,22,.22), rgba(244,223,22,0) 55%),
    radial-gradient(circle at 82% 18%, rgba(244,223,22,.16), rgba(244,223,22,0) 60%);
  pointer-events:none;
  opacity:.9;
  mix-blend-mode: screen;
}

.campaign-media{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  padding: 18px;
  pointer-events:none;
}
.campaign-media img{
  width: 92%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.85));
  opacity: .98;
}
@media (max-width: 980px){
  .campaign-media{ justify-content:center; }
  .campaign-media img{ width: 88%; max-width: 520px; }
}
.campaign-overlay{
  position:relative;
  z-index: 2;
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width: 320px;
}
.campaign-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(244,223,22,.40);
  color: rgba(244,223,22,.95);
  font-weight: 950;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-size: 12px;
  width: fit-content;
}
.campaign-title{
  font-weight: 980;
  letter-spacing:-.02em;
  font-size: 18px;
  line-height: 1.18;
}
.campaign-price{
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  font-weight: 980;
  font-size: 28px;
  color:#000;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(244,223,22,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.38);
  width: fit-content;
}
.campaign-note{
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  line-height: 1.45;
  max-width: 32ch;
}

/* Button in campaign section head */
.section-head .btn.primary{
  white-space: nowrap;
}


/* Distinct colorful backgrounds (like highlight cards) */
.campaign-card.c1{
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 0, 92, .45), rgba(0,0,0,0) 55%),
    radial-gradient(circle at 80% 20%, rgba(0, 210, 255, .35), rgba(0,0,0,0) 58%),
    linear-gradient(135deg, rgba(255, 120, 0, .22), rgba(0,0,0,.0) 55%),
    rgba(11,11,14,.55);
}
.campaign-card.c2{
  background:
    radial-gradient(circle at 18% 18%, rgba(140, 82, 255, .45), rgba(0,0,0,0) 58%),
    radial-gradient(circle at 82% 25%, rgba(0, 255, 170, .28), rgba(0,0,0,0) 55%),
    linear-gradient(135deg, rgba(244,223,22,.20), rgba(0,0,0,0) 55%),
    rgba(11,11,14,.55);
}
.campaign-card.c3{
  background:
    radial-gradient(circle at 22% 22%, rgba(244,223,22,.35), rgba(0,0,0,0) 60%),
    radial-gradient(circle at 85% 20%, rgba(255, 0, 130, .30), rgba(0,0,0,0) 58%),
    linear-gradient(135deg, rgba(0, 210, 255, .18), rgba(0,0,0,0) 55%),
    rgba(11,11,14,.55);
}


/* Hero visual (full black, soft transitions, premium depth) */
.hero-visual{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 80px rgba(0,0,0,.75);
}
.hero-visual::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 38% 32%, rgba(244,223,22,.12), rgba(0,0,0,0) 62%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.08), rgba(0,0,0,0) 66%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.92));
  pointer-events:none;
}
.hero-visual::after{
  content:"";
  position:absolute; inset:10px;
  border-radius: 22px;
  border: 1px solid rgba(244,223,22,.22);
  box-shadow:
    0 0 28px rgba(244,223,22,.18),
    inset 0 0 0 1px rgba(244,223,22,.10);
  pointer-events:none;
}
.hero-visual img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,.92));
  transform: translateY(8px) scale(1.01);
  opacity: 0;
  animation: heroIn .55s ease-out forwards;
}
@keyframes heroIn{
  from{ opacity:0; transform: translateY(18px) scale(1.01); }
  to{ opacity:1; transform: translateY(8px) scale(1.01); }
}
@media (prefers-reduced-motion: reduce){
  .hero-visual img{ animation:none; opacity:1; transform:none; }
}

/* Hero badges (prices) */
.hero-badges{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap:10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.60);
  border: 1px solid rgba(244,223,22,.28);
  color: rgba(255,255,255,.92);
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.badge .dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(244,223,22,.95);
  box-shadow: 0 0 18px rgba(244,223,22,.35);
}
.badge.ku .dot{
  background: rgba(255,80,80,.95);
  box-shadow: 0 0 18px rgba(255,80,80,.30);
}
.badge strong{
  color: rgba(244,223,22,.95);
}
.badge.ku strong{
  color: rgba(255,160,160,.95);
}


/* Global soft noise (very subtle) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.035;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
/* Ensure main content stays above noise */
body > *{ position:relative; z-index:1; }

/* Section divider (signature light line) */
.section-divider{
  height:1px;
  width:100%;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(244,223,22,.65), rgba(0,0,0,0));
  box-shadow: 0 0 18px rgba(244,223,22,.22);
}

/* Sticky header (compact on scroll) */
.header{
  transition: padding .18s ease, background .18s ease, box-shadow .18s ease, backdrop-filter .18s ease;
}
.header.is-scrolled{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  background: rgba(0,0,0,.78) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header.is-scrolled .brand img{
  transform: scale(.92);
  filter: drop-shadow(0 0 16px rgba(244,223,22,.18));
}
.header .brand img{
  transition: transform .18s ease, filter .18s ease;
}

/* Magnetic buttons (visual polish) */
.btn{
  transition: transform .10s ease, box-shadow .18s ease, filter .18s ease;
  will-change: transform;
}
.btn.primary{
  box-shadow: 0 10px 30px rgba(0,0,0,.55), 0 0 18px rgba(244,223,22,.18);
}
.btn.primary:hover{
  filter: brightness(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,.65), 0 0 26px rgba(244,223,22,.26);
}

/* Product card hover reveal */
.product-card{
  position:relative;
  overflow:hidden;
}
.product-meta{
  position:absolute;
  inset:auto 14px 14px 14px;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(244,223,22,.22);
  backdrop-filter: blur(10px);
  transform: translateY(14px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.product-card:hover .product-meta,
.product-card:focus-within .product-meta{
  transform: translateY(0);
  opacity: 1;
}
.product-meta .line{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:12.5px;
  color: rgba(255,255,255,.82);
}
.product-meta .line b{
  color: rgba(244,223,22,.95);
}

/* Image skeleton shimmer */
.img-skeleton{
  position:relative;
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  overflow:hidden;
}
.img-skeleton::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,0), rgba(244,223,22,.12), rgba(0,0,0,0));
  transform: translateX(-60%);
  animation: shimmer 1.15s ease-in-out infinite;
  opacity:.9;
}
@keyframes shimmer{
  0%{ transform: translateX(-60%); }
  100%{ transform: translateX(60%); }
}
.img-loaded.img-skeleton::before{ display:none; }

/* Mobile bottom bar */
.mobile-bar{
  position:fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display:none;
  padding: 10px;
  border-radius: 18px;
  background: rgba(0,0,0,.78);
  border: 1px solid rgba(244,223,22,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.70), 0 0 22px rgba(244,223,22,.12);
  backdrop-filter: blur(12px);
}
.mobile-bar a{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 8px;
  border-radius: 14px;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 850;
  font-size: 12.5px;
}
.mobile-bar a.active{
  background: rgba(244,223,22,.16);
  border: 1px solid rgba(244,223,22,.35);
  box-shadow: inset 0 0 0 1px rgba(244,223,22,.18);
}
.mobile-bar svg{
  width:18px; height:18px;
  fill: rgba(244,223,22,.92);
  opacity:.95;
}
@media (max-width: 920px){
  .mobile-bar{ display:flex; gap:10px; }
  /* avoid content hidden behind bar */
  .footer{ padding-bottom: 92px !important; }
}
/* Enhanced footer */
.footer{
  background: radial-gradient(circle at 30% 20%, rgba(244,223,22,.08), rgba(0,0,0,0) 60%), #000 !important;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer .footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.footer .footer-brand img{
  width:52px; height:52px;
  filter: drop-shadow(0 0 18px rgba(244,223,22,.14));
}
.footer .footer-meta{
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  margin-top: 8px;
}


/* Spotlight hover mask */
.spotlight{
  position: relative;
  overflow: hidden;
}
.spotlight::after{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:0;
  transition: opacity .18s ease;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%), rgba(244,223,22,.22), rgba(0,0,0,0) 52%);
  mix-blend-mode: screen;
}
.spotlight:hover::after,
.spotlight:focus-within::after{
  opacity:1;
}

/* Adaptive glow by section */
.section.variant-campaigns .card,
.section.variant-campaigns .campaign-card{
  box-shadow: 0 18px 60px rgba(0,0,0,.70), 0 0 26px rgba(244,223,22,.18);
}
.section.variant-menu .card{
  box-shadow: 0 18px 60px rgba(0,0,0,.70), 0 0 18px rgba(255,255,255,.10);
}
.section.variant-trust .card{
  box-shadow: 0 18px 60px rgba(0,0,0,.70), 0 0 20px rgba(244,223,22,.14);
}

/* Subtle section background tint */
.section.variant-campaigns{
  background:
    radial-gradient(circle at 24% 10%, rgba(244,223,22,.06), rgba(0,0,0,0) 60%);
}
.section.variant-trust{
  background:
    radial-gradient(circle at 78% 18%, rgba(244,223,22,.05), rgba(0,0,0,0) 62%);
}

/* Social proof blocks */
.social-proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top: 16px;
}
@media (max-width: 980px){ .social-proof{ grid-template-columns:1fr; } }

.rating-card{
  border-radius: 22px;
  border: 1px solid rgba(244,223,22,.22);
  background: rgba(0,0,0,.55);
  padding:16px;
}
.rating-top{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.stars{
  display:inline-flex; gap:4px; align-items:center;
}
.stars svg{ width:18px; height:18px; fill: rgba(244,223,22,.95); }
.rating-score{
  font-weight:980;
  font-size: 28px;
  letter-spacing:-.02em;
}
.rating-sub{
  margin:8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

/* Time message */
.time-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding:16px;
}
.time-title{ font-weight:980; font-size:16px; margin:0; }
.time-text{ margin:8px 0 0; color: rgba(255,255,255,.72); font-size: 13px; }

/* Popular badge */
.popular-badge{
  position:absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244,223,22,.35);
  background: rgba(0,0,0,.62);
  color: rgba(244,223,22,.95);
  font-weight: 950;
  letter-spacing:.10em;
  text-transform: uppercase;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* Timeline */
.timeline{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px){ .timeline{ grid-template-columns:1fr; } }
.timeline-step{
  border-radius: 22px;
  border: 1px solid rgba(244,223,22,.18);
  background: rgba(0,0,0,.52);
  padding: 16px;
}
.timeline-step h4{ margin:0 0 6px; font-weight:980; letter-spacing:-.01em; }
.timeline-step p{ margin:0; color: rgba(255,255,255,.72); font-size: 13px; line-height:1.45; }
.timeline-num{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(244,223,22,.16);
  border: 1px solid rgba(244,223,22,.35);
  color: rgba(244,223,22,.95);
  font-weight: 980;
  margin-bottom: 10px;
}

/* Split section */
.split{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 980px){ .split{ grid-template-columns: 1fr; } }
.split-visual{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(244,223,22,.22);
  background: #000;
  box-shadow: 0 18px 60px rgba(0,0,0,.70), 0 0 20px rgba(244,223,22,.12);
}
.split-visual img{
  width:100%;
  height:auto;
  display:block;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.85));
}
.split-copy{
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 18px;
}
.split-copy h3{ margin:0 0 8px; font-weight:980; letter-spacing:-.02em; }
.split-copy p{ margin:0; color: rgba(255,255,255,.72); font-size: 13.5px; }

/* Blur-up lazy load */
.blur-up{
  filter: blur(14px);
  transform: scale(1.02);
  transition: filter .30s ease, transform .30s ease;
}
.blur-up.is-loaded{
  filter: blur(0);
  transform: scale(1.0);
}


/* Mobile fit & prevent horizontal overflow */
html, body{ overflow-x:hidden; }
img{ max-width:100%; height:auto; }

/* Header badges layout */
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
@media (max-width: 980px){
  .header-inner{ flex-wrap:wrap; justify-content:flex-start; }
  .brand{ flex: 1 1 auto; }
  .actions{ margin-left:auto; }
  .badges{ width:100%; justify-content:flex-start; }
}
@media (max-width: 560px){
  .badges{ display:none; } /* mobile clean header */
  .brand .name small{ display:none; }
}

/* Safe area for iOS */
.mobile-bar{ padding-bottom: calc(10px + env(safe-area-inset-bottom)); }

/* Footer phones visibility */
.footer-phones a{ color:#f4df16; }
.footer-phones a:hover{ text-decoration: underline; }

/* Contact WhatsApp support link */
.whatsapp-support{ margin-top:10px; }
.whatsapp-support svg{ fill:#f4df16; }
.whatsapp-support span{ color:#f4df16; }

/* Toplu siparis: product name + summary list */
.ts-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.ts-name{ font-weight:900; color:rgba(255,255,255,.92); letter-spacing:-.01em; }
.sum-items{ margin-top:10px; padding-top:10px; border-top:1px solid rgba(255,255,255,.10); display:grid; gap:6px; }
.sum-item{ display:flex; justify-content:space-between; gap:10px; color:rgba(255,255,255,.82); font-size:13.5px; }
.sum-item b{ color:#fff; }

/* About page: equal panels */
.page-about .split{ align-items: stretch; }
.page-about .split .panel{ height:100%; }

/* Toplu Sipariş */
.ts-rules{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:14px;border-radius:22px;border:1px solid rgba(244,223,22,.20);background:rgba(0,0,0,.55);box-shadow:0 18px 60px rgba(0,0,0,.70),0 0 22px rgba(244,223,22,.12);}
.ts-rule{font-size:12.5px;color:rgba(255,255,255,.80);line-height:1.35;}
.ts-rule b{color:rgba(244,223,22,.95);}
@media (max-width:980px){.ts-rules{grid-template-columns:1fr;}}

.ts-grid{margin-top:16px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
@media (max-width:980px){.ts-grid{grid-template-columns:1fr;}}

.ts-card{border-radius:24px;overflow:hidden;border:1px solid rgba(244,223,22,.18);background:rgba(0,0,0,.52);box-shadow:0 18px 60px rgba(0,0,0,.70),0 0 18px rgba(244,223,22,.10);}
.ts-img{position:relative;aspect-ratio:16/10;background:#000;}
.ts-img img{width:100%;height:100%;object-fit:cover;display:block;}
.ts-tag{position:absolute;left:14px;bottom:14px;padding:8px 10px;border-radius:999px;background:rgba(0,0,0,.65);border:1px solid rgba(244,223,22,.28);color:rgba(244,223,22,.95);font-weight:950;letter-spacing:.06em;text-transform:uppercase;font-size:11px;}
.ts-body{padding:14px;}
.ts-row{display:flex;justify-content:space-between;gap:10px;align-items:baseline;}
.ts-title{font-weight:980;letter-spacing:-.02em;}
.ts-note{color:rgba(244,223,22,.9);font-size:12px;margin-left:6px;}
.ts-min{font-size:12.5px;color:rgba(255,255,255,.70);}
.ts-min b{color:rgba(244,223,22,.95);}

.ts-qty{margin-top:10px;display:flex;gap:10px;align-items:center;}
.qty-btn{width:44px;height:44px;border-radius:14px;background:rgba(244,223,22,.14);border:1px solid rgba(244,223,22,.30);color:rgba(244,223,22,.95);font-size:22px;font-weight:900;}
.qty-input{flex:1;height:44px;border-radius:14px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.55);color:rgba(255,255,255,.92);font-weight:900;text-align:center;font-size:16px;}
.ts-hint{margin-top:8px;font-size:12.5px;color:rgba(255,255,255,.70);}
.ts-hint b{color:rgba(244,223,22,.95);}

.ts-form-wrap{margin-top:18px;}
.ts-form{border-radius:26px;border:1px solid rgba(244,223,22,.18);background:rgba(0,0,0,.55);padding:16px;box-shadow:0 18px 60px rgba(0,0,0,.70),0 0 24px rgba(244,223,22,.12);}
.ts-form-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;}
.ts-form-head h3{margin:0;font-weight:980;letter-spacing:-.02em;}
.ts-pill{padding:8px 12px;border-radius:999px;border:1px solid rgba(244,223,22,.26);background:rgba(244,223,22,.10);color:rgba(244,223,22,.95);font-weight:900;font-size:12.5px;}

.ts-fields{margin-top:12px;display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
@media (max-width:980px){.ts-fields{grid-template-columns:1fr;}}
.field label{display:block;font-size:12.5px;color:rgba(255,255,255,.75);margin-bottom:6px;}
.req{color:rgba(244,223,22,.95);font-weight:900;}
.field input,.field select,.field textarea{width:100%;border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.55);color:rgba(255,255,255,.92);padding:12px 12px;outline:none;}
.field textarea{resize:vertical;min-height:90px;}
.field.wide{grid-column:1 / -1;}

.segmented{display:flex;gap:10px;flex-wrap:wrap;}
.seg{display:flex;gap:10px;align-items:center;padding:10px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.03);color:rgba(255,255,255,.88);font-weight:850;font-size:12.5px;}
.seg input{accent-color:#F4DF16;}

.ts-summary{margin-top:12px;border-radius:22px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.02);padding:14px;}
.sum-line{display:flex;justify-content:space-between;gap:12px;padding:6px 0;color:rgba(255,255,255,.78);font-size:13px;}
.sum-line b{color:rgba(244,223,22,.95);}
.sum-total{display:flex;justify-content:space-between;gap:12px;padding-top:10px;margin-top:8px;border-top:1px solid rgba(255,255,255,.08);font-weight:980;letter-spacing:-.01em;}
.sum-total b{color:rgba(244,223,22,.98);}
.sum-hint{margin-top:8px;color:rgba(255,255,255,.65);font-size:12.5px;}

.ts-actions{margin-top:12px;display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap;}

.ts-output{margin-top:14px;border-radius:22px;border:1px solid rgba(244,223,22,.18);background:rgba(0,0,0,.62);padding:14px;}
.ts-output h4{margin:0 0 10px;font-weight:980;}
.ts-output pre{margin:0;white-space:pre-wrap;word-break:break-word;font-size:12.5px;color:rgba(255,255,255,.85);}


/* Toplu Sipariş - görsel odaklı kart */
.ts-card .ts-body{ padding: 12px 14px 14px; }
.ts-row{ justify-content:flex-end; }
.ts-title, .ts-note{ display:none !important; }
.ts-tag{ display:none !important; }
.ts-min{ margin-left:auto; }
.ts-img{ aspect-ratio: 4/3; }
.ts-img img{ object-fit: contain; padding: 14px; background:#000; }

/* Discount highlight */
#sumDiscount{ color: rgba(80,220,140,.95); font-weight: 900; }


/* Scroll fix (mobile) */
html, body { height: auto; min-height: 100%; }
body { overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }
body.menu-open { overflow: hidden !important; height: 100vh; }
/* Prevent accidental scroll lock */
body:not(.menu-open) { overflow-y: auto !important; height: auto !important; }

/* If a fullscreen nav/overlay exists, disable pointer events when closed */
.nav-drawer, .overlay, .menu-overlay {
  -webkit-overflow-scrolling: touch;
}
.nav-drawer[aria-hidden="true"], .overlay.is-hidden, .menu-overlay.is-hidden {
  pointer-events: none !important;
}


/* === GLOBAL ALIGNMENT CLEANUP (CENTERED, PROFESSIONAL) === */
.section-head,
.section-head .title,
.section-head .desc {
  text-align: center;
}

.section-head {
  align-items: center !important;
  justify-content: center;
  gap: 10px;
}

.section-head .actions {
  justify-content: center;
}

/* header brand block */
.header .brand .name {
  text-align: left;
}
@media (max-width: 640px) {
  .header .brand .name { text-align: left; }
}

/* === MENU PRODUCT CARDS – SOFT BRAND YELLOW FRAME === */
.menu-grid {
  gap: 22px !important;
}

/* === MENU PAGE LAYOUT (RESPONSIVE) === */
.page-menu .menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  align-items: stretch;
}
@media (max-width: 1100px){
  .page-menu .menu-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .page-menu .menu-grid{ grid-template-columns: 1fr; }
}

.page-menu .drink-list{ display:grid; gap:12px; }
.page-menu .drink-row{ display:flex; justify-content:space-between; gap:12px; align-items:center; }
.page-menu .drink-row b{ font-weight:850; }

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

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

.menu-grid .product-card {
  background: radial-gradient(circle at 20% 0%, rgba(244,223,22,0.14), rgba(0,0,0,0.95) 60%);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(244,223,22,0.22),
    0 18px 45px rgba(0,0,0,0.65);
  transition: transform .22s ease, box-shadow .22s ease;
}

.menu-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(244,223,22,0.38),
    0 22px 60px rgba(0,0,0,0.78);
}

.menu-grid .product-card .product-img {
  width: 100%;
  border-radius: 16px !important;
  border: 1px solid rgba(244,223,22,0.38) !important;
  box-shadow:
    0 0 0 6px rgba(0,0,0,0.70),
    0 0 0 7px rgba(244,223,22,0.18);
}

.menu-grid .product-card .product-body {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(244,223,22,0.16), rgba(244,223,22,0.05));
  border: 1px solid rgba(244,223,22,0.32);
  text-align: center;
}

.menu-grid .product-card .product-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2px;
}

.menu-grid .product-card .product-price {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand2);
}

/* card title blocks elsewhere – keep centered when used */
.card h3, .card h2 {
  text-align: center;
}



/* === MENU (HORIZONTAL CARD + EXTRAS UNDER GRID) === */
.page-menu .product-card-h{
  display:flex;
  gap:14px;
  align-items:center;
}
.page-menu .product-card-h .product-img{
  width: 132px;
  aspect-ratio: 4 / 3;
  overflow:hidden;
  flex: 0 0 auto;
}
.page-menu .product-card-h .product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page-menu .product-card-h .product-body{
  margin-top:0;
  text-align:left;
  flex:1 1 auto;
  min-width:0;
}
.page-menu .product-card-h .product-name{
  font-size: 17px;
  font-weight: 850;
}
.page-menu .product-card-h .product-price{
  margin-top:8px;
}

/* Menu page: keep CTA buttons proportional to product images */
.page-menu .panel .btn,
.page-menu .campaign-actions .btn{
  padding:10px 12px;
  font-size:14px;
  line-height:1;
}
@media (max-width: 520px){
  .page-menu .panel .btn,
  .page-menu .campaign-actions .btn{
    padding:9px 11px;
    font-size:13px;
  }
}

.page-menu .menu-extras{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:22px;
}
@media (max-width: 900px){
  .page-menu .menu-extras{ grid-template-columns: 1fr; }
  .page-menu .product-card-h{ align-items:stretch; }
  .page-menu .product-card-h .product-img{ width: 42%; }
}
@media (max-width: 520px){
  .page-menu .product-card-h{ flex-direction:column; }
  .page-menu .product-card-h .product-img{ width:100%; }
  .page-menu .product-card-h .product-body{ text-align:center; }
}


/* === PRODUCTS SLIDER (HOME) === */
.bkp-slider{position:relative;margin-top:16px;}
.bkp-viewport{overflow:hidden;border-radius:26px;}
.bkp-track{display:flex;gap:14px;scroll-snap-type:x mandatory;overflow-x:auto;padding:10px 2px;-webkit-overflow-scrolling:touch;scrollbar-width:none;}
.bkp-track::-webkit-scrollbar{display:none;}
.bkp-card{flex:0 0 260px;scroll-snap-align:start;border-radius:22px;overflow:hidden;border:1px solid rgba(244,223,22,.22);
  background: radial-gradient(circle at 10% 0%, rgba(244,223,22,.14), rgba(0,0,0,.92) 60%);
  box-shadow:0 18px 55px rgba(0,0,0,.70), 0 0 18px rgba(244,223,22,.08);
}
.bkp-img{aspect-ratio:4/3;background:#000;}
.bkp-img img{width:100%;height:100%;object-fit:cover;display:block;}
.bkp-meta{text-align:center;padding:12px 14px 14px;border-top:1px solid rgba(244,223,22,.14);
  background: linear-gradient(180deg, rgba(244,223,22,.16), rgba(244,223,22,.04));
}
.bkp-name{font-weight:900;letter-spacing:.2px;}
.bkp-price{margin-top:6px;font-size:18px;font-weight:950;color:rgba(244,223,22,.98);}
.bkp-nav{position:absolute;top:50%;transform:translateY(-50%);width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(244,223,22,.28);background:rgba(0,0,0,.55);color:rgba(244,223,22,.98);font-size:28px;font-weight:900;
  display:flex;align-items:center;justify-content:center;backdrop-filter: blur(6px);
}
.bkp-nav.prev{left:-6px;}
.bkp-nav.next{right:-6px;}
@media (max-width: 900px){
  .bkp-nav{display:none;}
  .bkp-card{flex-basis: 78%;}
}
.center-actions{display:flex;justify-content:center;margin-top:14px;}
/* === FEATURES (Neler Sunuyoruz) icon sizing responsive === */
.card.feature .ico{width:54px;height:54px;border-radius:18px;display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(244,223,22,.22);background:rgba(244,223,22,.08);
}
.card.feature .ico svg{width:26px;height:26px;}
@media (max-width: 480px){
  .card.feature{align-items:flex-start;}
  .card.feature .ico{width:50px;height:50px;border-radius:16px;}
}
/* === FOOTER REVAMP === */
.footer{margin-top:40px;border-top:1px solid rgba(255,255,255,.08);background:rgba(0,0,0,.88);}
.footer-grid{display:grid;grid-template-columns: 1.3fr 1fr 1.2fr;gap:24px;padding:26px 0;}
.footer-logo{width:160px;height:auto;display:block;margin-bottom:10px;}
.footer-text{color:rgba(255,255,255,.70);line-height:1.55;margin:0;}
.footer-col h4{margin:0 0 10px;font-weight:950;letter-spacing:.2px;text-align:left;}
.footer-col a{display:block;color:rgba(255,255,255,.78);text-decoration:none;padding:6px 0;}
.footer-col a:hover{color:rgba(244,223,22,.98);}
.footer-phones .phone-item{display:flex;justify-content:space-between;gap:12px;padding:7px 0;color:rgba(255,255,255,.78);}
.footer-phones .phone-item b{font-weight:900;}
.footer-phones .phone-link{color:rgba(244,223,22,.98);font-weight:900;text-decoration:none;}
.footer-phones .phone-link:hover{text-decoration:underline;}
.footer-phones .coming-soon{color:rgba(244,223,22,.98);}

.footer-bottom{padding:14px 0 18px;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:center;color:rgba(255,255,255,.60);}
@media (max-width: 900px){
  .footer-grid{grid-template-columns:1fr;gap:18px;}
  .footer-col h4{text-align:left;}
}

/* Header logo size */
.header .brand img{width:64px;height:auto;max-height:64px;}
@media (max-width:640px){.header .brand img{width:56px;max-height:56px;}}

/* Footer logo size */
.footer .footer-brand img{width:96px;height:auto;max-height:96px;}
@media (max-width:640px){.footer .footer-brand img{width:84px;max-height:84px;}}

/* Service icons (responsive) */
.svc-ico{width:28px;height:28px;display:block;fill:rgba(244,223,22,.95);}
@media (max-width:640px){.svc-ico{width:26px;height:26px;}}

/* Footer coming soon phone */
.coming-soon{color: rgba(244,223,22,.95); font-weight: 900;}


/* Logo responsive sizing */
@media (max-width: 560px){
  .brand-logo{width:64px;height:64px;border-radius:18px;}
  .footer-logo{width:140px;height:140px;border-radius:26px;}
}


/* Branches page - premium yellow cards */
.page-branches .branch-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  align-items:start;
}
@media (max-width: 980px){
  .page-branches .branch-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 640px){
  .page-branches .branch-grid{grid-template-columns: 1fr;}
}
.page-branches .branch-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  padding:18px;
  background:#000;
  color: rgba(255,255,255,.92);
  border: 2px solid rgba(244,223,22,.85);
  box-shadow:
    0 18px 60px rgba(0,0,0,.70),
    0 0 26px rgba(244,223,22,.22),
    inset 0 0 0 1px rgba(244,223,22,.28);
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.page-branches .branch-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(244,223,22,.18), rgba(0,0,0,0) 55%),
    radial-gradient(700px 260px at 85% 18%, rgba(244,223,22,.10), rgba(0,0,0,0) 52%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0) 40%);
  opacity:1;
}
.page-branches .branch-card > *{position:relative; z-index:2;}
.page-branches .branch-badge{z-index:3;}

/* Keep all branch cards equal height on grid layouts (mobile stacks stay auto-height) */
@media (min-width: 641px){
  .page-branches .branch-card{height:300px;}
}
.page-branches .branch-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 70px rgba(0,0,0,.78),
    0 0 34px rgba(244,223,22,.26),
    inset 0 0 0 1px rgba(244,223,22,.34);
  filter: brightness(1.03);
}
.page-branches .branch-card:focus-within{
  box-shadow:
    0 22px 70px rgba(0,0,0,.78),
    0 0 0 2px rgba(244,223,22,.30),
    0 0 34px rgba(244,223,22,.22),
    inset 0 0 0 1px rgba(244,223,22,.34);
}
.page-branches .branch-card h3{margin:0 0 10px 0; color:rgba(255,255,255,.96); font-weight:1000;}
.page-branches .branch-card p{margin:0; color:rgba(255,255,255,.78); line-height:1.45; font-size:17px;}
.page-branches .branch-card .hr{background:rgba(244,223,22,.22); margin-top:auto;}
.page-branches .branch-card .badge{
  border:1px solid rgba(244,223,22,.28);
  background: rgba(0,0,0,.28);
  color:rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
}
.page-branches .branch-card .tag{color:#111;}
.page-branches .branch-card .tel-link{color:#111; font-weight:900; text-decoration:none;}
.page-branches .branch-card .tel-link:hover{text-decoration:underline;}

.page-branches .branch-card .badge{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(244,223,22,.85);
  color:#fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(244,223,22,.22) inset;
}
.page-branches .branch-card .badge .tag{
  color: rgba(255,255,255,.72);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
}
.page-branches .branch-card .tel-link{
  color:#fff;
  font-weight:950;
  letter-spacing:.02em;
}

.page-branches .branch-actions{margin-top:12px; display:flex; justify-content:flex-start;}
.page-branches .branch-card .btn.ghost{
  background:#0f0f0f;
  color:#fff;
  border:1px solid rgba(244,223,22,.90);
  border-radius: 999px;
}
.page-branches .branch-card .btn.ghost:hover{
  border-color:rgba(244,223,22,1);
  box-shadow: 0 0 0 1px rgba(244,223,22,.25), 0 0 28px rgba(244,223,22,.18);
}
.page-branches .branch-badge{
  position:absolute;
  top:14px;
  right:14px;
  background:#c32020;
  color:#fff;
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.02em;
}

@media (max-width: 640px){
  .page-branches .branch-card{height:auto;}
}

.page-branches .branch-note{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed rgba(0,0,0,.18);
  color:rgba(0,0,0,.78);
  font-weight:850;
  font-size:13px;
  line-height:1.35;
}


/* === MENU: STACKED CARD (IMAGE DOMINANT, NAME BELOW, PRICE RIGHT) === */
.page-menu .product-card--stacked{
  display:flex;
  flex-direction:column;
  gap:12px;
  height: 100%;
}
.page-menu .product-card--stacked .product-img{
  width:100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow:hidden;
  box-shadow:
    0 0 0 1px rgba(244,223,22,0.18),
    0 18px 45px rgba(0,0,0,0.70);
}
.page-menu .product-card--stacked .product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.page-menu .product-card--stacked .product-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:46px;
  padding:8px 10px;
  border-radius:14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244,223,22,0.35);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.35);
}
.page-menu .product-card--stacked .product-name{
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 650;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-menu .product-card--stacked .product-price{
  margin-top:0;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 900;
  color: rgba(244,223,22,0.95);
}
@media (max-width: 520px){
  .page-menu .product-card--stacked .product-name{ font-size:15px; }
  .page-menu .product-card--stacked .product-price{ font-size:15px; }
}


.page-menu .product-card--stacked .product-price .now{
  color: rgba(244,223,22,0.95);
  font-weight: 950;
  letter-spacing: .2px;
}



/* About page premium cards (scoped) */
.page-about .split{gap:16px;}
.page-about .panel{
  background: #0b0b0b;
  border: 2px solid rgba(244,223,22,.85);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55), 0 0 0 1px rgba(244,223,22,.18) inset;
}
.page-about .panel .hr{opacity:.55;}
.page-about .panel p{line-height:1.6;}


/* === Bayilik (Franchise) Page === */

.page-franchise .hero { padding-top: 28px; }
.page-franchise .lead{
  max-width: 980px;
  margin: 10px 0 22px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.page-franchise .panel{
  background: #0b0b0c;
  border: 1px solid rgba(244,223,22,.85);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(244,223,22,.12) inset, 0 0 22px rgba(244,223,22,.12);
  border-radius: 18px;
  padding: 18px;
}

.page-franchise .section-title{
  margin: 18px 0 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}

.page-franchise .franchise-form{ margin-top: 14px; }
.page-franchise .form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.page-franchise .field{ display:flex; flex-direction:column; gap:6px; }
.page-franchise .field-full{ grid-column: 1 / -1; }

.page-franchise label{
  font-size: 13px;
  color: rgba(255,255,255,.82);
}

.page-franchise input,
.page-franchise select,
.page-franchise textarea{
  border-radius: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: #070708;
  color: #fff;
  outline: none;
}

.page-franchise input:focus,
.page-franchise select:focus,
.page-franchise textarea:focus{
  border-color: rgba(244,223,22,.85);
  box-shadow: 0 0 0 3px rgba(244,223,22,.12);
}

.page-franchise select{
  appearance: none;
}

.page-franchise .form-actions{
  margin-top: 14px;
  display:flex;
  justify-content:flex-end;
}

.page-franchise .form-result{
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

@media (max-width: 900px){
  .page-franchise .form-grid{ grid-template-columns: 1fr; }
}


/* Franchise (Bayilik) page */
.page-franchise .lead{
  max-width: 72ch;
  margin: 10px auto 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.page-franchise main{
  padding-bottom: 40px;
}
.page-franchise form{
  max-width: 1100px;
  margin: 0 auto;
}
.page-franchise form > h2{
  margin: 26px 0 14px;
  font-size: 22px;
  letter-spacing: .2px;
}
.page-franchise .card{
  border: 1px solid rgba(244,223,22,.80);
  background: radial-gradient(1200px 600px at 18% 15%, rgba(244,223,22,.10), transparent 60%),
              rgba(0,0,0,.92);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(244,223,22,.10) inset;
  margin: 14px 0;
}
.page-franchise .card h3{
  margin: 0 0 12px;
  font-size: 16px;
  color: rgba(244,223,22,.95);
}
.page-franchise .form-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.page-franchise .field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.page-franchise .field--full{
  grid-column: 1 / -1;
}
.page-franchise label{
  font-size: 12px;
  color: rgba(255,255,255,.80);
}
.page-franchise input,
.page-franchise select,
.page-franchise textarea{
  border: 1px solid rgba(244,223,22,.55);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
}
.page-franchise input:focus,
.page-franchise select:focus,
.page-franchise textarea:focus{
  border-color: rgba(244,223,22,.95);
  box-shadow: 0 0 0 3px rgba(244,223,22,.18);
}
.page-franchise .is-invalid{
  border-color: rgba(255,70,70,.95) !important;
  box-shadow: 0 0 0 3px rgba(255,70,70,.16) !important;
}
.page-franchise .field-error{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255,120,120,.95);
}
.page-franchise .form-actions{
  display:flex;
  justify-content:flex-end;
  margin-top: 10px;
}
.page-franchise .form-msg{
  margin-top: 12px;
  color: rgba(244,223,22,.95);
  font-weight: 600;
}
.page-franchise .btn--primary{
  border: 1px solid rgba(244,223,22,.92);
  background: rgba(255,255,255,.06);
  color:#fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.page-franchise .btn--primary:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,.55), 0 0 18px rgba(244,223,22,.20);
}

/* responsive */
@media (max-width: 900px){
  .page-franchise .form-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .page-franchise .form-grid{ grid-template-columns: 1fr; }
  .page-franchise .form-actions{ justify-content:stretch; }
  .page-franchise .btn--primary{ width:100%; }
}


/* === İletişim (Contact) Page === */

.page-contact .lead{
  max-width: 980px;
  margin: 10px 0 22px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.page-contact .contact-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}

.page-contact .contact-panel{
  background: #0b0b0c;
  border: 1px solid rgba(244,223,22,.85);
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(244,223,22,.12) inset, 0 0 22px rgba(244,223,22,.12);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.page-contact .contact-panel::before{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: radial-gradient(circle at 30% 20%, rgba(244,223,22,.14), transparent 55%);
  pointer-events:none;
}

.page-contact .contact-panel > *{ position: relative; z-index: 1; }

.page-contact .contact-info-panel a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.page-contact .contact-info-panel a:hover{
  color: rgba(244,223,22,.95);
}

.page-contact .contact-form{
  margin-top: 8px;
}

.page-contact .contact-form .field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom: 12px;
}

.page-contact .contact-form label{
  font-size: 13px;
  color: rgba(255,255,255,.82);
}

.page-contact .contact-form input,
.page-contact .contact-form select,
.page-contact .contact-form textarea{
  border-radius: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: #070708;
  color: #fff;
  outline: none;
}

.page-contact .contact-form input:focus,
.page-contact .contact-form select:focus,
.page-contact .contact-form textarea:focus{
  border-color: rgba(244,223,22,.85);
  box-shadow: 0 0 0 3px rgba(244,223,22,.12);
}

.page-contact .contact-form .form-actions{
  margin-top: 10px;
  display:flex;
  justify-content:flex-end;
}

.page-contact .contact-form .form-result{
  margin-top: 10px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}

@media (max-width: 900px){
  .page-contact .contact-layout{ grid-template-columns: 1fr; }
}

/* === Menu (API-driven, premium) === */
.menu-section{ margin-top: 18px; }
.menu-section-title{
  margin: 14px 0 10px;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){ .menu-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .menu-grid{ grid-template-columns: 1fr; } }

.menu-card{
  background: #0b0b0c;
  border: 1px solid rgba(244,223,22,.85);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.45), 0 0 22px rgba(244,223,22,.10);
}
.menu-imgwrap{ position:relative; width:100%; aspect-ratio: 4/3; background:#070708; }
.menu-imgwrap img{ width:100%; height:100%; object-fit:cover; display:block; }
.menu-imgph{ width:100%; height:100%; }
.menu-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 12px;
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.10);
}
.menu-name{ font-weight:700; color:#fff; font-size: 15px; line-height:1.2; }
.menu-price{
  font-weight:800;
  color:#fff;
  background: rgba(244,223,22,.18);
  border: 1px solid rgba(244,223,22,.65);
  padding: 6px 10px;
  border-radius: 999px;
  white-space:nowrap;
}

/* === Form / Toast & Select Fix === */
select, option{
  color:#111 !important;
}
select{
  background:#fff !important;
}
.form-toast{
  position:fixed;
  left:50%;
  top:18px;
  transform:translateX(-50%);
  z-index:9999;
  max-width:min(560px, calc(100% - 24px));
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(244,223,22,.85);
  background:rgba(11,11,12,.92);
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.55), 0 0 24px rgba(244,223,22,.14);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.form-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(6px);
}
.form-toast .title{ font-weight:900; letter-spacing:.2px; }
.form-toast .sub{ font-size:12px; opacity:.8; margin-top:4px; }
.page-flex{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.page-flex main{ flex:1; }


/* === Bayilik Info Callout & Mobile Width === */
.info-callout{
  margin: 18px 0 28px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(244,223,22,.75);
  background: radial-gradient(120% 140% at 10% 0%, rgba(244,223,22,.18) 0%, rgba(0,0,0,.0) 55%),
              rgba(17,17,18,.72);
  box-shadow: 0 18px 44px rgba(0,0,0,.55), 0 0 28px rgba(244,223,22,.10);
}
.info-callout p{
  margin:0;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .1px;
}
@media (max-width: 640px){
  .info-callout{ margin: 14px 0 22px; padding: 14px 14px; border-radius: 16px; }
  .info-callout p{ font-size: 14px; }
}

/* Bayilik form/card width on mobile */
@media (max-width: 640px){
  .form-wrap, .form-card{
    width: min(720px, calc(100% - 16px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .container{ padding-left: 12px; padding-right: 12px; }
}

/* Footer phones visibility hardening (bayilik page special cases) */
.footer-phones{ display:flex; flex-direction:column; gap:10px; }
.footer-phones .phone-item{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.footer-phones .phone-link{ color:#fff !important; opacity:.92; text-decoration:none; }
.footer-phones .phone-link:hover{ opacity:1; text-decoration:underline; }

/* === Menu price strip always visible === */
.product-meta{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* === Toplu Sipariş: make output visible when filled & reset button same as primary === */
.ts-output{ display:none; }
.ts-output.show{ display:block; }



/* === Mobile bottom-nav safe space === */
@media (max-width: 768px){
  body{ padding-bottom: 110px; }
  .ts-actions{ margin-bottom: 110px; }
}
/* === Menu: product meta always visible === */
.product-meta{opacity:1 !important; transform:none !important;}
.product-card:hover .product-meta,
.product-card:focus-within .product-meta{opacity:1 !important; transform:none !important;}



/* =========================
   MENU PAGE (DB) - GRID
   ========================= */
.menu-grid{
  max-width: 1200px;
  margin: 18px auto 40px;
  padding: 0 16px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(244,223,22,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.menu-img{
  aspect-ratio: 4 / 3;
  background: #000;
}
.menu-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.menu-meta{
  text-align: left;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(244,223,22,.14);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 10px;
}

.menu-name{
  font-weight: 900;
  letter-spacing: .2px;
  color: #fff;
  margin:0;
  font-size: 16px;
  line-height: 1.25;
}

.menu-price{
  color: rgba(244,223,22,.98);
  font-weight: 950;
  white-space: nowrap;
  margin:0;
  font-size: 16px;
}

@media (max-width: 980px){
  .menu-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

/* =========================
   PREMIUM INNER PAGES (GLOBAL)
   ========================= */
.page-hero{
  text-align:center;
  margin: 8px 0 18px;
  padding: 18px 14px;
  border-radius: var(--r24);
  border: 1px solid rgba(244,223,22,.18);
  background:
    radial-gradient(circle at 20% 18%, rgba(244,223,22,.14), rgba(0,0,0,0) 55%),
    radial-gradient(circle at 78% 22%, rgba(244,223,22,.10), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow: 0 20px 70px rgba(0,0,0,.70);
}
.page-title{
  margin: 0;
  font-size: clamp(24px, 3.0vw, 38px);
  font-weight: 980;
  letter-spacing: -.02em;
  color: var(--brand);
}
.page-desc{
  margin: 10px auto 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 14.5px;
}
.page-subhead{ margin: 26px 0 10px; }
.page-subtitle{
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .02em;
}

/* =========================
   MENU PAGE (RESPONSIVE + PREMIUM)
   ========================= */
.menu-page .menu-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  justify-content: center;
  margin: 14px 0 40px;
}
@media (max-width: 1100px){
  .menu-page .menu-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .menu-page .menu-grid{ grid-template-columns: 1fr; gap: 14px; }
}

.menu-page .menu-card{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 2px solid rgba(244,223,22,.55); /* sarı çerçeve */
  box-shadow: 0 10px 28px rgba(0,0,0,.38), 0 0 0 1px rgba(244,223,22,.14);
}
@media (hover:hover){
  .menu-page .menu-card{ transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
  .menu-page .menu-card:hover{
    transform: translateY(-2px);
    border-color: rgba(244,223,22,.95);
    box-shadow: 0 14px 36px rgba(0,0,0,.48), 0 0 0 1px rgba(244,223,22,.22);
  }
}

.menu-page .menu-img img{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-page .menu-meta{
  padding: 12px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.menu-page .menu-name{
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
  max-width: 75%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-page .menu-price{
  font-weight: 980;
  font-size: 13px;
  line-height: 1;
  color: #0b0b0b;
  background: var(--brand);
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 520px){
  .menu-page .menu-name{ font-size: 14px; max-width: 72%; }
  .menu-page .menu-price{ font-size: 12.5px; padding: 7px 9px; }
}


/* Header logo fix */
.brand-logo{display:block;height:48px;width:auto;max-height:48px;}
@media (max-width:640px){.brand-logo{height:42px;max-height:42px;}}
