/* ==========================================================================
   Shalom Telba Juice — Digital Menu & Payment System
   Design tokens: Espresso / Cream / Caramel Gold / Berry Shalom
   Display: Fraunces · Body: Outfit · Data/Mono: Space Mono
   ========================================================================== */

:root{
  /* -- light theme (default) -- */
  --bg:            #FBF3E7;
  --bg-alt:        #F3E7D4;
  --surface:       #FFFDF9;
  --surface-2:     #FFFFFF;
  --text:          #2B1B12;
  --text-soft:     #6B5847;
  --border:        #E6D6BC;
  --gold:          #C6862E;
  --gold-deep:     #9C6420;
  --berry:         #A23E52;
  --berry-deep:    #7E2E3F;
  --espresso:      #241511;
  --success:       #4C7A5B;
  --shadow:        0 10px 30px -12px rgba(43,27,18,.25);
  --shadow-sm:     0 4px 14px -6px rgba(43,27,18,.18);
  --radius-lg:     28px;
  --radius-md:     18px;
  --radius-sm:     12px;
  --header-h:      76px;

  --font-display: 'Fraunces', serif;
  --font-body:    'Outfit', sans-serif;
  --font-mono:    'Space Mono', monospace;
}

html[data-theme="dark"]{
  --bg:            #1B120D;
  --bg-alt:        #241811;
  --surface:       #2A1D15;
  --surface-2:     #2F2117;
  --text:          #F6ECDD;
  --text-soft:     #C9B7A2;
  --border:        #4A392A;
  --gold:          #E0A544;
  --gold-deep:     #F0BC63;
  --berry:         #E17188;
  --berry-deep:    #EE8FA1;
  --espresso:      #120B08;
  --success:       #7FBE96;
  --shadow:        0 10px 34px -10px rgba(0,0,0,.55);
  --shadow-sm:     0 4px 16px -6px rgba(0,0,0,.45);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  transition:background .35s ease, color .35s ease;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0 0 .4em; line-height:1.15; }
p{ margin:0 0 1em; color:var(--text-soft); }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--berry);
  background:color-mix(in srgb, var(--berry) 10%, transparent);
  padding:6px 14px; border-radius:999px; border:1px solid color-mix(in srgb, var(--berry) 30%, transparent);
}
.section{ padding:72px 0; }
.wrap{ max-width:1160px; margin:0 auto; padding:0 24px; }
.center{ text-align:center; }

/* -------------------- buttons -------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; border-radius:999px; border:none;
  font-family:var(--font-body); font-weight:600; font-size:.95rem;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{ background:var(--berry); color:#fff; box-shadow:var(--shadow-sm); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-ghost{
  background:transparent; color:var(--text); border:1.5px solid var(--border);
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-deep); }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  height:var(--header-h);
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.site-header .wrap{
  height:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{
  width:44px; height:44px; border-radius:50%;
  background:var(--espresso);
  display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--gold) 60%, transparent);
  flex:none; overflow:hidden;
}
.brand-logo svg{ width:26px; height:26px; }
.brand-logo img{ width:100%; height:100%; object-fit:cover; border-radius:50%; }
.brand-name{
  font-family:var(--font-display); font-weight:700; font-size:1.28rem;
  letter-spacing:.01em;
}
.brand-name span{ color:var(--berry); font-style:italic; font-weight:600; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding:10px 16px; border-radius:999px; font-weight:600; font-size:.92rem;
  color:var(--text-soft); transition:background .2s ease, color .2s ease;
}
.main-nav a:hover{ color:var(--text); background:var(--bg-alt); }
.main-nav a.active{ color:#fff; background:var(--berry); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--border); background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  color:var(--text); transition:border-color .2s ease, transform .2s ease, background .2s ease;
  flex:none;
}
.icon-btn:hover{ border-color:var(--gold); transform:translateY(-1px); }
.icon-btn svg{ width:20px; height:20px; }
#themeToggle{ color:var(--gold-deep); }
#themeToggle .icon-moon{ display:none; }
html[data-theme="dark"] #themeToggle .icon-sun{ display:none; }
html[data-theme="dark"] #themeToggle .icon-moon{ display:block; }
html[data-theme="dark"] #themeToggle{ color:#F0BC63; background:var(--espresso); border-color:#F0BC63; }

.hamburger{ display:none; }

/* -------------------- mobile nav drawer -------------------- */
.nav-overlay{
  position:fixed; inset:0; background:rgba(18,11,8,.5);
  opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:150;
}
.nav-overlay.open{ opacity:1; pointer-events:auto; }

.mobile-drawer{
  position:fixed; top:0; right:0; height:100%; width:min(78vw,320px);
  background:var(--surface); z-index:200;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:-10px 0 40px rgba(0,0,0,.25);
  display:flex; flex-direction:column;
  padding:22px 22px 30px;
}
.mobile-drawer.open{ transform:translateX(0); }
.drawer-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
.drawer-close{
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--border);
  background:var(--surface-2); display:flex; align-items:center; justify-content:center;
}
.drawer-close svg{ width:18px; height:18px; }
.drawer-links{ display:flex; flex-direction:column; gap:6px; }
.drawer-links a{
  padding:14px 16px; border-radius:14px; font-weight:600; font-size:1.05rem;
  color:var(--text); display:flex; align-items:center; gap:12px;
  border:1px solid transparent;
}
.drawer-links a.active{ background:var(--bg-alt); border-color:var(--border); color:var(--berry); }
.drawer-links a svg{ width:20px; height:20px; flex:none; color:var(--gold); }
.drawer-foot{ margin-top:auto; padding-top:20px; border-top:1px solid var(--border); }
.drawer-foot p{ font-size:.82rem; margin:0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background:var(--espresso); color:#F1E4D2; padding:56px 0 26px; margin-top:60px;
}
.site-footer .wrap{
  display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px;
}
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.footer-brand .brand-name{ color:#F8EFDE; }
.footer-brand .brand-logo{ box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--gold) 70%, transparent); }
.site-footer p{ color:#C9B7A2; }
.footer-col h4{ color:#F0BC63; font-family:var(--font-body); font-weight:700; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:14px; }
.footer-col a{ display:block; padding:6px 0; color:#E7D8C3; font-size:.92rem; }
.footer-col a:hover{ color:#F0BC63; }
.footer-bottom{
  max-width:1160px; margin:34px auto 0; padding:20px 24px 0; border-top:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
.footer-bottom p{ margin:0; font-size:.82rem; color:#9C8871; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.to-top{
  position:fixed; right:22px; bottom:22px; z-index:90;
  width:50px; height:50px; border-radius:50%;
  background:var(--berry); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
  opacity:0; transform:translateY(16px) scale(.9); pointer-events:none;
  transition:opacity .3s ease, transform .3s ease, background .2s ease;
}
.to-top.show{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.to-top:hover{ background:var(--berry-deep); }
.to-top svg{ width:22px; height:22px; }

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.hero{
  position:relative; padding:86px 0 70px; overflow:hidden;
}
.hero::before{
  content:""; position:absolute; inset:-20% -10% auto auto; width:520px; height:520px;
  background:radial-gradient(circle, color-mix(in srgb, var(--gold) 30%, transparent), transparent 70%);
  filter:blur(10px); z-index:0;
}
.hero .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:50px; align-items:center; }
.hero h1{ font-size:clamp(2.3rem,4.4vw,3.6rem); margin:.3em 0 .35em; }
.hero h1 em{ color:var(--berry); font-style:italic; }
.hero p.lead{ font-size:1.08rem; max-width:46ch; }
.hero-ctas{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.hero-art{
  position:relative; aspect-ratio:1/1; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow);
  background:var(--bg-alt);
}
.hero-art img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute; left:-18px; bottom:-18px; background:var(--surface);
  border-radius:50%; width:120px; height:120px; display:flex; align-items:center; justify-content:center;
  flex-direction:column; text-align:center; box-shadow:var(--shadow); border:1px dashed var(--gold);
}
.hero-badge strong{ font-family:var(--font-display); font-size:1.5rem; color:var(--berry); }
.hero-badge span{ font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-soft); }

.stats-strip{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--surface); }
.stats-strip .wrap{ display:grid; grid-template-columns:repeat(4,1fr); padding:34px 24px; gap:20px; }
.stat{ text-align:center; }
.stat strong{ display:block; font-family:var(--font-display); font-size:1.9rem; color:var(--gold-deep); }
.stat span{ font-size:.8rem; color:var(--text-soft); }

.section-head{ max-width:640px; margin:0 auto 44px; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.3rem); margin-top:.5em; }

.highlight-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.highlight-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:30px 26px; box-shadow:var(--shadow-sm);
}
.highlight-card .ico{
  width:52px; height:52px; border-radius:50%; background:var(--bg-alt);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--berry);
}
.highlight-card .ico svg{ width:24px; height:24px; }
.highlight-card h3{ font-size:1.1rem; }

.feature-band{
  background:linear-gradient(120deg, var(--espresso), #3A241A);
  color:#F3E7D4; border-radius:var(--radius-lg); padding:54px 46px;
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.feature-band h2{ color:#fff; }
.feature-band p{ color:#D9C7AF; }
.feature-list{ display:grid; gap:12px; margin-top:20px; }
.feature-list li{ list-style:none; display:flex; gap:12px; align-items:flex-start; color:#EBDCC5; font-size:.95rem; }
.feature-list li svg{ width:18px; height:18px; color:#F0BC63; flex:none; margin-top:2px; }
.feature-band .btn-primary{ margin-top:22px; }

.cta-band{ text-align:center; padding:70px 0 90px; }
.cta-band h2{ font-size:clamp(1.8rem,3.4vw,2.5rem); }
.cta-band .btn-row{ display:flex; gap:16px; justify-content:center; margin-top:24px; flex-wrap:wrap; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-hero{ padding:56px 0 30px; text-align:center; }
.menu-hero .eyebrow{ margin-bottom:14px; }

.view-toggle{ display:inline-flex; gap:4px; background:var(--surface); border:1px solid var(--border); border-radius:999px; padding:4px; }
.view-toggle button{
  border:none; background:transparent; padding:9px 16px; border-radius:999px;
  display:flex; align-items:center; gap:8px; font-size:.85rem; font-weight:600; color:var(--text-soft);
}
.view-toggle button.active{ background:var(--berry); color:#fff; }
.view-toggle svg{ width:16px; height:16px; }

.menu-toolbar{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  margin-bottom:26px;
}
.menu-toolbar .back-to-cats{
  display:none; align-items:center; gap:8px; font-weight:600; color:var(--berry);
  background:none; border:none; font-size:.92rem; padding:8px 4px;
}
.menu-toolbar .back-to-cats svg{ width:18px; height:18px; }
.menu-toolbar .back-to-cats.show{ display:inline-flex; }
.current-cat-label{ font-family:var(--font-display); font-size:1.5rem; }

/* ---- category row: single row, image on top, name below, scrolls left/right if >3 ---- */
.cat-scroll-wrap{ position:relative; }
.cat-grid{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding:2px 2px 12px; -webkit-overflow-scrolling:touch; scrollbar-width:thin;
  scrollbar-color:var(--gold) transparent;
}
.cat-grid::-webkit-scrollbar{ height:6px; }
.cat-grid::-webkit-scrollbar-track{ background:transparent; }
.cat-grid::-webkit-scrollbar-thumb{ background:var(--border); border-radius:999px; }
.cat-grid::-webkit-scrollbar-thumb:hover{ background:var(--gold); }
.cat-scroll-btn{
  position:absolute; top:calc(50% - 22px); z-index:5; width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--border); background:var(--surface); color:var(--text);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-sm);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.cat-scroll-btn:hover{ border-color:var(--gold); color:var(--gold-deep); transform:translateY(-1px); }
.cat-scroll-btn.left{ left:-14px; }
.cat-scroll-btn.right{ right:-14px; }
.cat-scroll-btn svg{ width:18px; height:18px; }
.cat-card{
  flex:0 0 calc((100% - 32px)/3); min-width:120px; scroll-snap-align:start;
  border:1.5px solid var(--border); padding:0; background:var(--surface); text-align:center;
  border-radius:var(--radius-md); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--gold); }
.cat-card.active{ border-color:var(--berry); }
.cat-card .cat-img{ aspect-ratio:1/1; position:relative; overflow:hidden; background:var(--bg-alt); }
.cat-card .cat-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.cat-card:hover .cat-img img{ transform:scale(1.08); }
.cat-card .cat-body{ padding:12px 10px 16px; }
.cat-card h3{
  font-family:var(--font-body); font-weight:700; font-size:.95rem; margin:0 0 3px; color:var(--text);
}
.cat-card.active h3{ color:var(--berry); }
.cat-card .cat-count{ color:var(--text-soft); font-family:var(--font-mono); font-size:.68rem; }

/* ---- food item grid/list ---- */
.food-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.food-grid.list-view{ grid-template-columns:1fr; gap:14px; }
.food-grid.expanded{ grid-template-columns:repeat(3,1fr); gap:26px; }
.food-grid.expanded .food-card h4{ font-size:1.15rem; }
.food-grid.expanded .food-card .food-body{ padding:18px 20px 22px; }
.food-grid.expanded .food-card .price{ font-size:1.05rem; }
.food-grid.expanded .food-desc{ display:block; font-size:.88rem; margin:6px 0 10px; }

.food-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease;
}
.food-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.food-card .food-img{ aspect-ratio:1/1; overflow:hidden; background:var(--bg-alt); }
.food-card .food-img img{ width:100%; height:100%; object-fit:cover; }
.food-card .food-body{ padding:14px 16px 18px; }
.food-card h4{ font-size:.98rem; margin:0 0 4px; }
.food-card .food-meta{ display:flex; align-items:center; justify-content:space-between; gap:8px; }
.food-card .price{ font-family:var(--font-mono); font-weight:700; color:var(--gold-deep); }
.food-card .tag{
  font-size:.68rem; text-transform:uppercase; letter-spacing:.06em; color:var(--berry);
  background:color-mix(in srgb, var(--berry) 10%, transparent); padding:3px 8px; border-radius:999px;
}
.food-card .food-img{ position:relative; }
.info-btn{
  position:absolute; top:8px; right:8px; height:28px; padding:0 10px; border-radius:999px;
  border:none; background:rgba(20,11,7,.65); backdrop-filter:blur(3px); color:#fff;
  display:flex; align-items:center; gap:5px; box-shadow:0 3px 8px rgba(0,0,0,.3);
  font-family:var(--font-body); font-weight:700; font-size:.68rem; letter-spacing:.03em; text-transform:uppercase;
  transition:background .2s ease, transform .2s ease;
}
.info-btn:hover{ background:var(--berry); transform:scale(1.05); }
.info-btn svg{ width:14px; height:14px; flex:none; }
.food-grid.list-view .info-btn{
  background:rgba(20,11,7,.65); color:#fff;
}
.food-grid.list-view .food-meta{ align-items:center; }

/* ---- food info modal ---- */
.modal-overlay{
  position:fixed; inset:0; z-index:400; background:rgba(18,11,8,.55);
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .28s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.food-modal{
  width:100%; max-width:420px; background:var(--surface); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow); transform:translateY(24px) scale(.97);
  transition:transform .3s cubic-bezier(.4,0,.2,1); max-height:88vh; display:flex; flex-direction:column;
}
.modal-overlay.open .food-modal{ transform:translateY(0) scale(1); }
.food-modal .modal-img{ position:relative; aspect-ratio:16/10; flex:none; }
.food-modal .modal-img img{ width:100%; height:100%; object-fit:cover; }
.modal-close{
  position:absolute; top:12px; right:12px; width:36px; height:36px; border-radius:50%;
  border:none; background:rgba(20,11,7,.6); color:#fff; display:flex; align-items:center; justify-content:center;
}
.modal-close svg{ width:18px; height:18px; }
.food-modal .modal-body{ padding:22px 24px 26px; overflow-y:auto; }
.food-modal .modal-tag{
  display:inline-block; font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; color:var(--berry);
  background:color-mix(in srgb, var(--berry) 10%, transparent); padding:4px 10px; border-radius:999px; margin-bottom:10px;
}
.food-modal h3{ font-size:1.35rem; margin:0 0 6px; }
.food-modal .modal-price{ font-family:var(--font-mono); font-weight:700; color:var(--gold-deep); font-size:1.1rem; margin-bottom:14px; display:block; }
.food-modal .modal-desc{ margin-bottom:16px; }
.food-modal .modal-meta-row{ display:flex; gap:10px; flex-wrap:wrap; }
.food-modal .meta-pill{
  display:flex; align-items:center; gap:6px; font-size:.78rem; color:var(--text-soft);
  border:1px solid var(--border); padding:6px 12px; border-radius:999px;
}
.food-modal .meta-pill svg{ width:14px; height:14px; color:var(--gold-deep); }

.food-grid.list-view .food-card{ display:flex; align-items:stretch; }
.food-grid.list-view .food-img{ width:120px; flex:none; aspect-ratio:auto; }
.food-grid.list-view .food-body{ flex:1; display:flex; flex-direction:column; justify-content:center; }
.food-grid.list-view .food-desc{ display:block; }
.food-desc{ display:none; font-size:.82rem; margin:4px 0 8px; }

/* ==========================================================================
   PAYMENT PAGE
   ========================================================================== */
.pay-hero{ text-align:center; padding:56px 0 20px; }
.pay-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:10px; }
.pay-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:30px 26px 28px; box-shadow:var(--shadow-sm); position:relative; overflow:hidden;
}
.pay-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:6px;
}
.pay-card.cbe::before{ background:var(--gold); }
.pay-card.boa::before{ background:var(--berry); }
.pay-card.telebirr::before{ background:var(--success); }

.pay-top{ display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.pay-logo{
  width:52px; height:52px; border-radius:16px; flex:none;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:1.15rem; color:#fff;
}
.pay-card.cbe .pay-logo{ background:var(--gold); }
.pay-card.boa .pay-logo{ background:var(--berry); }
.pay-card.telebirr .pay-logo{ background:var(--success); }
.pay-top h3{ margin:0; font-size:1.15rem; }
.pay-top span{ font-size:.78rem; color:var(--text-soft); }

.pay-field{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 14px; border:1px solid var(--border); border-radius:12px; margin-bottom:10px;
  background:var(--bg);
}
.pay-field:last-child{ margin-bottom:0; }
.pay-field .f-label{ font-size:.7rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-soft); display:block; margin-bottom:3px; }
.pay-field .f-value{ font-family:var(--font-mono); font-size:.98rem; font-weight:700; letter-spacing:.02em; word-break:break-all; }
.copy-btn{
  flex:none; width:36px; height:36px; border-radius:10px; border:1px solid var(--border);
  background:var(--surface-2); display:flex; align-items:center; justify-content:center; color:var(--text-soft);
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.copy-btn svg{ width:16px; height:16px; }
.copy-btn:hover{ border-color:var(--gold); color:var(--gold-deep); }
.copy-btn.copied{ background:var(--success); border-color:var(--success); color:#fff; }

.pay-note{
  margin-top:34px; display:flex; gap:14px; align-items:flex-start; background:var(--bg-alt);
  border:1px dashed var(--gold); border-radius:var(--radius-md); padding:20px 22px;
}
.pay-note svg{ width:24px; height:24px; color:var(--berry); flex:none; }
.pay-note p{ margin:0; font-size:.92rem; }
.toast{
  position:fixed; left:50%; bottom:30px; transform:translate(-50%,20px);
  background:var(--espresso); color:#F6ECDD; padding:12px 22px; border-radius:999px;
  font-size:.88rem; font-weight:600; box-shadow:var(--shadow); opacity:0; pointer-events:none;
  transition:opacity .25s ease, transform .25s ease; z-index:300; display:flex; align-items:center; gap:8px;
}
.toast.show{ opacity:1; transform:translate(-50%,0); }
.toast svg{ width:16px; height:16px; color:var(--success); }

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */
.location-hero{ text-align:center; padding:56px 0 20px; }
.map-frame-wrap{
  position:relative; width:100%; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid var(--border); background:var(--bg-alt);
}
.map-frame-wrap iframe{ width:100%; height:460px; border:0; display:block; }
.location-actions{ display:flex; gap:14px; justify-content:center; margin-top:24px; flex-wrap:wrap; }

/* ==========================================================================
   SOCIAL PAGE
   ========================================================================= */
.social-hero{ text-align:center; padding:56px 0 20px; }
.social-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.social-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  padding:26px; display:flex; align-items:center; gap:16px; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow:var(--shadow-sm);
}
.social-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--gold); }
.social-ico{
  width:56px; height:56px; border-radius:16px; flex:none; display:flex; align-items:center; justify-content:center; color:#fff;
}
.social-ico svg{ width:26px; height:26px; }
.social-card h3{ font-size:1.05rem; margin:0 0 2px; }
.social-card span{ font-size:.82rem; color:var(--text-soft); }
.join-btn{
  margin-left:auto; flex:none; border:1.5px solid var(--berry); background:transparent;
  color:var(--berry); font-weight:700; font-size:.82rem; padding:9px 18px; border-radius:999px;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.join-btn:hover{ background:var(--berry); color:#fff; transform:translateY(-1px); }

.fb{ background:#3B5BA5; } .ig{ background:linear-gradient(135deg,#C6339B,#F6A03C); }
.tg{ background:#2FA1D6; } .tt{ background:#1C1C1E; }
.yt{ background:#D33A3A; } .wa{ background:#3EA372; } .xx{ background:#111111; }

/* ==========================================================================
   GALLERY PAGE — self-advancing slider, no thumbnails below
   ========================================================================== */
.gallery-slider{
  position:relative; width:100%; aspect-ratio:16/9; border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow); background:var(--bg-alt);
}
.gallery-track{ position:relative; width:100%; height:100%; }
.gallery-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1s ease;
  pointer-events:none;
}
.gallery-slide.active{ opacity:1; pointer-events:auto; }
.gallery-slide img{ width:100%; height:100%; object-fit:cover; }

.gallery-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  width:44px; height:44px; border-radius:50%; border:none;
  background:rgba(20,11,7,.5); color:#fff; backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s ease, transform .2s ease;
}
.gallery-arrow:hover{ background:rgba(20,11,7,.75); }
.gallery-arrow svg{ width:20px; height:20px; }
.gallery-arrow.prev{ left:16px; }
.gallery-arrow.next{ right:16px; }

.gallery-dots{
  position:absolute; left:0; right:0; bottom:16px; z-index:5;
  display:flex; justify-content:center; gap:8px;
}
.gallery-dots .dot{
  width:9px; height:9px; border-radius:50%; border:none; padding:0;
  background:rgba(255,255,255,.5); cursor:pointer; transition:background .2s ease, transform .2s ease;
}
.gallery-dots .dot.active{ background:#fff; transform:scale(1.25); }

@media (max-width:640px){
  .gallery-slider{ aspect-ratio:4/3; border-radius:var(--radius-md); }
  .gallery-arrow{ width:36px; height:36px; }
  .gallery-arrow svg{ width:16px; height:16px; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px){
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .hero .wrap{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:420px; margin:0 auto; }
  .highlight-grid{ grid-template-columns:1fr 1fr; }
  .feature-band{ grid-template-columns:1fr; padding:38px 26px; }
  .site-footer .wrap{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1/-1; }
  .pay-grid{ grid-template-columns:1fr; }
  .social-grid{ grid-template-columns:1fr; }
  .stats-strip .wrap{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 640px){
  .section{ padding:52px 0; }
  .cat-grid{ gap:10px; }
  .cat-card{ flex-basis:calc((100% - 20px)/3); min-width:96px; }
  .cat-card .cat-body{ padding:8px 6px 12px; }
  .cat-card h3{ font-size:.72rem; }
  .cat-card .cat-count{ font-size:.6rem; }

  .food-grid{ grid-template-columns:repeat(4,1fr); gap:10px; }
  .food-card .food-body{ padding:8px 8px 10px; }
  .food-card h4{ font-size:.68rem; margin-bottom:2px; }
  .food-card .price{ font-size:.68rem; }
  .food-card .tag{ display:none; }

  .food-grid.expanded{ grid-template-columns:repeat(2,1fr); gap:16px; }
  .food-grid.expanded .food-card h4{ font-size:.92rem; }
  .food-grid.expanded .food-card .price{ font-size:.85rem; }
  .food-grid.expanded .food-card .tag{ display:inline-block; }
  .food-grid.expanded .food-card .food-body{ padding:12px 14px 16px; }
  .food-grid.expanded .food-desc{ display:block; font-size:.78rem; }

  .food-grid.list-view{ grid-template-columns:1fr; }
  .food-grid.list-view .food-img{ width:84px; }
  .food-grid.list-view h4{ font-size:.88rem; }

  .highlight-grid{ grid-template-columns:1fr; }
  .site-footer .wrap{ grid-template-columns:1fr; text-align:left; }

  .map-frame-wrap iframe{ height:320px; }
}


/* ---- single-page navigation additions ---- */
/* All pages now stay stacked in the document and are reached by scrolling;
   nav links smooth-scroll to the right section instead of hiding/showing pages. */
.page{ scroll-margin-top:var(--header-h); }
.main-nav a, .drawer-links a{ cursor:pointer; }
