:root{
  /* Kimpton-inspired warm Mediterranean colors */
  --bg:#f8f6f2;
  --panel:#ffffff;
  --panel2:#f5f3ef;
  --text:#2c2416;
  --muted:#6b5d4a;
  --line:rgba(44,36,22,.12);
  --shadow:0 16px 45px rgba(0,0,0,.15);
  --radius:18px;
  --radius2:26px;
  --brand:#c49a6c;
  --gold:#d4a574;
  --brown:#8b6f47;
  --ok:#31d07c;
  --warn:#ffcc66;
  --danger:#c96a5f;
  --container: min(1160px, calc(100% - 40px));
  /* Additional warm tones */
  --cream:#faf8f4;
  --beige:#e8e3d9;
  --terracotta:#b87d5a;
}

[data-theme="dark"]{
  --bg:#1a1612;
  --panel:#25211c;
  --panel2:#2d2823;
  --text:#f4f1ec;
  --muted:#a89b8a;
  --line:rgba(255,255,255,.12);
  --shadow:0 16px 45px rgba(0,0,0,.35);
  --brand:#d4a574;
  --gold:#e8b882;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1000px 600px at 15% -10%, rgba(212,165,116,.15), transparent 55%),
    radial-gradient(900px 700px at 110% 0%, rgba(196,154,108,.12), transparent 55%),
    radial-gradient(800px 800px at 50% 120%, rgba(248,246,242,.8), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit;color:inherit}
::selection{background: rgba(243,180,41,.35)}

.container{width:var(--container); margin-inline:auto; padding-inline:20px;}

.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:var(--panel); border:1px solid var(--line); border-radius:12px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:999;
  backdrop-filter:saturate(160%) blur(10px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom:1px solid var(--line);
  padding-inline:0;
  transition:background 0.3s ease, border-color 0.3s ease;
}

.topbar.scrolled{
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  box-shadow:0 2px 20px rgba(0,0,0,.1);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:14px;}
.brand{display:flex; align-items:center; gap:10px; min-width:220px;}
.brand img{width:46px; height:46px; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));}
.brand .title{display:flex; flex-direction:column; line-height:1.05}
.brand .title strong{font-family:"Playfair Display", serif; font-size:18px; letter-spacing:.3px}
.brand .title span{font-size:12px; color:var(--muted)}

.navlinks{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:center}
.navlinks a{font-size:14px; color:var(--muted); padding:8px 10px; border-radius:999px}
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.navlinks a.active{color:var(--text); background:rgba(212,165,116,.14); border:1px solid rgba(212,165,116,.25)}

.actions{display:flex; align-items:center; gap:10px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:10px 14px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  color:var(--text); cursor:pointer;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none; white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn:active{transform:translateY(0px)}
.btn.primary{border-color:rgba(212,165,116,.55); background:linear-gradient(135deg, rgba(212,165,116,.24), rgba(196,154,108,.18)); color:var(--text);}
.btn.brand{border-color:rgba(196,154,108,.55); background:linear-gradient(135deg, rgba(196,154,108,.26), rgba(212,165,116,.16)); color:var(--text);}
.btn.ghost{background:transparent}

.iconBtn{
  width:42px; height:42px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  display:grid; place-items:center; cursor:pointer;
  transition:transform .12s ease, background .12s ease;
}
.iconBtn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}

.hamburger{display:none}

.cartCount{margin-left:2px; padding:2px 8px; border-radius:999px; background:rgba(212,165,116,.16); border:1px solid rgba(212,165,116,.25); font-size:12px}

.hero{padding:40px 0 16px}
.heroGrid{display:grid; grid-template-columns:1.18fr .82fr; gap:18px; align-items:stretch;}
.card{border:1px solid var(--line); border-radius:var(--radius2); background:linear-gradient(180deg, color-mix(in srgb, var(--panel) 90%, transparent), color-mix(in srgb, var(--panel) 76%, transparent)); box-shadow:var(--shadow); overflow:hidden; padding:24px;}

.heroMain{display:flex; flex-direction:column; justify-content:space-between; gap:20px;}

.kicker{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px;}
.pill{display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; background:rgba(255,255,255,.06); border:1px solid var(--line); font-size:13px; color:var(--muted);}
.dot{width:8px; height:8px; border-radius:50%; background:var(--ok); display:inline-block;}
.dot.warn{background:var(--warn);}
.dot.danger{background:var(--danger);}

.h1{font-family:"Playfair Display", serif; font-size:clamp(28px, 5vw, 42px); font-weight:700; line-height:1.15; margin:0 0 12px; color:var(--text);}
.sub{font-size:16px; color:var(--muted); line-height:1.6; margin:0 0 20px;}

.heroBtns{display:flex; flex-wrap:wrap; gap:10px; margin-top:20px;}

.heroStats{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px; margin-top:24px; padding-top:24px; border-top:1px solid var(--line);}
.stat{text-align:center;}
.stat strong{display:block; font-size:16px; font-weight:600; margin-bottom:4px;}
.stat span{display:block; font-size:12px; color:var(--muted);}

.heroSide{display:flex; flex-direction:column; gap:16px;}

.sideTop{display:flex; align-items:center; gap:12px; padding-bottom:16px; border-bottom:1px solid var(--line);}
.badge{font-size:28px;}
.sideTop strong{display:block; font-size:18px; font-weight:600; margin-bottom:4px;}
.sideTop span{display:block; font-size:13px; color:var(--muted);}

.quickList{display:flex; flex-direction:column; gap:12px;}
.quickItem{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; border-radius:12px; background:rgba(255,255,255,.03); border:1px solid var(--line);}
.left{display:flex; align-items:center; gap:10px; flex:1;}
.miniIcon{font-size:20px;}
.left strong{display:block; font-size:14px; font-weight:600; margin-bottom:2px;}
.left span{display:block; font-size:12px; color:var(--muted);}

.section{padding:40px 0;}
.sectionHeader{display:flex; align-items:flex-start; justify-content:space-between; gap:20px; margin-bottom:24px; flex-wrap:wrap;}
.sectionHeader h2{font-family:"Playfair Display", serif; font-size:clamp(24px, 4vw, 32px); font-weight:700; margin:0 0 8px; color:var(--text);}
.sectionHeader p{color:var(--muted); margin:0;}

.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px;}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:18px;}

.tile{padding:20px; border-radius:var(--radius); border:1px solid var(--line); background:linear-gradient(180deg, color-mix(in srgb, var(--panel) 85%, transparent), color-mix(in srgb, var(--panel) 70%, transparent)); box-shadow:var(--shadow);}
.tile h3{font-size:18px; font-weight:600; margin:0 0 10px; color:var(--text);}
.tile p{color:var(--muted); margin:0; line-height:1.6;}

.small{font-size:13px; color:var(--muted); line-height:1.5;}

.menuShell{display:grid; grid-template-columns:280px 1fr; gap:18px; align-items:start;}
.menuPanel{padding:20px; position:sticky; top:80px;}
.menuPanel h3{font-size:18px; font-weight:600; margin:0 0 16px;}

.field{margin-bottom:16px;}
.field label{display:block; font-size:13px; font-weight:500; margin-bottom:6px; color:var(--text);}
.input, .select, .textarea{
  width:100%; padding:10px 12px; border-radius:12px;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  color:var(--text); font-size:14px;
  transition:border-color .12s ease, background .12s ease;
}
.input:focus, .select:focus, .textarea:focus{
  outline:none; border-color:rgba(243,180,41,.4); background:rgba(255,255,255,.08);
}
.textarea{min-height:80px; resize:vertical; font-family:inherit;}

.chips{display:flex; flex-wrap:wrap; gap:8px;}
.chip{
  padding:6px 12px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  font-size:12px; cursor:pointer;
  transition:all .12s ease;
}
.chip:hover{background:rgba(255,255,255,.08); border-color:rgba(243,180,41,.3);}
.chip.active{background:rgba(243,180,41,.16); border-color:rgba(243,180,41,.4); color:var(--text);}

.menuList{display:flex; flex-direction:column; gap:24px;}

.category{margin-bottom:32px;}
.catHead{display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--line);}
.catHead h3{font-family:"Playfair Display", serif; font-size:24px; font-weight:700; margin:0 0 4px; color:var(--text);}
.catHead small{display:block; color:var(--muted); font-size:13px;}

.items{display:flex; flex-direction:column; gap:12px;}

.item{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  padding:16px; border-radius:16px;
  border:1px solid var(--line); 
  background:rgba(255,255,255,.03);
  transition:all .12s ease;
}
.item:hover{background:rgba(255,255,255,.06); border-color:rgba(243,180,41,.2);}

.itemImage{
  width:120px; height:120px; flex-shrink:0;
  border-radius:12px; overflow:hidden;
  border:1px solid var(--line);
}
.itemImage img{
  width:100%; height:100%; object-fit:cover;
}

.itemContent{
  flex:1; min-width:0;
}

.itemTop{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:8px;}
.itemName{font-size:18px; font-weight:600; margin-bottom:4px; color:var(--text);}
.itemDesc{font-size:14px; color:var(--muted); line-height:1.5;}

.tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px;}
.tag{
  padding:4px 8px; border-radius:6px;
  font-size:11px; font-weight:500;
  background:rgba(255,255,255,.08); border:1px solid var(--line);
}
.tag.veg{background:rgba(49,208,124,.15); border-color:rgba(49,208,124,.3); color:var(--ok);}
.tag.hot{background:rgba(201,106,95,.15); border-color:rgba(201,106,95,.3); color:var(--danger);}

.priceCol{display:flex; flex-direction:column; align-items:flex-end; gap:10px; min-width:120px;}
.price{font-size:20px; font-weight:700; color:var(--brand);}

.qty{
  display:flex; align-items:center; gap:8px;
  padding:6px 8px; border-radius:12px;
  background:rgba(255,255,255,.05); border:1px solid var(--line);
}
.qty button{
  width:28px; height:28px; border-radius:6px;
  border:1px solid var(--line); background:rgba(255,255,255,.05);
  cursor:pointer; font-size:18px; font-weight:600;
  display:grid; place-items:center;
  transition:all .12s ease;
}
.qty button:hover{background:rgba(255,255,255,.1); border-color:rgba(243,180,41,.3);}
.qty span{min-width:24px; text-align:center; font-weight:600;}

.galleryGrid{display:flex; flex-direction:column; gap:20px;}

.galleryItem{
  display:flex; align-items:center; gap:20px;
  padding:20px; border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, color-mix(in srgb, var(--panel) 85%, transparent), color-mix(in srgb, var(--panel) 70%, transparent));
  box-shadow:var(--shadow);
  transition:all .2s ease;
}
.galleryItem:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  border-color:rgba(243,180,41,.3);
}

.galleryImage{
  width:200px; height:200px;
  object-fit:cover; border-radius:12px;
  border:1px solid var(--line);
  flex-shrink:0;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}

.galleryText{
  flex:1; padding-left:10px;
}
.galleryText h3{
  font-size:22px; font-weight:600;
  margin:0 0 8px; color:var(--text);
  font-family:"Playfair Display", serif;
}
.galleryText p{
  font-size:15px; color:var(--muted);
  margin:0; line-height:1.6;
}

.quote{padding:24px;}
.quote .stars{color:var(--gold); font-size:18px; margin-bottom:12px;}
.quote p{font-style:italic; margin-bottom:16px; line-height:1.6;}
.who{display:flex; align-items:center; gap:12px;}
.avatar{width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid var(--line);}
.who strong{display:block; font-size:14px; margin-bottom:2px;}
.who .small{font-size:12px;}

.formGrid{display:grid; grid-template-columns:repeat(2, 1fr); gap:12px;}

.helper{font-size:12px; color:var(--muted); margin-top:8px; text-align:center;}

.mapPlaceholder{aspect-ratio:16/9; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.03); display:grid; place-items:center; color:var(--muted)}

.cartTotal{font-weight:800; font-size:18px}

.cartRow{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  padding:16px; border-radius:12px;
  border:1px solid var(--line); background:rgba(255,255,255,.03);
  margin-bottom:12px;
}
.muted{color:var(--muted); font-size:13px;}

.backdrop{position:fixed; inset:0; background:rgba(0,0,0,.55); display:none; align-items:flex-end; justify-content:center; padding:16px; z-index:2000;}
.backdrop.show{display:flex}
.drawer{width:min(980px, 100%); max-height:min(84vh, 780px); border-radius:22px; overflow:hidden; border:1px solid var(--line); background:linear-gradient(180deg, color-mix(in srgb, var(--panel) 95%, transparent), color-mix(in srgb, var(--panel2) 86%, transparent)); box-shadow:var(--shadow); display:grid; grid-template-rows:auto 1fr auto;}
.drawerHead{padding:14px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px; border-bottom:1px solid var(--line); background:linear-gradient(90deg, rgba(179,0,0,.12), rgba(243,180,41,.10));}
.drawerBody{padding:14px; overflow:auto}
.drawerFoot{padding:14px; border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}

.toast{position:fixed; right:16px; bottom:16px; padding:12px 14px; border-radius:16px; border:1px solid var(--line); background:rgba(0,0,0,.62); backdrop-filter:blur(10px); box-shadow:var(--shadow); display:none; z-index:2500; max-width:360px;}
.toast.show{display:block; animation:pop .18s ease}
@keyframes pop{from{transform:translateY(8px); opacity:.4} to{transform:translateY(0); opacity:1}}

.cookie{position:fixed; left:16px; right:16px; bottom:16px; max-width:980px; margin:0 auto; border:1px solid var(--line); background:rgba(0,0,0,.55); backdrop-filter:blur(10px); border-radius:18px; padding:12px; display:none; z-index:2300; box-shadow:var(--shadow);}
.cookie.show{display:block}
.cookieRow{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}

/* ✅ FIX: Floating actions bottom-right */
.floatBar{
  position:fixed;
  right:16px;
  bottom:16px;
  display:grid;
  gap:10px;
  z-index:1500;
}
.fab{
  width:48px; height:48px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  transition: transform .12s ease, background .12s ease;
  font-size:20px;
}
.fab:hover{transform: translateY(-1px); background:rgba(0,0,0,.42)}
.fab.brand{background:linear-gradient(135deg, rgba(179,0,0,.35), rgba(243,180,41,.18)); border-color:rgba(179,0,0,.45)}

footer{
  margin-top:60px; padding:40px 0;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg) 95%, var(--panel)));
}
.footerGrid{display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:32px;}
.footerCol h3{font-size:18px; font-weight:600; margin:0 0 16px; color:var(--text);}
.footerLinks{display:flex; flex-direction:column; gap:8px;}
.footerLinks a{color:var(--muted); padding:6px 0; transition:color .12s ease;}
.footerLinks a:hover{color:var(--text);}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  .menuShell{grid-template-columns:1fr}
  .menuPanel{position:static;}
  .galleryItem{flex-direction:column; text-align:center;}
  .galleryImage{width:100%; height:250px;}
  .galleryText{padding-left:0; padding-top:10px;}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .hamburger{display:inline-flex}
  .heroStats{grid-template-columns:1fr}
  .formGrid{grid-template-columns:1fr}
  .galleryImage{height:200px;}
  .galleryText h3{font-size:20px;}
  .galleryText p{font-size:14px;}
  
  /* Menu item image mobile */
  .itemImage{width:100px; height:100px;}
  
  /* Header mobile fixes */
  .nav{padding:8px 0; gap:8px; flex-wrap:wrap;}
  .brand{min-width:auto; gap:8px; flex:1; min-width:0;}
  .brand img{width:36px; height:36px;}
  .brand .title strong{font-size:16px;}
  .brand .title span{font-size:11px; display:none;}
  .actions{gap:6px; flex-shrink:0;}
  .iconBtn{width:36px; height:36px;}
  .iconBtn .svg{width:16px; height:16px;}
  .btn{padding:8px 12px; font-size:13px;}
  .btn span:not(.cartCount){display:none;}
  #openCartBtn .svg{width:18px; height:18px;}
  .cartCount{font-size:11px; padding:2px 6px;}
  .hamburger span{font-size:13px;}
  
  /* Navigation links wrap to bottom of header when space is limited */
  .navlinks{
    width:100%;
    order:3;
    margin-top:8px;
    padding-top:8px;
    border-top:1px solid var(--line);
    justify-content:flex-start;
    gap:6px;
  }
  .navlinks a{
    font-size:12px;
    padding:6px 10px;
  }
}

@media (max-width: 480px){
  .container{padding-inline:12px;}
  .nav{padding:6px 0; gap:6px;}
  .brand .title span{display:none;}
  .brand .title strong{font-size:14px;}
  .actions{gap:4px;}
  .iconBtn{width:32px; height:32px;}
  .iconBtn .svg{width:14px; height:14px;}
  .btn{padding:6px 10px; font-size:12px;}
  #openCartBtn{padding:6px 8px;}
  #openCartBtn .svg{width:16px; height:16px;}
  .hamburger{padding:6px 10px;}
  
  /* Menu item image very small screens */
  .itemImage{width:80px; height:80px;}
  
  /* Ensure navlinks are visible and properly sized on very small screens */
  .navlinks{
    gap:4px;
    margin-top:6px;
    padding-top:6px;
  }
  .navlinks a{
    font-size:11px;
    padding:5px 8px;
  }
}

@media print{
  .topbar,.floatBar,.cookie,.toast,.btn,.iconBtn{display:none !important}
  body{background:#fff;color:#111}
  .card,.tile,.category{box-shadow:none}
}

.svg{width:18px;height:18px;display:inline-block}

