:root{
  --bg: #ffffff;
  --ink: #0f1a14;
  --muted: #5a6b61;
  --green: #2f5e2f;
  --sage: #e8f3ec;
  --gold: #b08d57;
  --line: rgba(47, 94, 47, 0.18);
  --shadow: 0 16px 40px rgba(15, 26, 20, 0.10);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; scroll-behavior:smooth; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration:none; }

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.brand-logo{
  width:90px;
  height:90px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-text{
  min-width:0;
}

.brand-name{
  font-weight:900;
  font-size:30px;
  letter-spacing:-0.5px;
}

.brand-tagline{
  font-size:14px;
  color:var(--muted);
  margin-top:4px;
}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  border-radius:12px;
  padding:10px 14px;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:14px;
  color:var(--muted);
}

.nav a:hover{ color:var(--ink); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  background:var(--green);
  color:white;
  border:1px solid transparent;
  box-shadow:0 10px 24px rgba(47,94,47,0.18);
  font-weight:700;
  cursor:pointer;
}

.btn:hover{ filter:brightness(0.98); }
.btn:active{ transform:translateY(1px); }

.btn-outline{
  background:transparent;
  color:var(--green);
  border:1px solid rgba(47,94,47,0.30);
  box-shadow:none;
}

.btn {
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn-outline:hover{ background:rgba(47,94,47,0.06); }

.btn-small{ padding:10px 14px; border-radius:12px; }

.hero{
  padding:56px 0 30px 0;
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(232,243,236,0.95), rgba(232,243,236,0) 55%),
    radial-gradient(720px 420px at 85% 25%, rgba(176,141,87,0.10), rgba(176,141,87,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(232,243,236,0.35));
}

.hero-inner{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(232,243,236,0.85);
  border:1px solid var(--line);
  color:var(--green);
  font-weight:700;
  font-size:13px;
}

tle{
  margin:14px 0 10px 0;
  font-size:clamp(34px, 4vw, 52px);
  line-height:1.06;
  letter-spacing:-0.7px;
}

.hero-sub{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size:16px;
  max-width:56ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-meta{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}

.meta-card{
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.72);
}

.meta-label{ font-size:12px; color:var(--muted); }
.meta-value{ font-weight:800; color:var(--ink); margin-top:2px; }

.hero-media{ display:flex; justify-content:flex-end; }

.hero-card{
  position:relative;
  width:min(520px, 100%);
  aspect-ratio:1 / 1;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(47,94,47,0.22);
  box-shadow:0 18px 50px rgba(15,26,20,0.12);
  background:white;
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.03);
}

.hero-card-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(140deg, rgba(47,94,47,0.06), rgba(47,94,47,0) 48%),
    linear-gradient(0deg, rgba(15,26,20,0.12), rgba(15,26,20,0) 45%);
  pointer-events:none;
}

.hero-badge{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,0.82);
  border:1px solid rgba(47,94,47,0.20);
  backdrop-filter:blur(10px);
}

.badge-title{ font-weight:900; }
.badge-text{ color:var(--muted); font-size:13px; margin-top:2px; }

.trust{
  padding:14px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,0.9);
}

.trust-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  color:var(--muted);
  font-size:13px;
}

.trust-dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(176,141,87,0.55);
}

.section{ padding:56px 0; }
.section-tint{ background:rgba(232,243,236,0.55); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ margin-bottom:22px; }

.section-title{
  margin:0 0 8px 0;
  font-size:28px;
  letter-spacing:-0.3px;
}

.section-sub{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

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

.card{
  border-radius:var(--radius);
  border:1px solid rgba(47,94,47,0.18);
  background:rgba(255,255,255,0.9);
  box-shadow:0 10px 24px rgba(15,26,20,0.06);
  padding:16px;
}

.card-top{ display:flex; align-items:center; }
.card-title{ font-weight:900; }
.card-desc{ margin-top:10px; color:var(--muted); }
.card-footer{ margin-top:12px; }

.chip{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(47,94,47,0.18);
  background:rgba(232,243,236,0.65);
  color:var(--green);
  font-weight:800;
  font-size:12px;
}

.order-cta{
  margin-top:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(47,94,47,0.20);
  background:white;
  box-shadow:var(--shadow);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.order-title{ margin:0; font-size:18px; }
.order-sub{ margin:6px 0 0 0; color:var(--muted); max-width:75ch; }
.order-right{ display:flex; gap:10px; flex-wrap:wrap; }

.form{
  border-radius:var(--radius2);
  border:1px solid rgba(47,94,47,0.18);
  background:rgba(255,255,255,0.9);
  box-shadow:0 10px 24px rgba(15,26,20,0.06);
  padding:18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}

.field span{
  font-weight:800;
  font-size:13px;
  color:var(--ink);
}

input, textarea, select{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(47,94,47,0.22);
  padding:12px;
  font:inherit;
  outline:none;
  background:white;
}

input:focus, textarea:focus, select:focus{
  border-color:rgba(47,94,47,0.45);
  box-shadow:0 0 0 4px rgba(232,243,236,0.9);
}

.about{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:16px;
  align-items:stretch;
}

.contact{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:14px;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  margin-top:60px;
  background:rgba(255,255,255,0.7);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

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

.cart-badge{
  display:inline-block;
  min-width:18px;
  padding:2px 6px;
  border-radius:999px;
  font-size:12px;
  line-height:1;
  margin-left:8px;
  background:#0f5132;
  color:white;
  font-weight:700;
}

.kds-scroll{
  height:calc(100vh - 140px);
  overflow-y:auto;
  padding-right:8px;
}

.order-card{
  padding:18px;
  margin-top:16px;
  border-radius:12px;
  border:2px solid transparent;
  background:#ffffff;
  transition:box-shadow 0.25s ease, border-color 0.25s ease;
}

.order-card h3{
  font-size:22px;
  margin:0;
}

.order-meta{
  font-size:14px;
  opacity:0.85;
}

.order-items li{
  font-size:18px;
  line-height:1.35;
  margin:6px 0;
}

.order-actions .btn{
  font-size:16px;
  padding:10px 14px;
}

.status-received{
  border-left:6px solid #d32f2f;
  background:#fff6f6;
  box-shadow:0 0 14px rgba(211,47,47,0.25);
}

.status-preparing{
  border-left:6px solid #f9a825;
  background:#fffaf0;
}

.status-ready{
  border-left:6px solid #2e7d32;
  background:#f1faf3;
}

.flash-new{
  animation:flashGlow 2s ease-in-out 2;
  border:2px solid rgba(46, 125, 50, 0.7);
}

@keyframes flashGlow{
  0%{ box-shadow:0 0 0 rgba(46,125,50,0); }
  50%{ box-shadow:0 0 22px rgba(46,125,50,0.55); }
  100%{ box-shadow:0 0 0 rgba(46,125,50,0); }
}

.order-waiting-time{
  font-weight:700;
  margin-top:6px;
}

.status-received .order-waiting-time{
  animation:pulseRed 2s infinite;
}

@keyframes pulseRed{
  0%{ opacity:1; }
  50%{ opacity:0.6; }
  100%{ opacity:1; }
}

.order-page-shell{
  padding:30px 16px 50px;
}

.order-page-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  min-width:0;
}

.order-page-title{
  margin:0;
  font-size:34px;
}

.order-page-sub{
  margin:6px 0 0;
}

.order-offer-card,
.order-search-card{
  padding:14px;
  margin:16px 0;
}

.order-search-label{
  font-weight:700;
  display:block;
  margin-bottom:8px;
}

.order-search-input{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #ccc;
}

.order-search-note{
  margin-top:8px;
}

.menu-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:20px;
  align-items:start;
  margin-top:20px;
  min-width:0;
}

.menu-sidebar{
  position:sticky;
  top:110px;
  padding:14px;
  max-height:calc(100vh - 140px);
  overflow:auto;
}

.menu-sidebar-head h2{
  margin:4px 0 12px;
  font-size:20px;
}

.menu-category-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:100%;
}

.menu-category-tab{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:10px;
  cursor:pointer;
  text-align:left;
}

.menu-category-tab.active{
  border-color:var(--green);
  background:var(--sage);
  box-shadow:0 10px 24px rgba(47,94,47,0.12);
}

.menu-category-thumb{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:12px;
  flex-shrink:0;
}

.menu-category-name{
  font-weight:800;
  font-size:15px;
}

.menu-content{
  min-width:0;
}

.menu-category-panel{
  display:none;
  padding:16px;
  min-width:0;
}

.menu-category-panel.active{
  display:block;
}

.menu-category-hero{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  margin-bottom:18px;
  min-height:180px;
}

.menu-category-banner{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.menu-category-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,26,20,0.15), rgba(15,26,20,0.55));
  display:flex;
  align-items:flex-end;
  padding:20px;
}

.menu-category-hero-overlay h2{
  margin:0;
  color:#fff;
  font-size:32px;
  letter-spacing:-0.3px;
}

.menu-items-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:18px;
  min-width:0;
}

.menu-product-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,26,20,0.06);
  display:flex;
  flex-direction:column;
  min-width:0;
}

.menu-product-image-btn{
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  cursor:zoom-in;
}

.menu-product-image{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}

.menu-product-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.menu-product-top{
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:flex-start;
}

.menu-product-title{
  margin:0;
  font-size:18px;
  line-height:1.25;
}

.menu-product-price-wrap{
  text-align:right;
  min-width:78px;
}

.menu-old-price{
  font-size:13px;
  opacity:0.65;
  text-decoration:line-through;
}

.menu-new-price{
  font-weight:900;
  font-size:18px;
}

.menu-product-desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  min-height:42px;
}

.menu-product-bottom{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.image-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.image-modal.open{
  display:block;
}

.image-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);
}

.image-modal-content{
  position:relative;
  width:min(92vw, 900px);
  margin:40px auto;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  z-index:2;
  box-shadow:0 18px 50px rgba(0,0,0,0.28);
}

.image-modal-content img{
  width:100%;
  max-height:76vh;
  object-fit:contain;
  display:block;
  background:#111;
}

.image-modal-title{
  padding:14px 18px;
  font-weight:800;
}

.image-modal-close{
  position:absolute;
  top:10px;
  right:12px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,0.9);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.display-body{
  margin:0;
  background:#0f1a14;
  color:#fff;
  font-family:ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.display-shell{
  min-height:100vh;
  padding:24px;
}

.display-screen{
  min-height:calc(100vh - 48px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.display-logo-wrap{
  position:relative;
  height:220px;
  overflow:hidden;
}

.display-logo-moving{
  position:absolute;
  width:180px;
  height:180px;
  object-fit:contain;
  animation:logoFloat 10s linear infinite alternate;
}

@keyframes logoFloat{
  0%{ left:0; top:0; }
  25%{ left:calc(100% - 180px); top:0; }
  50%{ left:calc(100% - 180px); top:20px; }
  75%{ left:0; top:20px; }
  100%{ left:35%; top:0; }
}

.display-idle-text{
  font-size:48px;
  font-weight:800;
  text-align:center;
  margin-top:24px;
}

.display-idle-sub{
  font-size:22px;
  text-align:center;
  color:#cbd5d1;
  margin-top:10px;
}

.display-order-header h1{
  font-size:40px;
  margin:0 0 24px;
}

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

.display-item-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  padding:18px 20px;
}

.display-item-name{
  font-size:28px;
  font-weight:700;
}

.display-item-meta{
  font-size:18px;
  color:#cbd5d1;
  margin-top:4px;
}

.display-item-right{
  font-size:28px;
  font-weight:800;
}

.display-total-bar{
  margin-top:24px;
  background:#b91c1c;
  color:#fff;
  border-radius:18px;
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:30px;
  font-weight:800;
}

.display-thankyou-main{
  font-size:72px;
  font-weight:900;
  text-align:center;
}

.display-thankyou-sub{
  font-size:26px;
  text-align:center;
  color:#d1fae5;
  margin-top:16px;
}

.display-order-message{
  font-size:20px;
  color:#d1d5db;
  margin-top:8px;
}

.display-summary-box{
  margin-top:24px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:18px;
  padding:20px 24px;
}

.display-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:24px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.10);
}

.display-summary-row:last-child{
  border-bottom:none;
}

.display-summary-total{
  font-size:32px;
  font-weight:900;
  color:#fff;
}

.display-processing-main,
.display-failed-main{
  font-size:64px;
  font-weight:900;
  text-align:center;
}

.display-processing-sub,
.display-failed-sub{
  font-size:24px;
  text-align:center;
  margin-top:16px;
  color:#d1d5db;
}

.floating-cart-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  background:#1f6b2f;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:12px 16px;
  border-radius:16px;
  box-shadow:0 12px 28px rgba(0,0,0,0.22);
  display:inline-flex;
  flex-direction:column;
  gap:2px;
  min-width:150px;
}

.floating-cart-btn:hover{
  color:#fff;
  text-decoration:none;
}

.floating-cart-label{
  font-size:15px;
  font-weight:800;
  line-height:1.2;
}

.floating-cart-meta{
  font-size:13px;
  font-weight:600;
  opacity:0.95;
  line-height:1.2;
}
.food-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  display:inline-block;
  flex-shrink:0;
}

.food-dot.veg{
  background:#2e7d32;
}

.food-dot.nonveg{
  background:#c62828;
}
.track-step{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #d9e2dc;
  background:#f8faf8;
  font-weight:700;
  color:#6b7280;
}

.track-step.active{
  background:#ecfdf3;
  border-color:#2e7d32;
  color:#166534;
}
.order-search-card {
  position: sticky;
  top: 88px;
  z-index: 30;
  background: #fff;
  padding: 14px 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.order-search-input {
  width: 100%;
}

.order-search-card.compact {
  padding: 10px 14px;
}
.menu-product-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}

.menu-product-title-wrap{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  min-width:0;
}

spice-level {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  font-size: 16px;
  line-height: 1;
}
.display-idle-block{
  width:100%;
  text-align:center;
}

.display-promo-wrap{
  width:100%;
  max-width:900px;
  margin:0 auto 24px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.display-promo-image{
  width:100%;
  height:auto;
  max-height:90vh;
  object-fit:contain;
  border-radius:20px;
}
.counter-add-form{
  width:100%;
}

.counter-qty-box{
  display:flex;
  align-items:center;
  gap:8px;
}

.counter-qty-input{
  width:64px;
  text-align:center;
  padding:8px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:16px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.2s ease;
}

.modal-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.modal-box ul {
  padding-left: 18px;
  margin-bottom: 20px;
  color: #444;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes fadeIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.display-total-note {
  text-align: right;
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}
.order-closed-banner {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fff3cd;
  border: 1px solid #ffe08a;
  color: #7a5a00;
  font-weight: 600;
}