:root{
  --bg:#0B0B0C;
  --surface:#151517;
  --surface-2:#1D1D20;
  --glass:rgba(255,255,255,0.06);
  --glass-border:rgba(255,255,255,0.10);
  --orange:#FF6A00;
  --orange-2:#FF8A3D;
  --yellow:#FFC531;
  --white:#F7F6F4;
  --gray:#9A9AA2;
  --gray-dim:#68686F;
  --danger:#FF4D4D;
  --success:#3DDC84;
  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:10px;
  --font-display:'Bricolage Grotesque', 'Inter', sans-serif;
  --font-body:'Inter', sans-serif;
  --hero-scale:1;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*{box-sizing:border-box; margin:0; padding:0;}
html,body{height:100%;}
html{background:#000;}
body{
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  min-height:100%;
  min-height:100dvh;
}
img{max-width:100%; display:block;}
button{font-family:inherit; cursor:pointer; -webkit-tap-highlight-color:transparent;}
a{-webkit-tap-highlight-color:transparent;}
input,textarea{font-family:inherit;}
a{color:inherit;}
::-webkit-scrollbar{display:none;}
*{scrollbar-width:none;}

/* App shell: a phone-width column. On an actual phone this is just the
   full screen; on desktop/tablet it centers as a phone frame so the
   layout is always evaluated at mobile width, per spec. */
.app-shell{
  display:flex; flex-direction:column;
  min-height:100vh; min-height:100dvh;
  max-width:100%;
  position:relative;
  background:var(--bg);
}
@media (min-width:640px){
  body{ background:#000; display:flex; justify-content:center; }
  .app-shell{
    max-width:460px;
    box-shadow:0 0 0 1px rgba(255,255,255,0.06), 0 40px 100px rgba(0,0,0,0.6);
  }
}
#mainScroll{flex:1;}

/* ===== TOP BAR ===== */
.topbar{
  position:sticky; top:0; z-index:40;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 20px;
  background:rgba(11,11,12,0.75);
  -webkit-backdrop-filter:blur(16px); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--glass-border);
}
.brand{display:flex; align-items:center; gap:9px;}
.brand-mark{
  width:36px; height:36px; border-radius:10px; object-fit:cover;
  box-shadow:0 2px 10px rgba(0,0,0,0.4);
}
.brand-name{font-family:var(--font-display); font-weight:700; font-size:16px; letter-spacing:0.2px;}
.hero-logo{
  width:96px; height:96px; border-radius:50%; margin-bottom:18px; position:relative;
  box-shadow:0 8px 30px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,106,0,0.35);
}
.icon-btn{
  width:38px; height:38px; border-radius:50%;
  background:var(--glass); border:1px solid var(--glass-border); color:var(--white);
  display:flex; align-items:center; justify-content:center;
}
.icon-btn svg{width:18px; height:18px;}

.greeting-strip{
  padding:10px 20px; font-size:13px; color:var(--yellow);
  background:linear-gradient(90deg, rgba(255,197,49,0.12), transparent);
  border-bottom:1px solid var(--glass-border);
}

/* ===== HERO ===== */
.hero{
  position:relative; padding:52px 24px 40px; overflow:hidden;
  background:radial-gradient(120% 100% at 50% 0%, #201510 0%, #0B0B0C 65%);
}
.hero-glow{
  position:absolute; top:-120px; right:-80px; width:320px; height:320px;
  background:radial-gradient(circle, rgba(255,106,0,0.35), transparent 70%);
  filter:blur(10px);
}
.hero-eyebrow{
  font-size:calc(12px * var(--hero-scale)); letter-spacing:1.5px; text-transform:uppercase; color:var(--orange-2);
  font-weight:600; margin-bottom:14px; position:relative;
}
.hero-title{
  font-family:var(--font-display); font-weight:800; font-size:calc(50px * var(--hero-scale));
  line-height:0.98; letter-spacing:-1px; position:relative;
}
.hero-title-accent{color:var(--orange);}
.hero-sub{color:var(--gray); font-size:calc(15px * var(--hero-scale)); margin:18px 0 26px; max-width:34ch; position:relative;}

.dinein-label{
  font-size:calc(12.5px * var(--hero-scale)); color:var(--yellow); margin-bottom:10px; max-width:280px; line-height:1.4;
}
.dinein-label strong{color:#fff; letter-spacing:0.3px;}
.hero-buttons{display:flex; flex-direction:column; gap:12px;}
.btn-reserve{
  display:block; text-align:center; text-decoration:none; box-sizing:border-box;
  background:linear-gradient(135deg, var(--yellow), #ffdb70);
  color:#0B0B0C; font-weight:700; font-size:15px;
  border:none; border-radius:100px; padding:15px 26px;
  box-shadow:0 8px 24px rgba(255,197,49,0.25);
}

.hero-cta{
  position:relative; width:100%; max-width:280px; display:block; text-align:center; text-decoration:none; box-sizing:border-box;
}

/* ===== BUTTONS ===== */
.btn-primary{
  background:linear-gradient(135deg, var(--orange), var(--orange-2));
  color:#0B0B0C; font-weight:700; font-size:15px;
  border:none; border-radius:100px; padding:15px 26px;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 8px 24px rgba(255,106,0,0.25);
}
.btn-primary:active{transform:scale(0.97);}
.btn-block{width:100%;}
.btn-ghost{
  background:var(--glass); border:1px solid var(--glass-border); color:var(--white);
  font-weight:600; border-radius:100px; padding:14px 24px;
}
.modal-btn-row .btn-ghost{flex:1;}
.text-btn{background:none; border:none; color:var(--gray); font-weight:600; font-size:14px; padding:10px;}

/* Extra hero-button color presets, set from the admin Design tab */
.btn-blue{background:linear-gradient(135deg,#2E7CF6,#5FA0FF); color:#fff; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(46,124,246,0.28);}
.btn-green{background:linear-gradient(135deg,#22B36B,#4CD98A); color:#062616; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(34,179,107,0.28);}
.btn-red{background:linear-gradient(135deg,#E63946,#FF6B76); color:#fff; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(230,57,70,0.28);}
.btn-purple{background:linear-gradient(135deg,#7C4DFF,#A488FF); color:#fff; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(124,77,255,0.28);}
.btn-teal{background:linear-gradient(135deg,#0E9F94,#3FCDC0); color:#04211e; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(14,159,148,0.28);}
.btn-pink{background:linear-gradient(135deg,#F15BB5,#FF8FD1); color:#3a0b28; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(241,91,181,0.28);}
.btn-white{background:#F7F6F4; color:#0B0B0C; font-weight:700; font-size:15px; border:none; border-radius:100px; padding:15px 26px; box-shadow:0 8px 24px rgba(0,0,0,0.2);}

/* ===== SECTIONS ===== */
.section{padding:34px 20px 6px;}
.section-head{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:16px;}
.section-head h2{font-family:var(--font-display); font-size:21px; font-weight:700;}
.section-tag{font-size:11px; color:var(--yellow); background:rgba(255,197,49,0.12); padding:5px 10px; border-radius:100px; font-weight:600;}

/* ===== CATEGORY GRID ===== */
.cat-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px;}
.cat-card{
  background:var(--glass); border:1px solid var(--glass-border); border-radius:var(--radius-md);
  padding:10px 8px 12px; text-align:center; transition:transform .15s ease, background .15s ease;
  min-width:0; /* CSS Grid items default to min-width:auto, which lets a long
    label (e.g. "Appetizers") force its whole column wider than the others
    even with equal 1fr tracks — this override is what actually keeps all
    category tiles (and their photos) exactly the same size regardless of
    label length. */
}
.cat-card:active{transform:scale(0.95); background:rgba(255,106,0,0.1);}
.cat-photo-wrap{
  display:block; width:100%; position:relative; padding-top:100%; border-radius:12px; overflow:hidden; margin-bottom:8px;
  box-shadow:0 4px 14px rgba(0,0,0,0.35);
}
.cat-photo{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block;}
.cat-label{
  font-size:12.5px; font-weight:600; color:var(--white); line-height:1.2; display:block;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}

/* ===== RAILS (promo + food) ===== */
.rail-wrap{position:relative;}
.rail-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:5;
  width:32px; height:32px; border-radius:50%; border:1px solid var(--glass-border);
  background:rgba(11,11,12,0.75); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); color:#fff; font-size:13px;
  display:flex; align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(0,0,0,0.4);
}
.rail-arrow-left{left:-4px;}
.rail-arrow-right{right:-4px;}
.rail-arrow:active{transform:translateY(-50%) scale(0.92);}
.promo-rail, .food-rail{display:flex; gap:14px; overflow-x:auto; padding:2px 2px 14px; scroll-snap-type:x proximity;}
.promo-card{
  min-width:78%; height:170px; scroll-snap-align:start; border-radius:var(--radius-lg);
  border:1px solid rgba(255,106,0,0.25); position:relative; overflow:hidden; display:block;
  text-decoration:none; background-size:cover; background-position:center;
}
.promo-card::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.15) 100%);
}
.promo-card-text{position:relative; z-index:2; padding:16px 20px; height:100%; display:flex; flex-direction:column; justify-content:flex-end;}
.promo-card h3{font-family:var(--font-display); font-size:19px; margin-bottom:6px; color:#fff;}
.promo-card p{color:#D8D8DC; font-size:13px;}
.promo-badge{position:absolute; top:14px; right:14px; z-index:2; background:var(--yellow); color:#0B0B0C; font-size:10.5px; font-weight:800; padding:4px 9px; border-radius:100px;}

.food-card{
  min-width:150px; scroll-snap-align:start; background:var(--surface); border:1px solid var(--glass-border);
  border-radius:var(--radius-md); overflow:hidden; position:relative;
}
.food-thumb{height:110px; position:relative;}
.food-heart{
  position:absolute; top:8px; right:8px; width:28px; height:28px; border-radius:50%;
  background:rgba(0,0,0,0.4); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); border:none; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px; z-index:2;
}
.food-heart.active{color:var(--orange);}
.food-info{padding:10px 12px 12px;}
.food-name{font-size:13.5px; font-weight:700; line-height:1.25; margin-bottom:3px;}
.food-price{color:var(--orange-2); font-weight:700; font-size:13px;}

/* placeholder food image */
.food-placeholder{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:34px;
}
.food-photo{width:100%; height:100%; object-fit:cover; display:block;}

/* ===== BOTTOM NAV ===== */
.bottom-nav{
  position:sticky; bottom:0; z-index:50;
  display:flex; justify-content:space-around; align-items:flex-end;
  padding:8px 6px calc(10px + var(--safe-bottom));
  background:rgba(11,11,12,0.85); -webkit-backdrop-filter:blur(18px); backdrop-filter:blur(18px);
  border-top:1px solid var(--glass-border);
}
.nav-item{
  background:none; border:none; color:var(--gray-dim); display:flex; flex-direction:column;
  align-items:center; gap:4px; font-size:10.5px; font-weight:600; flex:1; padding:6px 2px;
}
.nav-item svg{width:22px; height:22px;}
.nav-item.active{color:var(--orange);}
.nav-cart{position:relative; top:-14px;}
.cart-fab{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--orange),var(--orange-2)); box-shadow:0 8px 20px rgba(255,106,0,0.4);
  color:#0B0B0C; position:relative;
}
.cart-fab svg{width:24px; height:24px;}
.cart-badge{
  position:absolute; top:-4px; right:-4px; background:var(--danger); color:#fff; font-size:10px; font-weight:800;
  min-width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center; padding:0 3px;
}
.bottom-spacer{height:110px;}

/* ===== TIKTOK SWIPE SCREEN ===== */
.swipe-screen{
  position:fixed; inset:0; z-index:100; background:#000;
}
.swipe-close{
  position:absolute; top:18px; right:16px; z-index:20; width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:none; color:#fff; font-size:22px; line-height:1;
}
.swipe-cat-tabs{
  position:absolute; top:16px; left:14px; right:60px; z-index:20;
  display:flex; gap:6px; justify-content:space-between;
}
.swipe-cat-tab{
  flex:1; min-width:0; max-width:42px; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  border:2px solid transparent; border-radius:50%; padding:0;
  box-shadow:0 3px 10px rgba(0,0,0,0.35); opacity:0.6; transform:scale(0.9);
  transition:opacity .15s ease, transform .15s ease, border-color .15s ease;
}
.swipe-cat-tab .tab-emoji{font-size:17px; line-height:1;}
.swipe-cat-tab.active{opacity:1; transform:scale(1.08); border-color:#fff;}
.swipe-cat-active-label{
  position:absolute; top:64px; left:14px; z-index:20;
  font-family:var(--font-display); font-weight:700; font-size:13px; color:#fff;
  background:rgba(0,0,0,0.4); padding:5px 12px; border-radius:100px;
}
.swipe-track{
  height:100%; overflow-y:auto; scroll-snap-type:y mandatory;
}
.swipe-card{
  height:100%; width:100%; scroll-snap-align:start; position:relative; display:flex; flex-direction:column; justify-content:flex-end;
}
.swipe-card-media{position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:120px;}
.swipe-card-gradient{position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);}
.swipe-card-body{position:relative; z-index:5; padding:26px 22px calc(148px + var(--safe-bottom));}
.swipe-food-name{font-family:var(--font-display); font-size:28px; font-weight:800; margin-bottom:6px;}
.swipe-food-flavor{
  display:inline-block; font-size:11px; font-weight:700; color:var(--yellow);
  background:rgba(255,197,49,0.12); padding:3px 9px; border-radius:100px; margin-bottom:8px; text-transform:uppercase;
}
.swipe-food-desc{color:#D8D8DC; font-size:14px; margin-bottom:12px; max-width:90%;}
.swipe-food-price{font-size:20px; font-weight:800; color:var(--orange-2); margin-bottom:14px;}
.spicy-row{display:flex; gap:4px; margin-bottom:16px;}
.flavor-picker{margin-bottom:16px;}
.flavor-picker-label{font-size:12px; font-weight:700; color:var(--gray); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:8px;}
.flavor-chips{display:flex; flex-wrap:wrap; gap:8px;}
.flavor-chip{
  background:var(--glass); border:1px solid var(--glass-border); color:var(--white);
  font-size:12.5px; font-weight:600; padding:8px 14px; border-radius:100px; transition:all .15s ease;
}
.flavor-chip.active{background:var(--orange); border-color:var(--orange); color:#0B0B0C;}
.cart-item-flavors{font-size:11.5px; color:var(--orange-2); margin-top:2px; margin-bottom:4px;}
.spicy-row span{font-size:15px; opacity:0.35;}
.spicy-row span.on{opacity:1;}
.swipe-actions{display:flex; align-items:center; gap:12px;}
.checkout-shortcut{margin-top:10px; font-size:13px; padding:12px;}
.qty-stepper{display:flex; align-items:center; gap:14px; background:rgba(255,255,255,0.1); border-radius:100px; padding:8px 16px;}
.qty-stepper button{background:none; border:none; color:#fff; font-size:18px; font-weight:700; width:22px;}
.swipe-hint{position:absolute; bottom:calc(30px + var(--safe-bottom)); left:0; right:0; text-align:center; color:rgba(255,255,255,0.5); font-size:11px; z-index:5; letter-spacing:1px; text-transform:uppercase;}

/* ===== OVERLAY / SEARCH ===== */
.overlay{position:fixed; inset:0; z-index:90; background:var(--bg);}
.overlay-panel{padding:16px 18px;}
.overlay-head{display:flex; align-items:center; gap:8px; margin-bottom:14px;}
.picker-title{font-family:var(--font-display); font-size:20px; font-weight:700; flex:1;}
#searchInput{
  flex:1; background:var(--surface); border:1px solid var(--glass-border); border-radius:100px;
  padding:12px 18px; color:var(--white); font-size:16px; outline:none;
}
.filter-chips{display:flex; gap:8px; overflow-x:auto; padding-bottom:14px;}
.chip{
  white-space:nowrap; background:var(--glass); border:1px solid var(--glass-border); color:var(--gray);
  padding:8px 15px; border-radius:100px; font-size:12.5px; font-weight:600;
}
.chip.active{background:var(--orange); color:#0B0B0C; border-color:var(--orange);}
.search-results{display:grid; grid-template-columns:1fr 1fr; gap:12px;}

/* ===== DRAWERS (cart / orders / profile view) ===== */
.drawer-scrim{position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:80; -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);}
.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(92vw,400px); z-index:81;
  background:var(--surface); border-left:1px solid var(--glass-border);
  transform:translateX(100%); transition:transform .28s cubic-bezier(.2,.8,.2,1);
  display:flex; flex-direction:column;
}
.cart-drawer.open{transform:translateX(0);}
.drawer-head{display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border-bottom:1px solid var(--glass-border);}
.drawer-head h3{font-family:var(--font-display); font-size:18px;}
.cart-items{flex:1; overflow-y:auto; padding:14px 20px;}
.cart-item{display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--glass-border);}
.cart-item-thumb{width:56px; height:56px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; overflow:hidden; position:relative;}
.cart-item-body{flex:1;}
.cart-item-top{display:flex; justify-content:space-between; gap:8px;}
.cart-item-name{font-weight:700; font-size:13.5px;}
.cart-item-price{color:var(--orange-2); font-weight:700; font-size:13px;}
.cart-item-note{width:100%; margin-top:6px; background:var(--surface-2); border:1px solid var(--glass-border); border-radius:8px; color:var(--white); font-size:16px; padding:6px 8px;}
.cart-item-qty{display:flex; align-items:center; gap:10px; margin-top:8px;}
.cart-item-qty button{width:24px; height:24px; border-radius:50%; background:var(--glass); border:1px solid var(--glass-border); color:#fff;}
.cart-item-remove{color:var(--danger); font-size:11px; font-weight:600; background:none; border:none; margin-top:6px;}
.cart-footer{padding:16px 20px calc(18px + var(--safe-bottom)); border-top:1px solid var(--glass-border);}
.delivery-note{font-size:11.5px; color:var(--gray); background:var(--glass); border-radius:10px; padding:10px 12px; margin-bottom:12px;}
.cart-line{display:flex; justify-content:space-between; font-weight:700; font-size:15px; margin-bottom:14px;}
.cart-line-sub{font-weight:500; font-size:12.5px; color:var(--gray); margin-bottom:8px;}
.cart-line-total{border-top:1px solid var(--glass-border); padding-top:12px; margin-top:2px;}
.empty-state{text-align:center; color:var(--gray); padding:60px 20px; font-size:13.5px;}

/* ===== MODALS ===== */
.modal{position:fixed; inset:0; z-index:82; display:none; align-items:flex-end; justify-content:center;}
.modal-card{
  background:var(--surface); width:100%; max-width:480px; border-radius:24px 24px 0 0;
  padding:26px 22px calc(26px + var(--safe-bottom)); max-height:88vh; overflow-y:auto;
  border:1px solid var(--glass-border); border-bottom:none; position:relative;
}
.checkout-close{position:absolute; top:16px; right:16px; z-index:5;}
.modal-tall .modal-card{max-height:92vh;}
.modal-small{align-items:center;}
.modal-small .modal-card{border-radius:22px; border-bottom:1px solid var(--glass-border); max-width:340px;}
.modal-card h3{font-family:var(--font-display); font-size:20px; margin-bottom:8px;}
.modal-sub{color:var(--gray); font-size:13px; margin-bottom:20px;}
.modal-card label{display:block; font-size:12.5px; font-weight:600; color:var(--gray); margin-bottom:14px;}
.modal-card input, .modal-card textarea{
  width:100%; margin-top:6px; background:var(--surface-2); border:1px solid var(--glass-border); border-radius:10px;
  padding:12px 14px; color:var(--white); font-size:16px; outline:none;
}
.modal-card textarea{min-height:70px; resize:vertical;}
.modal-btn-row{display:flex; gap:10px; margin-top:6px;}

/* order summary inside checkout */
.summary-row{display:flex; justify-content:space-between; font-size:13.5px; padding:8px 0; border-bottom:1px solid var(--glass-border); color:var(--gray);}
.summary-row strong{color:var(--white);}
.summary-total{display:flex; justify-content:space-between; font-weight:800; font-size:17px; padding:14px 0 20px;}
.confirm-question{font-size:14px; font-weight:600; color:var(--white); text-align:center; margin-bottom:12px;}
#addMoreBtn{margin-top:10px;}
.summary-item-row{display:flex; align-items:center; gap:10px; padding:10px 0; border-bottom:1px solid var(--glass-border);}
.summary-item-info{flex:1; min-width:0;}
.summary-item-name{font-size:13.5px; font-weight:700; margin-bottom:2px;}
.summary-item-note{font-size:11.5px; color:var(--gray-dim);}
.summary-item-price{font-size:13px; font-weight:700; color:var(--orange-2); white-space:nowrap;}
.summary-item-qty{display:flex; align-items:center; gap:8px; flex-shrink:0;}
.summary-item-qty button{width:24px; height:24px; border-radius:50%; background:var(--glass); border:1px solid var(--glass-border); color:#fff;}
.summary-item-remove{color:var(--danger); font-size:16px; background:none; border:none; flex-shrink:0; padding:4px;}

.qr-wrap{
  display:block; width:100%; background:#fff; border-radius:18px; padding:18px; text-align:center; border:none; margin-bottom:16px;
  transition:transform .15s ease;
}
.qr-wrap:active{transform:scale(0.97);}
#qrImage{width:100%; max-width:220px; margin:0 auto 10px; border-radius:8px;}
.qr-caption{display:block; color:#0B0B0C; font-weight:700; font-size:12.5px;}
.qr-manual-hint{color:var(--gray-dim); font-size:11.5px; text-align:center; margin:-8px 0 16px;}
.pay-instructions{padding-left:18px; color:var(--gray); font-size:13px; line-height:1.9; margin-bottom:20px;}
.confirm-icon{width:56px; height:56px; border-radius:50%; background:rgba(61,220,132,0.15); color:var(--success); font-size:28px; display:flex; align-items:center; justify-content:center; margin-bottom:16px;}
.order-id{color:var(--gray); font-size:13px; margin-bottom:20px;}

/* toast */
.toast{
  position:fixed; bottom:100px; left:50%; transform:translateX(-50%) translateY(20px); z-index:200;
  background:var(--surface-2); border:1px solid var(--glass-border); color:var(--white); font-size:13px; font-weight:600;
  padding:12px 20px; border-radius:100px; opacity:0; pointer-events:none; transition:all .25s ease; white-space:nowrap;
}
.toast.show{opacity:1; transform:translateX(-50%) translateY(0);}

/* profile view rows */
.profile-row{display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--glass-border); font-size:13.5px;}
.profile-row span:first-child{color:var(--gray);}
.order-card{background:var(--surface-2); border:1px solid var(--glass-border); border-radius:14px; padding:14px; margin-bottom:12px;}
.order-card-head{display:flex; justify-content:space-between; margin-bottom:8px;}
.order-status{font-size:10.5px; font-weight:800; padding:4px 10px; border-radius:100px; text-transform:uppercase;}
.status-pending{background:rgba(255,197,49,0.15); color:var(--yellow);}
.status-verifying{background:rgba(255,106,0,0.15); color:var(--orange-2);}
.status-preparing{background:rgba(255,138,61,0.18); color:var(--orange);}
.status-completed{background:rgba(61,220,132,0.15); color:var(--success);}

@media (min-width:720px){
  .hero{padding:70px 60px;}
  .section{padding:40px 60px 6px;}
  .cat-grid{grid-template-columns:repeat(3,1fr);}
  .topbar{padding:16px 60px;}
}

@media (prefers-reduced-motion: reduce){
  *{transition:none !important; animation:none !important;}
}

/* Keep full-screen layers (swipe browser, search, cart, modals, toast)
   aligned to the same phone-width column once the app-shell is centered
   on tablet/desktop, instead of stretching edge-to-edge. */
@media (min-width:640px){
  .swipe-screen, .overlay{
    left:50%; right:auto; width:460px; transform:translateX(-50%);
  }
  .modal{ left:50%; right:auto; width:460px; transform:translateX(-50%); }
  .toast{ left:50%; transform:translateX(-50%) translateY(20px); }
  .toast.show{ transform:translateX(-50%) translateY(0); }
}
