@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Bebas+Neue&display=swap');

:root {
  --bg: #fffaf4;
  --surface: #fff;
  --text: #241f1a;
  --muted: #6f6458;
  --brand: #e03d2f;
  --brand-dark: #a92319;
  --accent: #f2b331;
  --card: #fff3e2;
  --line: #eadfce;
  --ok: #176f2c;
  --shadow: 0 18px 45px rgba(56, 30, 7, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, #ffe9cc 0%, transparent 35%),
    radial-gradient(circle at 85% 25%, #ffd8d2 0%, transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 70%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.7rem;
}

.section-subtitle {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 62ch;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 244, 0.78);
  border-bottom: 1px solid rgba(234, 223, 206, 0.9);
  /* anchor for absolute mobile dropdown */
  position: sticky;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.brand-text {
  display: grid;
}

.brand-name {
  font-size: 1.02rem;
  line-height: 1;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  color: #5c5248;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #fbe1cf;
  color: #2a2520;
}

.auth-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.auth-nav-icon {
  font-size: 1rem;
  line-height: 1;
}

.auth-nav-link > span:last-child {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: #fbe1cf;
  border-color: #f0c49a;
}

.nav-toggle .burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #2c2520;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 5rem 0 3rem;
}

.home-page .hero-home {
  position: relative;
  overflow: hidden;
}

.home-page .hero-home::before,
.home-page .hero-home::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-page .hero-home::before {
  width: 340px;
  height: 340px;
  top: -130px;
  right: -120px;
  background: radial-gradient(circle, rgba(242, 179, 49, 0.25) 0%, rgba(242, 179, 49, 0) 68%);
}

.home-page .hero-home::after {
  width: 280px;
  height: 280px;
  bottom: -130px;
  left: -70px;
  background: radial-gradient(circle, rgba(224, 61, 47, 0.22) 0%, rgba(224, 61, 47, 0) 66%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: riseIn 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.84rem;
  border: 1px solid #f8cf96;
  background: #fff2df;
  color: #925205;
  font-weight: 700;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  margin: 0.85rem 0 0.7rem;
  line-height: 1;
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.82rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand), #f05a4d);
  color: #fff;
  box-shadow: 0 8px 24px rgba(224, 61, 47, 0.35);
}

.btn-secondary {
  background: #fff;
  color: #2c2520;
  border: 1px solid var(--line);
}

.hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 340px;
}

.hero-card-home {
  border: 1px solid rgba(255, 255, 255, 0.35);
  animation: riseIn 0.9s ease both;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font-size: 0.88rem;
  max-width: 260px;
}

.hero-float-note {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: 220px;
  background: rgba(255, 250, 244, 0.92);
  color: #2f271f;
  border: 1px solid #efd9be;
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  box-shadow: 0 10px 22px rgba(43, 27, 8, 0.16);
}

.hero-float-note strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.hero-float-note span {
  font-size: 0.8rem;
  color: #5f5245;
}

.hero-kpis {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-kpi {
  border: 1px solid #eddcc5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.65rem;
}

.hero-kpi strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.hero-kpi span {
  font-size: 0.8rem;
  color: #6e6155;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0.1rem 0 0.45rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.home-value {
  padding-top: 2.2rem;
}

.home-card {
  background: linear-gradient(165deg, #fff, #fff8ee);
  position: relative;
  overflow: hidden;
}

.home-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(242, 179, 49, 0.06), rgba(224, 61, 47, 0.02));
  pointer-events: none;
}

.home-card-tag {
  position: relative;
  display: inline-flex;
  padding: 0.28rem 0.66rem;
  border-radius: 999px;
  background: #fff1df;
  border: 1px solid #f2d3a6;
  color: #925205;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.home-story {
  padding-top: 1rem;
}

.home-story-split {
  align-items: stretch;
}

.home-story-panel,
.home-story-media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.home-story-list {
  display: grid;
  gap: 0.75rem;
}

.home-story-item {
  border: 1px solid #eddfcd;
  border-radius: 12px;
  padding: 0.75rem;
  background: #fffaf2;
}

.home-story-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.home-story-item span {
  font-size: 0.9rem;
  color: #6e6155;
}

.home-story-media {
  padding: 0;
  overflow: hidden;
}

.home-story-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.home-featured .featured-grid .menu-card {
  animation: riseIn 0.6s ease both;
}

.home-banner {
  padding-top: 0.2rem;
  padding-bottom: 4rem;
}

.home-banner-card {
  border: 1px solid #e9d9c2;
  border-radius: 18px;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(105deg, #fff7ea 0%, #fff 58%, #ffece7 100%);
  box-shadow: var(--shadow);
}

.home-banner-card h2 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.home-banner-card p {
  margin: 0.35rem 0 0;
  color: #695d51;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.featured-grid .menu-card {
  position: relative;
  overflow: hidden;
}

.featured-grid .menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e03d2f 0%, #f05a4d 100%);
}

.menu-card {
  background: linear-gradient(165deg, #fff, #fff6ea);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.menu-card:hover {
  border-color: #f0c49a;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(56, 30, 7, 0.12);
}

.menu-title {
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #241f1a;
  font-size: 1.05rem;
}

.menu-desc {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.menu-price {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(135deg, #e03d2f 0%, #f05a4d 100%);
  color: #fff;
  margin-top: 0.9rem;
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(224, 61, 47, 0.25);
  transition: all 0.3s ease;
}

.menu-price:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 61, 47, 0.35);
}

.filters {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.search {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
}

.select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  min-width: 220px;
}

.menu-sections {
  display: grid;
  gap: 1.15rem;
}

.menu-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.menu-section h3 {
  margin: 0 0 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.75rem;
}

.menu-list {
  display: grid;
  gap: 0.8rem;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: start;
  border-bottom: 1px dashed #eadfce;
  padding-bottom: 0.7rem;
}

.menu-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.item-name {
  margin: 0;
  font-weight: 800;
}

.item-desc {
  margin: 0.24rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.item-price {
  font-weight: 800;
  color: #7d2500;
}

/* ======= NEW MODERN MENU PAGE ======= */
.menu-hero {
  background: linear-gradient(140deg, #fff8f1 0%, #fffef9 50%, #fff3e2 100%);
  border-bottom: 1px solid #eadfce;
  padding: 2.8rem 0;
  text-align: center;
}

.menu-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.6rem;
  color: #241f1a;
}

.menu-hero-subtitle {
  margin: 0;
  color: #6f6458;
  max-width: 60ch;
  margin-inline: auto;
  font-size: 1.05rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 100vh;
}

.menu-sidebar {
  background: linear-gradient(180deg, #fff9f4 0%, #fff5ea 100%);
  border-right: 1px solid #eadfce;
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  overflow-y: auto;
  z-index: 100;
}

.sidebar-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sidebar-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
  color: #241f1a;
}

.filter-toggle-mobile {
  display: none;
}

.filter-toggle-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.filter-toggle-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-toggle-icon svg circle {
  fill: #fff;
}

.filter-close-icon {
  display: none;
  font-size: 1.1rem;
  line-height: 1;
}

.category-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 0.6rem;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e8dccf;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: #6f6458;
  font-size: 0.95rem;
}

.category-pill:hover {
  background: #fff5ea;
  border-color: #f0c49a;
  color: #5c5248;
}

.category-pill.active {
  background: linear-gradient(135deg, #e03d2f 0%, #f05a4d 100%);
  color: #fff;
  border-color: #e03d2f;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(224, 61, 47, 0.25);
}

.pill-icon {
  font-size: 1.3em;
  display: inline-block;
  min-width: 1.3em;
}

.pill-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-main {
  background: var(--bg);
  padding: 2.2rem 0;
}

.menu-controls {
  margin-bottom: 2rem;
  position: sticky;
  top: 74px;
  background: var(--bg);
  padding: 1rem 0;
  z-index: 50;
}

.menu-search {
  width: 100%;
  border: 2px solid #ddc9b1;
  background: #fff;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s ease;
  margin-bottom: 0.4rem;
}

.menu-search:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(224, 61, 47, 0.1);
}

.search-hint {
  font-size: 0.85rem;
  color: #9d8f7f;
  padding: 0 0.3rem;
}

.menu-sections {
  display: grid;
  gap: 2rem;
}

.menu-section {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(56, 30, 7, 0.06);
  transition: all 0.3s ease;
}

.menu-section:hover {
  border-color: #f0c49a;
  box-shadow: 0 8px 24px rgba(56, 30, 7, 0.12);
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff5ea;
}

.section-header .section-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.8rem;
  margin: 0;
  color: #241f1a;
  flex: 1;
}

.item-count {
  background: #fff3e2;
  color: #7d2500;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.items-list {
  display: grid;
  gap: 1rem;
}

.menu-item {
  padding: 1rem;
  background: linear-gradient(135deg, #fffbf6 0%, #fff8f0 100%);
  border: 1px solid #f0e7d8;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background: linear-gradient(135deg, #fff5ea 0%, #fff0e6 100%);
  border-color: #f0c49a;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(224, 61, 47, 0.08);
}

.item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.item-name {
  margin: 0;
  font-weight: 700;
  color: #241f1a;
  font-size: 1.05rem;
  flex: 1;
}

.item-price {
  flex-shrink: 0;
  font-weight: 800;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.6rem 0.95rem;
  background: linear-gradient(135deg, #e03d2f 0%, #f05a4d 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(224, 61, 47, 0.25);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.item-price:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(224, 61, 47, 0.35);
}

.item-description {
  margin: 0;
  color: #8b7f70;
  font-size: 0.93rem;
  line-height: 1.4;
}

.item-order-btn {
  margin-top: 0.65rem;
  border: 1px solid #e9d8c0;
  background: #fff;
  color: #5a4a39;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.item-order-btn:hover {
  background: #fff2e5;
  border-color: #f0c49a;
  color: #3b2d20;
}

.whatsapp-order-panel {
  position: sticky;
  bottom: 0.7rem;
  z-index: 60;
  margin-top: 1.2rem;
  border: 1px solid #dfcfbb;
  background: linear-gradient(165deg, rgba(255, 250, 244, 0.99), rgba(255, 243, 231, 0.99));
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 16px 36px rgba(56, 30, 7, 0.2);
}

.whatsapp-order-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border: 1px solid #ecd9c0;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  cursor: pointer;
  font: inherit;
  color: #2e2419;
}

.order-top-left {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.order-count-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #f0cda7;
  background: #fff1df;
  color: #8e4f0a;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.24rem 0.56rem;
}

.order-top-chevron {
  font-size: 1.1rem;
  color: #7a6c5d;
}

.whatsapp-order-items {
  display: grid;
  gap: 0.6rem;
  margin: 0.75rem 0;
}

.order-card {
  border: 1px solid #ecdcc8;
  border-radius: 12px;
  padding: 0.68rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.order-card-title {
  margin: 0;
  font-size: 0.95rem;
}

.order-card-price {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: #7b6f62;
}

.order-card-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5d5c2;
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  border: 0;
  background: #fff6eb;
  width: 28px;
  height: 28px;
  font-size: 1rem;
  font-weight: 800;
  color: #5d4e3d;
  cursor: pointer;
}

.qty-btn:hover {
  background: #ffe9d1;
}

.qty-value {
  min-width: 26px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.order-card-total {
  font-size: 0.86rem;
  color: #7b2403;
  min-width: 68px;
  text-align: right;
}

.order-remove-btn {
  border: 1px solid #edd3c3;
  background: #fff;
  color: #8f3d21;
  font-size: 0.78rem;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  font-weight: 700;
  cursor: pointer;
}

.order-remove-btn:hover {
  background: #fff0ea;
}

.whatsapp-order-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0.2rem 0 0.85rem;
}

.whatsapp-order-summary > div {
  border: 1px solid #ebdcc8;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  display: grid;
  gap: 0.2rem;
}

.whatsapp-order-summary span {
  font-size: 0.75rem;
  color: #7c7063;
}

.whatsapp-order-summary strong {
  font-size: 0.93rem;
}

.whatsapp-order-panel.is-collapsed {
  padding-bottom: 0.7rem;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #8b7f70;
}

.no-results-icon {
  font-size: 4rem;
  margin-bottom: 0.8rem;
  opacity: 0.6;
}

.no-results h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
  color: #5c5248;
}

.no-results p {
  margin: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .menu-layout {
    grid-template-columns: 240px 1fr;
  }

  .menu-section {
    padding: 1.4rem;
  }

  .category-pills {
    padding: 0 0.4rem;
  }
}

@media (max-width: 768px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
  }

  .hero-kpis {
    grid-template-columns: 1fr;
  }

  .hero-float-note {
    max-width: 180px;
    top: 0.7rem;
    right: 0.7rem;
  }

  .home-story-split {
    grid-template-columns: 1fr;
  }

  .home-story-media img {
    min-height: 240px;
  }

  .home-banner-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-hero-title {
    font-size: 1.6rem;
  }

  .menu-sidebar {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 84px);
    border-right: 0;
    border-bottom: 1px solid #eadfce;
    z-index: 1100;
    background: linear-gradient(180deg, #fff9f4 0%, #fff5ea 100%);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.2s ease;
  }

  .menu-sidebar.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar-header {
    padding: 1rem;
    background: linear-gradient(180deg, #fff9f4 0%, #fff5ea 100%);
    border-bottom: 1px solid #eadfce;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .sidebar-title {
    font-size: 1.15rem;
  }

  .filter-toggle-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 84px;
    right: 14px;
    width: 46px;
    height: 46px;
    padding: 0;
    background: linear-gradient(135deg, #e03d2f 0%, #f05a4d 100%);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    flex-shrink: 0;
    z-index: 1201;
    box-shadow: 0 10px 26px rgba(224, 61, 47, 0.3);
    transition: all 0.2s ease;
  }

  .filter-toggle-mobile.is-open {
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(28, 22, 17, 0.25);
  }

  .filter-toggle-mobile.is-open .filter-toggle-icon {
    display: none;
  }

  .filter-toggle-mobile.is-open .filter-close-icon {
    display: inline-block;
  }

  .filter-toggle-mobile:active {
    transform: scale(0.95);
  }

  .category-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 1rem;
    max-height: 60vh;
    overflow-y: auto;
  }

  .category-pill {
    font-size: 0.85rem;
    padding: 0.7rem;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .pill-icon {
    font-size: 1.5em;
    min-width: auto;
  }

  .pill-text {
    white-space: normal;
    display: block;
    font-size: 0.8rem;
  }

  .menu-main {
    padding: 1.5rem 0;
    margin-top: 0;
  }

  .menu-hero {
    padding: 2rem 0;
  }

  .menu-controls {
    top: 74px;
    padding: 0.8rem 0;
    margin-bottom: 1.2rem;
  }

  .menu-section {
    border-radius: 14px;
    padding: 1.2rem;
  }

  .menu-sections {
    gap: 1.4rem;
  }

  .section-header {
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }

  .section-header .section-title {
    font-size: 1.5rem;
  }

}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .menu-hero {
    padding: 1.5rem 0;
  }

  .menu-hero-title {
    font-size: 1.35rem;
  }

  .menu-hero-subtitle {
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 0 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .hero-float-note {
    display: none;
  }

  .home-banner-card {
    padding: 1rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .menu-search {
    padding: 0.75rem 0.8rem;
    font-size: 0.9rem;
  }

  .search-hint {
    font-size: 0.75rem;
  }

  .menu-item {
    padding: 0.85rem;
  }

  .item-header {
    flex-direction: column;
    gap: 0.3rem;
  }

  .item-name {
    font-size: 0.9rem;
    font-weight: 700;
  }

  .item-description {
    font-size: 0.85rem;
  }

  .item-price {
    align-self: flex-start;
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }

  .section-header .section-title {
    font-size: 1.15rem;
  }

  .item-count {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }

  .category-pills {
    grid-template-columns: repeat(3, 1fr);
  }

  .pill-text {
    font-size: 0.65rem;
  }

  .pill-icon {
    font-size: 1.1em;
  }

  .sidebar-title {
    font-size: 1rem;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .card p {
    font-size: 0.85rem;
  }

  .menu-card {
    padding: 1rem;
  }

  .menu-title {
    font-size: 0.95rem;
  }

  .menu-desc {
    font-size: 0.85rem;
  }

  .menu-price {
    font-size: 0.95rem;
    padding: 0.4rem 0.75rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.gallery-grid img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-page {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 179, 49, 0.16) 0%, rgba(242, 179, 49, 0) 34%),
    radial-gradient(circle at 92% 10%, rgba(224, 61, 47, 0.12) 0%, rgba(224, 61, 47, 0) 36%),
    linear-gradient(180deg, #fffdf9 0%, #fff9f3 52%, #fffefc 100%);
}

.about-page .section {
  padding: 2.9rem 0;
}

.about-hero {
  padding-top: 3.5rem;
}

.about-hero-wrap {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-hero-copy,
.about-hero-media {
  border: 1px solid #e6d7c3;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(56, 30, 7, 0.14);
}

.about-hero-copy {
  padding: 1.6rem;
  background: linear-gradient(165deg, #fff 0%, #fff8eb 100%);
}

.about-hero-copy .section-title {
  margin-top: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: clamp(2.2rem, 4.8vw, 3.45rem);
  letter-spacing: 0.04em;
}

.about-hero-copy p {
  color: #665a4f;
  margin: 0 0 0.92rem;
  line-height: 1.74;
  font-size: 1.03rem;
}

.about-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #f0d5b1;
  border-radius: 999px;
  background: #fff3df;
  color: #8a4d03;
  padding: 0.42rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-hero-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #2a1f16;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media-note {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  border-radius: 16px;
  padding: 0.9rem;
  background: rgba(18, 14, 10, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.about-media-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.about-media-note span {
  font-size: 0.86rem;
  color: #f9dcc4;
}

.about-values {
  padding-top: 0.5rem;
}

.about-values .section-title {
  margin-bottom: 0.45rem;
}

.about-values .section-subtitle {
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.about-card {
  background: linear-gradient(165deg, #fff 0%, #fff7ec 100%);
  border: 1px solid #ead9c3;
  box-shadow: 0 14px 30px rgba(56, 30, 7, 0.11);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #e03d2f 0%, #f2b331 100%);
}

.about-card h3 {
  font-size: 1.85rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  margin: 0.2rem 0 0.35rem;
}

.about-card p {
  color: #6c6054;
  line-height: 1.65;
}

.about-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffe7c8;
  color: #8c4e07;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.about-experience {
  padding-top: 0.3rem;
  padding-bottom: 3.2rem;
}

.about-experience-grid {
  align-items: stretch;
  gap: 1.1rem;
}

.about-panel {
  border-radius: 22px;
  padding: 1.9rem;
  background: linear-gradient(180deg, #fff 0%, #fff9f0 100%);
  box-shadow: 0 16px 34px rgba(56, 30, 7, 0.12);
  border: 1px solid #ead8c3;
}

.about-panel-alt {
  background: linear-gradient(120deg, #fff6e7 0%, #fff 48%, #ffede4 100%);
}

.about-panel h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
}

.about-panel p {
  margin: 0 0 0.8rem;
  color: #655a4f;
  line-height: 1.7;
  font-size: 1.02rem;
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.72rem;
  color: #63574b;
  font-size: 1.04rem;
}

.about-list li::marker {
  color: #d44e1f;
}

.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.info-box h3 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  width: 100%;
  min-height: 280px;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: #fff7ec;
}

.footer-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #6c6155;
  font-size: 0.92rem;
}

.footer-brand-block {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #f2b331;
  box-shadow: 0 6px 16px rgba(56, 30, 7, 0.16);
  flex-shrink: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1rem;
}

.admin-auth-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  max-width: 520px;
}

.auth-shell {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.auth-card,
.auth-account-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
}

.auth-tab {
  border: 1px solid #e4d3bf;
  background: #fff;
  color: #5b4b3a;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.auth-tab.is-active {
  background: #ffe9d7;
  border-color: #f0c49a;
  color: #2a2520;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-sidebar,
.admin-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.admin-workspace {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #eadfce;
}

.admin-tab-btn {
  border: 1px solid #e4d3bf;
  background: #fff;
  color: #5b4b3a;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.admin-tab-btn.is-active {
  background: #ffe9d7;
  border-color: #f0c49a;
  color: #2a2520;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

.form-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
}

.input,
.textarea {
  border: 1px solid #dbcdb9;
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
}

.textarea {
  min-height: 86px;
  resize: vertical;
}

.admin-toolbar {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.admin-list {
  display: grid;
  gap: 0.8rem;
}

.admin-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: #fffaf2;
}

.admin-item h4 {
  margin: 0 0 0.5rem;
}

.stack {
  display: grid;
  gap: 0.6rem;
}

.row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.small {
  font-size: 0.86rem;
  color: var(--muted);
}

.whatsapp-number-row {
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.whatsapp-number-row .input {
  flex: 1;
  min-width: 150px;
}

.notice {
  background: #eef9ef;
  color: var(--ok);
  border: 1px solid #b8dfbf;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .admin-layout,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .about-hero-wrap,
  .about-experience-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 2.2rem;
  }

  .about-hero-media {
    min-height: 280px;
  }

  .about-card h3 {
    font-size: 1.65rem;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .filters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(255, 250, 244, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 999;
    box-shadow: 0 12px 32px rgba(56, 30, 7, 0.12);
    animation: navSlideDown 0.22s ease;
  }

  @keyframes navSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.72rem 0.9rem;
    border-radius: 10px;
    font-size: 1.02rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .about-page .section {
    padding: 2.6rem 0;
  }

  .about-hero-copy,
  .about-panel {
    padding: 1.35rem;
  }

  .about-panel h2 {
    font-size: 1.85rem;
  }

  .about-list {
    font-size: 0.98rem;
  }

  .about-media-note {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .whatsapp-order-panel {
    bottom: 0.4rem;
  }

  .whatsapp-order-top {
    align-items: center;
  }

  .order-card {
    grid-template-columns: 1fr;
  }

  .order-card-controls {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .whatsapp-order-summary {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    align-items: flex-start;
  }

  .footer-logo {
    width: 34px;
    height: 34px;
  }
}
