/* Ertaş Garden Cafe - Steakhouse Theme (A)
   Single-file stylesheet for dark premium steakhouse aesthetic.
   Works with existing assets folder structure.
*/

:root{
  --bg: #0b0b0c;
  --bg2:#111114;
  --card:#141418;
  --muted:#9aa0a6;
  --text:#f3f4f6;
  --gold:#c9a24a;
  --gold2:#e0c06b;
  --line: rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 28px;
  --max: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 10%, rgba(201,162,74,.10), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(255,120,80,.08), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #070707 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.section{padding:86px 0}
.section.sm{padding:60px 0}
.kicker{letter-spacing:.18em; text-transform:uppercase; color:var(--gold2); font-size:12px}
.h2{font-size:38px; line-height:1.05; margin:10px 0 12px}
.lead{color:var(--muted); max-width:70ch; line-height:1.6}

/* Ambient layers */
.ambient{
  position:fixed; inset:-20vh -20vw;
  pointer-events:none;
  background:
    radial-gradient(800px 500px at 30% 20%, rgba(201,162,74,.10), transparent 70%),
    radial-gradient(800px 500px at 70% 25%, rgba(255,90,60,.08), transparent 70%),
    radial-gradient(900px 700px at 50% 90%, rgba(255,255,255,.04), transparent 70%);
  filter: blur(0px);
  opacity:.85;
  z-index:0;
}
.noise{
  position:fixed; inset:0;
  pointer-events:none;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.22;
  z-index:1;
}

/* Top bar */
.topbar{
  position:fixed; left:0; right:0; top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.28));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.brand .logo{
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(201,162,74,.35);
  background: radial-gradient(circle at 30% 30%, rgba(224,192,107,.35), rgba(0,0,0,.0) 60%),
              linear-gradient(145deg, rgba(201,162,74,.12), rgba(255,255,255,.02));
  display:grid; place-items:center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand .logo svg{opacity:.9}
.nav-actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:var(--text);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(201,162,74,.35)}
.btn.primary{
  background: linear-gradient(135deg, rgba(201,162,74,.95), rgba(224,192,107,.72));
  color:#131313;
  border-color: rgba(201,162,74,.8);
}
.btn.primary:hover{background: linear-gradient(135deg, rgba(224,192,107,.98), rgba(201,162,74,.78))}
.lang{
  display:flex; gap:6px; align-items:center;
  padding:6px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.lang a{
  padding:8px 10px;
  border-radius:12px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
}
.lang a.active{
  background: rgba(201,162,74,.18);
  color:var(--gold2);
  border:1px solid rgba(201,162,74,.30);
}

/* Hero */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:stretch;
  padding-top:72px;
  z-index:2;
}
.hero .video-wrap{
  position:absolute; inset:0;
  overflow:hidden;
}
.hero video, .hero .poster{
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(.9) brightness(.75);
  transform: scale(1.02);
}
.hero .overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.90) 100%),
    radial-gradient(900px 500px at 30% 25%, rgba(201,162,74,.15), transparent 60%),
    radial-gradient(900px 600px at 70% 25%, rgba(255,80,60,.10), transparent 60%);
}
.hero .content{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:end;
  padding:70px 0 52px;
}
@media (max-width: 980px){
  .hero .content{grid-template-columns:1fr; align-items:start; padding:56px 0 44px}
}
.hero h1{
  font-size:56px;
  line-height:1.02;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
@media (max-width: 560px){ .hero h1{font-size:40px} }
.hero p{
  margin:0;
  color:rgba(255,255,255,.80);
  line-height:1.6;
  max-width:60ch;
}
.hero .cta{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:22px;
}
.hero-card{
  background: linear-gradient(180deg, rgba(20,20,24,.82), rgba(10,10,12,.58));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card .label{font-size:12px; color:rgba(255,255,255,.70); letter-spacing:.14em; text-transform:uppercase}
.hero-card .meta{margin-top:10px; color:rgba(255,255,255,.86); line-height:1.5}
.hero-card .meta small{display:block; color:rgba(255,255,255,.62); margin-top:6px}

/* Cards / grids */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.08));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
.card.pad{padding:18px}
.card .thumb{height:190px; background:#0f0f12; position:relative}
.card .thumb img{height:100%; width:100%; object-fit:cover; filter:saturate(.9) contrast(1.05) brightness(.85)}
.card .thumb:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.70));
}
.card h3{margin:14px 0 8px; font-size:18px}
.card p{margin:0; color:rgba(255,255,255,.72); line-height:1.55; font-size:14px}
.price{
  margin-top:12px;
  display:flex; align-items:baseline; justify-content:space-between;
  gap:12px;
  color:rgba(255,255,255,.86);
  font-weight:700;
}
.badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(201,162,74,.25);
  background: rgba(201,162,74,.10);
  color:var(--gold2);
}

/* Section headings */
.head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}
@media (max-width: 820px){ .head{flex-direction:column; align-items:flex-start} }

/* Menu */
.tabs{
  display:flex; gap:8px; flex-wrap:wrap;
  margin:16px 0 18px;
}
.tab{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:rgba(255,255,255,.82);
  cursor:pointer;
}
.tab.active{
  border-color: rgba(201,162,74,.40);
  background: rgba(201,162,74,.14);
  color: var(--gold2);
}
.menu-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 980px){ .menu-grid{grid-template-columns: repeat(2,1fr)} }
@media (max-width: 600px){ .menu-grid{grid-template-columns: 1fr} }
.menu-item{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.menu-item .top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.menu-item .title{font-weight:700}
.menu-item .desc{margin-top:6px; color:rgba(255,255,255,.68); line-height:1.55; font-size:14px}
.menu-item .p{white-space:nowrap; color:var(--gold2); font-weight:800}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.gi{grid-column: span 3}
@media (max-width: 980px){ .gi{grid-column: span 4} }
@media (max-width: 680px){ .gi{grid-column: span 6} }
@media (max-width: 460px){ .gi{grid-column: span 12} }
.gi .img{
  height:180px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f0f12;
}
.gi .img img{height:100%; width:100%; object-fit:cover; filter:saturate(.95) contrast(1.05) brightness(.85)}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}
@media (max-width: 980px){ .contact{grid-template-columns:1fr} }
.list{
  display:grid; gap:10px; margin-top:14px;
}
.li{
  display:flex; gap:10px; align-items:flex-start;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.li b{display:block}
.li span{color:rgba(255,255,255,.72); line-height:1.5}

/* Reservation form */
.form{
  display:grid; gap:12px;
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media (max-width: 620px){ .row2{grid-template-columns:1fr} }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  color:var(--text);
  outline:none;
}
textarea{min-height:92px; resize:vertical}
input:focus, select:focus, textarea:focus{border-color: rgba(201,162,74,.45); box-shadow: 0 0 0 3px rgba(201,162,74,.10)}
.help{font-size:12px; color:rgba(255,255,255,.62)}

/* Footer */
.footer{
  padding:34px 0 46px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}
.footer .cols{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 860px){ .footer .cols{grid-template-columns:1fr} }
.small{color:rgba(255,255,255,.62); font-size:13px; line-height:1.6}

/* Popup */
.popup-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:18px;
}
.popup{
  width:min(920px, 100%);
  border-radius: 26px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(20,20,24,.92), rgba(6,6,7,.90));
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 880px){ .popup{grid-template-columns:1fr} }
.popup .left{
  min-height:320px;
  background:#0f0f12;
  position:relative;
}
.popup .left img{
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.05) brightness(.85);
}
.popup .left:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.75));
}
.popup .right{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.popup .x{
  position:absolute;
  right:14px; top:14px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:rgba(255,255,255,.9);
  display:grid; place-items:center;
  cursor:pointer;
}
.popup h3{margin:0; font-size:22px}
.popup .txt{color:rgba(255,255,255,.72); line-height:1.6}

/* Floating WhatsApp */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:none;
}
.wa-float a{
  width:56px; height:56px;
  display:grid; place-items:center;
  border-radius:18px;
  border:1px solid rgba(201,162,74,.35);
  background: linear-gradient(135deg, rgba(201,162,74,.20), rgba(0,0,0,.35));
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.wa-float a:hover{transform: translateY(-2px)}
.wa-float svg{opacity:.95}

/* Scroll reveal */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease)}
.reveal.in{opacity:1; transform:none}

/* Utilities */
.hr{height:1px; background:rgba(255,255,255,.10); margin:20px 0}
.notice{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(201,162,74,.30);
  background: rgba(201,162,74,.10);
  color:rgba(255,255,255,.85);
}
.notice.err{
  border-color: rgba(255,90,80,.35);
  background: rgba(255,90,80,.10);
}


/* === Milat tweak: Hero info card placement (do not change layout, only move card lower) === */
.hero .content{ gap:34px; }
.hero-card{
  grid-column: 1 / -1;
  justify-self: end;
  max-width: 540px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .hero-card{
    justify-self: stretch;
    max-width: none;
  }
}


/* Header: today's hours badge */
.hours-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,10,10,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:rgba(255,255,255,.90);
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}
.hours-pill .date{ color:rgba(255,255,255,.72); }
.hours-pill .time{ color:rgba(255,255,255,.90); font-weight:600; }
.hours-pill .state{ font-weight:700; padding-left:8px; border-left:1px solid rgba(255,255,255,.12); }



.hours-pill .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.25);
  box-shadow: 0 0 0 2px rgba(255,255,255,.10);
}
.hours-pill .dot.open{ background: rgba(90, 220, 140, .95); box-shadow: 0 0 0 2px rgba(90, 220, 140, .20); }
.hours-pill .dot.closed{ background: rgba(255, 110, 110, .95); box-shadow: 0 0 0 2px rgba(255, 110, 110, .20); }
.hours-pill .dot.unknown{ background: rgba(255, 210, 90, .95); box-shadow: 0 0 0 2px rgba(255, 210, 90, .20); }

.hours-pill .state.open{ color:rgba(90, 220, 140, .95); }
.hours-pill .state.closed{ color:rgba(255, 110, 110, .95); }
.hours-pill .state.unknown{ color:rgba(255, 210, 90, .95); }
.hours-pill.open .state{ color:rgba(90, 220, 140, .95); }
.hours-pill.open{ border-color: rgba(90,220,140,.22); }
.hours-pill.closed .state{ color:rgba(255, 110, 110, .95); }
.hours-pill.closed{ border-color: rgba(255,110,110,.22); }
.hours-pill.unknown .state{ color:rgba(224,192,107,.95); }

@media (max-width: 900px){
  .hours-pill{ display:none; } /* keep header clean on mobile */
}

/* === Milat Step: Remove WhatsApp + Move Reservation to Header Only === */
.wa-float{display:none !important;}
/* Hero CTA now only Gallery; keep it tidy */
.hero .cta{gap:10px;}
/* Mobile: prevent header overflow; hide hours pill on small screens */
@media (max-width: 860px){
  .hours-pill{display:none !important;}
  header .topbar{gap:10px; flex-wrap:wrap;}
  header .topbar .right{flex-wrap:wrap; gap:10px;}
  header .lang-switch{order:1;}
  header .btn{padding:10px 12px;}
}


/* Header navigation upgrades */
.nav-actions{flex-wrap:wrap; justify-content:flex-end}

.nav-links{
  display:flex; align-items:center; gap:10px;
  padding:6px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-links a{
  color:rgba(255,255,255,.85);
  font-size:12px;
  padding:8px 10px;
  border-radius:12px;
  text-decoration:none;
  white-space:nowrap;
}
.nav-links a:hover{background:rgba(255,255,255,.06)}
.nav-links a.nav-cta{
  background:rgba(224,192,107,.14);
  border:1px solid rgba(224,192,107,.25);
}
.nav-links a.nav-cta:hover{background:rgba(224,192,107,.18)}

.lang-dd{position:relative}
.lang-trigger{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(10,10,10,.45);
  color:rgba(255,255,255,.90);
  cursor:pointer;
}
.lang-trigger .fi{width:20px;height:14px}
.lang-trigger .chev{font-size:12px; opacity:.75}
/* Flag icons */
.fi{display:inline-block; width:20px; height:14px; border-radius:4px; background-size:cover; background-position:center; box-shadow:0 1px 4px rgba(0,0,0,.35); border:1px solid rgba(255,255,255,.14)}
.fi-tr{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2760%27%20height%3D%2740%27%20viewBox%3D%270%200%2060%2040%27%3E%0A%3Crect%20width%3D%2760%27%20height%3D%2740%27%20fill%3D%27%23E30A17%27/%3E%0A%3Ccircle%20cx%3D%2725%27%20cy%3D%2720%27%20r%3D%2710%27%20fill%3D%27%23fff%27/%3E%0A%3Ccircle%20cx%3D%2728%27%20cy%3D%2720%27%20r%3D%278%27%20fill%3D%27%23E30A17%27/%3E%0A%3Cpath%20d%3D%27M36%2020l6-2-1.8%205.7%204.8%203.4-6%20.1-2%205.8-1.9-5.8-6-.1%204.8-3.4L30%2018z%27%20fill%3D%27%23fff%27/%3E%0A%3C/svg%3E");}
.fi-en{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2760%27%20height%3D%2740%27%20viewBox%3D%270%200%2060%2040%27%3E%0A%3Crect%20width%3D%2760%27%20height%3D%2740%27%20fill%3D%27%23012169%27/%3E%0A%3Cpath%20d%3D%27M0%200l60%2040M60%200L0%2040%27%20stroke%3D%27%23fff%27%20stroke-width%3D%278%27/%3E%0A%3Cpath%20d%3D%27M0%200l60%2040M60%200L0%2040%27%20stroke%3D%27%23C8102E%27%20stroke-width%3D%274%27/%3E%0A%3Cpath%20d%3D%27M30%200v40M0%2020h60%27%20stroke%3D%27%23fff%27%20stroke-width%3D%2714%27/%3E%0A%3Cpath%20d%3D%27M30%200v40M0%2020h60%27%20stroke%3D%27%23C8102E%27%20stroke-width%3D%278%27/%3E%0A%3C/svg%3E");}
.fi-gr{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2760%27%20height%3D%2740%27%20viewBox%3D%270%200%2060%2040%27%3E%0A%3Crect%20width%3D%2760%27%20height%3D%2740%27%20fill%3D%27%230D5EAF%27/%3E%0A%3Cg%20fill%3D%27%23fff%27%3E%0A%3Crect%20y%3D%274%27%20width%3D%2760%27%20height%3D%274%27/%3E%0A%3Crect%20y%3D%2712%27%20width%3D%2760%27%20height%3D%274%27/%3E%0A%3Crect%20y%3D%2720%27%20width%3D%2760%27%20height%3D%274%27/%3E%0A%3Crect%20y%3D%2728%27%20width%3D%2760%27%20height%3D%274%27/%3E%0A%3Crect%20y%3D%2736%27%20width%3D%2760%27%20height%3D%274%27/%3E%0A%3C/g%3E%0A%3Crect%20width%3D%2724%27%20height%3D%2720%27%20fill%3D%27%230D5EAF%27/%3E%0A%3Crect%20x%3D%2710%27%20width%3D%274%27%20height%3D%2720%27%20fill%3D%27%23fff%27/%3E%0A%3Crect%20y%3D%278%27%20width%3D%2724%27%20height%3D%274%27%20fill%3D%27%23fff%27/%3E%0A%3C/svg%3E");}
.fi-ru{background-image:url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2760%27%20height%3D%2740%27%20viewBox%3D%270%200%2060%2040%27%3E%0A%3Crect%20width%3D%2760%27%20height%3D%2740%27%20fill%3D%27%23fff%27/%3E%0A%3Crect%20y%3D%2713.33%27%20width%3D%2760%27%20height%3D%2713.33%27%20fill%3D%27%230039A6%27/%3E%0A%3Crect%20y%3D%2726.66%27%20width%3D%2760%27%20height%3D%2713.34%27%20fill%3D%27%23D52B1E%27/%3E%0A%3C/svg%3E");}
.lang-item .lang-name{font-size:12px; letter-spacing:.2px}
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0;
  min-width:120px;
  padding:8px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  display:none;
}
.lang-dd.open .lang-menu{display:block}
.lang-item{
  display:flex; align-items:center; gap:10px;
  padding:10px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.90);
  text-decoration:none;
  font-size:12px;
}
.lang-item:hover{background:rgba(255,255,255,.06)}
.lang-item.active{background:rgba(224,192,107,.14); border:1px solid rgba(224,192,107,.20)}
.lang-item .fi{width:20px;height:14px}

.hours-pill .label{opacity:.72; margin-right:6px}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(224,192,107,.35);
  background:transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor:pointer;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  border-radius:2px;
  background:rgba(255,255,255,.85);
  margin:5px 0;
}
.nav-drawer{
  display:none;
  position:fixed;
  top:72px;
  left:12px; right:12px;
  z-index:49;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
}
.nav-drawer.open{display:block}
.nav-drawer a{
  display:flex;
  padding:12px 12px;
  border-radius:14px;
  color:rgba(255,255,255,.90);
  text-decoration:none;
  font-size:14px;
}
.nav-drawer a:hover{background:rgba(255,255,255,.06)}

@media (max-width: 980px){
  .nav-links{display:none}
  .hours-pill{display:none}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
}


.nav-drawer .drawer-divider{height:1px;background:rgba(255,255,255,.08);margin:6px 4px}
.nav-drawer .drawer-hours{padding:6px 4px}
.nav-drawer .hours-pill{display:flex !important; width:100%; justify-content:flex-start}
.nav-drawer .hours-pill .label{margin-right:8px}
@media (max-width: 980px){
  .topbar .inner{height:64px}
  .nav-drawer{top:64px; max-height: calc(100vh - 76px); overflow:auto}
  .nav-actions{gap:8px}
  .lang-trigger{padding:9px 10px}
}

.nav-toggle:hover{border-color:rgba(224,192,107,.55); box-shadow:0 0 0 3px rgba(224,192,107,.12)}
.nav-toggle:active{transform:translateY(1px)}

body.has-wa .wa-float{display:block}

.wa-float a{
  background: rgba(37, 211, 102, .92);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  color: #08110a;
}
.wa-float a:hover{transform: translateY(-1px)}


/* --- Patch: mobile toggle as 'Menü' text (no icon) --- */
.nav-toggle{padding:8px 12px;border-radius:999px;border:1px solid rgba(210,170,85,.35);background:rgba(0,0,0,.22);backdrop-filter: blur(10px);-webkit-backdrop-filter: blur(10px);}
.nav-toggle-text{display:inline-block;font-weight:700;letter-spacing:.04em;font-size:12px;color:#d2aa55;}
.nav-toggle:hover{border-color:rgba(210,170,85,.55);}

/* --- Patch: ensure floating WhatsApp visible when enabled --- */
body.has-wa .wa-float{display:block !important;}
.wa-float{z-index:9999;}


/* --- Special Days / Celebrations (Milat) --- */
.celebrate{ margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.08); }
.celebrate-head{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.celebrate-head .k{ font-size:12px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.72); }
.celebrate-head .s{ font-size:14px; color:rgba(255,255,255,.70); }

.celebrate-grid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px; }
.celebrate-card{ text-align:left; border-radius:16px; padding:14px 14px 12px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.32); box-shadow:0 12px 30px rgba(0,0,0,.30); cursor:pointer; transition:transform .18s ease, border-color .18s ease, background .18s ease; }
.celebrate-card:hover{ transform:translateY(-2px); border-color:rgba(201,160,74,.45); background:rgba(0,0,0,.38); }
.celebrate-card .t{ font-weight:700; font-size:14px; color:rgba(255,255,255,.92); margin-bottom:6px; }
.celebrate-card .d{ font-size:12px; color:rgba(255,255,255,.68); line-height:1.35; }

.celebrate-actions{ margin-top:12px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.celebrate-actions .hint{ font-size:12px; color:rgba(255,255,255,.55); }

/* Events intent CTA */
.event-intent{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:14px; padding:12px 14px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.28); }
.event-intent-card .k{ font-weight:700; font-size:13px; color:rgba(255,255,255,.92); margin-bottom:4px; }
.event-intent-card .s{ font-size:12px; color:rgba(255,255,255,.65); }
.event-intent-btn{ white-space:nowrap; }

@media (max-width: 980px){
  .celebrate-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .celebrate-grid{ grid-template-columns:1fr; }
  .event-intent{ flex-direction:column; align-items:flex-start; }
}


/* === Special Days / Celebrations – Visual Cards (Milat Patch) === */
.celebrate-grid.vgrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.celebrate-card.vcard{
  position:relative;
  border:1px solid rgba(214,170,87,.22);
  border-radius:18px;
  padding:16px;
  min-height:170px;
  text-align:left;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.78) 100%),
    var(--bg),
    radial-gradient(120% 120% at 20% 0%, rgba(214,170,87,.18) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(16,16,16,1) 0%, rgba(10,10,10,1) 100%);
  background-size:cover;
  background-position:center;
  overflow:hidden;
  cursor:pointer;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.celebrate-card.vcard:hover{
  transform:translateY(-2px);
  border-color:rgba(214,170,87,.55);
  box-shadow:0 18px 38px rgba(0,0,0,.45);
}
.celebrate-card.vcard:active{ transform:translateY(0); }
.celebrate-card.vcard .vc-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
  pointer-events:none;
}
.celebrate-card.vcard .vc-top{
  position:relative;
  display:inline-block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(214,170,87,.18);
}
.celebrate-card.vcard .vc-title{
  position:relative;
  display:block;
  margin-top:14px;
  font-size:18px;
  font-weight:700;
  color:#fff;
}
.celebrate-card.vcard .vc-sub{
  position:relative;
  display:block;
  margin-top:8px;
  font-size:13px;
  color:rgba(255,255,255,.82);
}
.celebrate-note{
  margin-top:10px;
  font-size:12px;
  color:rgba(255,255,255,.65);
}

/* Mobile: horizontal scroller */
@media (max-width: 860px){
  .celebrate-grid.vgrid{
    display:flex;
    gap:12px;
    overflow:auto;
    padding-bottom:6px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .celebrate-card.vcard{
    flex:0 0 78%;
    scroll-snap-align:start;
    min-height:170px;
  }
}



/* === Special Days: image under card (DB-driven) === */
.celebrate-card.vcard{
  display:flex;
  flex-direction:column;
}
.celebrate-card.vcard .vc-img{
  margin-top:12px;
  height:96px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f0f12;
}
.celebrate-card.vcard .vc-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width: 860px){
  .celebrate-card.vcard .vc-img{ height:92px; }
}


/* =========================
   İMZA DOKUNUŞLAR: kart altı görsel
   (mevcut yapıyı bozmadan)
   ========================= */
.sig-grid .sig-card .sig-media{
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.sig-grid .sig-card .sig-media img{
  display:block;
  width:100%;
  height:160px;
  object-fit:cover;
}
@media (max-width: 860px){
  .sig-grid .sig-card .sig-media img{ height: 150px; }
}


/* ===== Mobile Fix Pack (v7) - Prevent narrow/tall cards, stack grids, and make cards tappable ===== */
.card.is-clickable,
.card[data-open-modal]{
  cursor: pointer;
}

/* Ensure grids collapse nicely on small screens */
@media (max-width: 900px){
  .container{ padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 768px){
  /* Generic grid: single column on mobile */
  .grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  /* Override inline grid-column spans that make cards narrow */
  .grid > *{
    grid-column: 1 / -1 !important;
    min-width: 0;
  }

  /* Cards should never enforce a fixed width */
  .card{
    width: 100%;
    max-width: 100%;
  }

  /* Event/Campaign/Archive cards: image + content spacing */
  .card .thumb img{
    width: 100%;
    height: auto;
    display: block;
  }

  /* Make “Detay” button optional visually on mobile (tap anywhere) */
  .card button.btn.primary[data-open-modal]{
    width: 100%;
  }
}

/* iOS Safari: prevent form zoom and keep layout stable */
@supports (-webkit-touch-callout: none){
  input, select, textarea{ font-size: 16px; }
}

/* Dark theme date/time icons visibility (Safari/Chrome) */
input[type="date"], input[type="time"]{
  color-scheme: dark;
}




/* === Career section layout fixes (desktop + mobile) === */
#career .container{max-width: 1180px; width: 100%; margin-left:auto; margin-right:auto;}
#career .head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap;}
#career .kicker{letter-spacing:.12em; text-transform:uppercase; font-size:12px; color:rgba(255,255,255,.65);}
#career .h2{margin-top:6px;}
#career .lead{max-width: 68ch;}

#career .pos-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  margin-top:18px;
}
#career .pos-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.10));
  box-shadow: 0 16px 32px rgba(0,0,0,.25);
}
#career .pos-title{font-weight:700;}
#career .pos-badge{
  white-space:nowrap;
  font-size:12px;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(190, 155, 91, .18);
  border:1px solid rgba(190, 155, 91, .35);
  color: rgba(255,255,255,.92);
}

#career .career-form-wrap{margin-top:18px; padding-top:18px; border-top:1px solid rgba(255,255,255,.08);}
#career .career-form .grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}
#career .career-form .field{grid-column: span 1;}
#career .career-form .field-full{grid-column: 1 / -1;}
#career .career-form label{display:block; margin-bottom:6px; font-size:12px; color:rgba(255,255,255,.75);}
#career .career-form input,
#career .career-form select,
#career .career-form textarea{
  width:100%;
  min-width:0;
}
#career .career-form textarea{resize:vertical;}
#career .career-form .help{margin-top:6px; font-size:12px; color:rgba(255,255,255,.60);}

/* Mobile: single column, comfortable spacing */
@media (max-width: 900px){
  #career .career-form .grid{grid-template-columns: 1fr;}
  #career .career-form .field-full{grid-column:auto;}
  #career .pos-grid{grid-template-columns: 1fr;}
}

/* iOS/Safari: prevent tiny columns and ensure inputs don't shrink */
#career *{min-width:0;}


/* --- FIX: Career honeypot field should never be visible (anti-spam input) --- */
.career-form .hp-field{
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}



/* =========================
   v10 – Form kontrol kontrastı + "beyaz buton" düzeltmeleri
   (Mevcut yapıyı bozmadan yalnızca görünüm override)
   ========================= */

/* Genel butonlar: tarayıcı default beyaz görünümü kapat */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
a.btn,
.btn{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1b1206;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
a.btn:hover,
.btn:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}
button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
a.btn:active,
.btn:active{
  transform: translateY(0);
}
button:focus-visible,
input[type="button"]:focus-visible,
input[type="submit"]:focus-visible,
input[type="reset"]:focus-visible,
a.btn:focus-visible,
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,162,74,.35), 0 14px 30px rgba(0,0,0,.35);
}

/* Eğer bazı yerlerde "detay" / küçük aksiyon butonu pill ise */
.button,
.pill-btn,
.badge-btn{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(201,162,74,.16);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
}

/* Select / option okunabilirlik (Chrome/Firefox'ta açılan listede işe yarar; iOS native list sınırlı olabilir) */
select{
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
}
select:focus{
  outline: none;
  border-color: rgba(201,162,74,.55);
  box-shadow: 0 0 0 3px rgba(201,162,74,.25);
}
option, optgroup{
  background-color: #121216;
  color: #f3f4f6;
}

/* Safari/Chrome'da input/textarea placeholder kontrastı */
input::placeholder,
textarea::placeholder{
  color: rgba(243,244,246,.55);
}

/* File input "Choose file" beyaz butonunu tema ile uyumlu yap */
input[type="file"]{
  color: rgba(243,244,246,.85);
}
input[type="file"]::file-selector-button{
  appearance: none;
  -webkit-appearance: none;
  margin-right: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1b1206;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}
input[type="file"]::-webkit-file-upload-button{
  appearance: none;
  -webkit-appearance: none;
  margin-right: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1b1206;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}

/* Native dropdown açılırken (özellikle Windows Chrome) zemin-gövde daha koyu algılansın */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari’de zoom tetiklememesi için (16px) */
  input, select, textarea { font-size: 16px; }
}

/* === Signature / Best Sellers: blurred background image inside card === */
.menu-item.menu-item-link{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
  overflow:hidden;
}
.menu-item.menu-item-link .menu-item-bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  filter: blur(8px);
  transform: scale(1.10);
  opacity: 0.40;
  pointer-events:none;
  z-index: 0;
}

/* Signature / Best Sellers: readability overlay + stacking */
.menu-item.menu-item-link::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.35));
  pointer-events:none;
  z-index: 0;
}
.menu-item.menu-item-link > :not(.menu-item-bg){
  position:relative;
  z-index: 1;
}
.menu-item.menu-item-link .menu-item-content{
  position:relative;
  z-index:1;
  display:block;
}

/* Make the card feel clickable */
.menu-item.menu-item-link:hover,
.menu-item.menu-item-link:focus{
  outline:none;
  transform:translateY(-1px);
}
.menu-item.menu-item-link:focus-visible{
  box-shadow:0 0 0 2px rgba(201,165,77,0.45);
}

/* Ensure inner spans behave like blocks */
.menu-item .top{display:flex;}
.menu-item .title{display:block;}
.menu-item .desc{display:block;}


/* === Menu focus/highlight when linked from homepage (hash target) === */
[id^="item-"]:target,
.menu-item:target,
.card:target{
  scroll-margin-top: 96px; /* account for fixed header */
  box-shadow: 0 0 0 2px rgba(201,162,74,.55), 0 24px 60px rgba(0,0,0,.55);
  border-color: rgba(201,162,74,.55) !important;
  background: rgba(201,162,74,.08);
}
@keyframes egcPulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
[id^="item-"]:target{
  animation: egcPulse .9s ease 1;
}
/* === OPTION C (CSS-only): Only widen selected sections on desktop === */
@media (min-width: 1024px){

  /* Only these sections become wider */
  #highlights .container,
  #chef .container,
  #barista .container,
  #gallery .container{
    max-width: 1440px !important;
    padding-left: 48px;
    padding-right: 48px;
  }

  /* Keep everything else in premium narrow width */
  .container{
    max-width: var(--max);
  }
}

/* Very large screens: a bit wider */
@media (min-width: 1600px){
  #highlights .container,
  #chef .container,
  #barista .container,
  #gallery .container{
    max-width: 1600px !important;
  }
}
