:root{
  --bg: #f6f7f9;
  --card-bg: #ffffff;
  --text: #1b1d21;
  --muted: #767c88;
  --accent: #1b1d21;
  --accent-2: #d7ff3f;
  --border: #e8e9ec;
  --shadow: 0 10px 30px rgba(20,20,30,0.08);
  --radius: 20px;
}

*{ box-sizing: border-box; margin:0; padding:0; }

body{
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== TOP BAR ===================== */
.topbar{
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  padding: 8px 6%;
  display:flex;
  justify-content: space-between;
  align-items:center;
}
.topbar a{ text-decoration: underline; }
.topbar .hours{ color: rgba(255,255,255,0.7); }

/* ===================== HEADER ===================== */
header{
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top:0;
  z-index: 60;
}
.header-main{
  padding: 20px 6%;
  display:flex;
  align-items:center;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo{
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  display:flex;
  align-items:center;
  gap:8px;
  white-space: nowrap;
}
.logo span{
  background: var(--accent-2);
  padding: 2px 8px;
  border-radius: 8px;
}
.search-box{
  flex:1;
  position: relative;
}
.search-box input{
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.search-box input:focus{ border-color: var(--text); }

.header-icons{
  display:flex;
  align-items:center;
  gap: 20px;
  font-size: 20px;
}

/* ===================== NAV MENU ===================== */
nav.main-menu{
  border-top: 1px solid var(--border);
}
.menu-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
  display:flex;
  align-items:center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
  overflow-x:auto;
}
.menu-inner a, .menu-inner .menu-dropdown > span{
  padding: 14px 0;
  display:inline-block;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.menu-inner a:hover, .menu-inner .menu-dropdown:hover > span{
  border-bottom-color: var(--text);
}
.menu-inner a.active{
  border-bottom-color: var(--text);
  font-weight: 700;
}
.menu-dropdown{
  position: relative;
}
.menu-dropdown > span{ display:flex; align-items:center; gap:4px; }
.dropdown-panel{
  position:absolute;
  top: 100%;
  left:0;
  background:#fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 10px;
  display:none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  min-width: 240px;
  z-index: 70;
}
.menu-dropdown:hover .dropdown-panel{ display:grid; }
.dropdown-panel a{
  padding: 8px 6px;
  border-radius: 8px;
  text-align:center;
  font-size: 13px;
  border-bottom:none !important;
}
.dropdown-panel a:hover{ background: var(--bg); }

/* ===================== HERO ===================== */
.hero{
  padding: 50px 6% 20px;
  text-align:center;
}
.hero h1{
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero p{
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs{
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 6% 0;
  font-size: 13px;
  color: var(--muted);
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a:hover{ text-decoration: underline; }
.breadcrumbs .sep{ color: #c7c9d0; }
.breadcrumbs .current{ color: var(--text); font-weight:500; }

/* ===================== BUTTONS ===================== */
.btn{
  border:none;
  cursor:pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 12px;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:active{ transform: scale(0.97); }

.btn-order{
  background: var(--accent);
  color:#fff;
  padding: 10px 18px;
  font-size: 14px;
}
.btn-order:hover{ opacity:.85; }

.btn-submit{
  width: 100%;
  background: var(--accent);
  color:#fff;
  padding: 14px;
  font-size: 15px;
  margin-top: 6px;
}
.btn-submit:hover{ opacity:.85; }
.btn-submit:disabled{ opacity:.5; cursor:not-allowed; }

/* ===================== ORDER MODAL ===================== */
.overlay{
  position: fixed;
  inset:0;
  background: rgba(15,16,20,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 20px;
  z-index: 200;
}
.overlay.active{ display:flex; }

.modal{
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  animation: pop .2s ease;
}
@keyframes pop{
  from{ transform: scale(.92); opacity:0; }
  to{ transform: scale(1); opacity:1; }
}
.modal h2{ font-size: 20px; margin-bottom: 4px; }
.modal .product-name{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.close-btn{
  position:absolute;
  top: 18px;
  right: 18px;
  background: #f0f1f3;
  border:none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor:pointer;
  font-size: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.form-group{ margin-bottom: 16px; }
.form-group label{
  display:block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--muted);
}
.form-group input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
}
.form-group input:focus{ border-color: var(--text); }

.status-msg{
  margin-top: 14px;
  font-size: 14px;
  text-align:center;
  display:none;
}
.status-msg.success{ display:block; color: #1c7c3c; font-weight: 600; }
.status-msg.error{ display:block; color: #c0392b; font-weight: 600; }

footer{
  text-align:center;
  padding: 30px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
