/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

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

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== COLORS ===== */
:root {
  --red:        #c0392b;
  --gold:       #d4af37;
  --dark:       #1a1a1a;
  --light:      #fdf8f0;
  --muted:      #777;
  --bamboo:     #2d6a4f;
  --bamboo-mid: #1a3d2b;
  --bamboo-dk:  #0d2119;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #a93226; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--red); }

/* ===== LABELS ===== */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.center { text-align: center; }

section h2 { font-size: 2.2rem; margin-bottom: 16px; }
section h2.center { margin-bottom: 44px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo-icon { font-size: 1.5rem; }
.logo-text  { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active-link { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active-link::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to right,
      var(--bamboo-dk) 0%,
      #0f1f0f 18%,
      transparent 42%,
      transparent 58%,
      #200808 82%,
      #1a0505 100%),
    linear-gradient(to bottom,
      #0a150a 0%,
      #111111 40%,
      #1c0808 70%,
      #2c0a0a 100%);
  overflow: hidden;
}

/* Scattered Chinese-character watermark layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 12% 55%, rgba(45,106,79,0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 35%, rgba(192,57,43,0.2)  0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '龍 福 壽 喜 龍 福 壽 喜 龍 福 壽 喜';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: rgba(212,175,55,0.035);
  letter-spacing: 20px;
  word-break: break-all;
  line-height: 1.2;
  pointer-events: none;
  overflow: hidden;
}

/* Dim overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 1;
}

/* ===== BAMBOO STALKS ===== */
.bamboo-group {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.bamboo-left  { left: 0; }
.bamboo-right { right: 0; transform: scaleX(-1); }

.b-stalk {
  position: absolute;
  bottom: -5%;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.35) 0%,
      rgba(255,255,255,0.06) 30%,
      rgba(255,255,255,0.06) 70%,
      rgba(0,0,0,0.35) 100%),
    repeating-linear-gradient(
      to bottom,
      #1e5c28 0px,
      #174d20 56px,
      #3a8c42 56px,
      #4aaa50 60px,
      #1e5c28 64px
    );
}

/* Individual stalk sizes & positions */
.bamboo-left .b-stalk:nth-child(1) { left:  6%; width: 26px; height: 95%;  opacity: 0.55; }
.bamboo-left .b-stalk:nth-child(2) { left: 18%; width: 18px; height: 76%;  opacity: 0.38; }
.bamboo-left .b-stalk:nth-child(3) { left: 30%; width: 30px; height: 108%; opacity: 0.5;  }
.bamboo-left .b-stalk:nth-child(4) { left: 46%; width: 15px; height: 62%;  opacity: 0.28; }
.bamboo-left .b-stalk:nth-child(5) { left: 58%; width: 22px; height: 85%;  opacity: 0.35; }

.bamboo-right .b-stalk:nth-child(1) { left:  6%; width: 28px; height: 90%;  opacity: 0.5;  }
.bamboo-right .b-stalk:nth-child(2) { left: 20%; width: 17px; height: 70%;  opacity: 0.35; }
.bamboo-right .b-stalk:nth-child(3) { left: 32%; width: 24px; height: 100%; opacity: 0.45; }
.bamboo-right .b-stalk:nth-child(4) { left: 47%; width: 13px; height: 58%;  opacity: 0.25; }
.bamboo-right .b-stalk:nth-child(5) { left: 60%; width: 20px; height: 80%;  opacity: 0.4;  }

/* Fade bamboo into distance at top */
.bamboo-group::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
}
/* Fade toward center */
.bamboo-left::before  { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 55%; background: linear-gradient(to right, transparent, rgba(10,10,10,0.85)); pointer-events: none; z-index: 3; }
.bamboo-right::before { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 55%; background: linear-gradient(to right, transparent, rgba(10,10,10,0.85)); pointer-events: none; z-index: 3; }

/* ===== DRAGON SEAL ===== */
.dragon-seal {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(7rem, 18vw, 16rem);
  color: rgba(192,57,43,0.13);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  z-index: 2;
  user-select: none;
  line-height: 1;
  text-shadow: 0 0 80px rgba(192,57,43,0.12), 0 0 160px rgba(192,57,43,0.06);
  animation: dragonPulse 6s ease-in-out infinite;
}
@keyframes dragonPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 80px rgba(192,57,43,0.12); }
  50%       { opacity: 0.7; text-shadow: 0 0 120px rgba(192,57,43,0.22), 0 0 200px rgba(192,57,43,0.08); }
}

/* ===== LANTERNS ===== */
.lantern {
  position: absolute;
  top: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lanternSway 5s ease-in-out infinite;
  transform-origin: top center;
}
.lantern-left  { left:  26%; }
.lantern-right { right: 26%; animation-delay: -2.5s; }

@keyframes lanternSway {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}
.lantern-cap {
  width: 28px;
  height: 8px;
  background: linear-gradient(to bottom, #8b1a1a, #c0392b);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.lantern-cap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 14px;
  background: rgba(212,175,55,0.6);
}
.lantern-body {
  width: 40px;
  height: 64px;
  background: radial-gradient(ellipse at 40% 40%, rgba(255,160,60,0.95) 0%, rgba(220,60,20,0.92) 55%, rgba(150,20,10,0.88) 100%);
  border-radius: 50% / 45%;
  box-shadow:
    0 0 20px rgba(255,100,20,0.55),
    0 0 50px rgba(255,80,10,0.25),
    inset 0 0 16px rgba(255,200,80,0.3);
  position: relative;
  overflow: hidden;
}
.lantern-body::before {
  content: '福';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255,220,80,0.85);
  text-align: center;
  line-height: 64px;
  font-family: Georgia, serif;
}
.lantern-body::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 30px;
  background: rgba(255,230,120,0.25);
  border-radius: 50%;
  transform: rotate(-15deg);
}
.lantern-fringe {
  width: 34px;
  height: 14px;
  background: repeating-linear-gradient(
    to right,
    rgba(212,175,55,0.9) 0px, rgba(212,175,55,0.9) 2px,
    transparent 2px, transparent 6px
  );
  border-radius: 0 0 6px 6px;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 680px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 0 60px rgba(45,106,79,0.15);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
  z-index: 4;
}

/* ===== BAMBOO DIVIDER (between hero & menu preview) ===== */
.bamboo-divider {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  background: var(--bamboo-dk);
  padding: 0 12px;
  overflow: hidden;
}
.bamboo-divider span {
  display: block;
  width: 14px;
  border-radius: 3px 3px 0 0;
  background: repeating-linear-gradient(
    to bottom,
    #1e5c28 0px, #174d20 38px,
    #3a8c42 38px, #4aaa50 42px,
    #1e5c28 46px
  );
  opacity: 0.7;
}
.bamboo-divider span:nth-child(1)  { height: 42px; }
.bamboo-divider span:nth-child(2)  { height: 32px; }
.bamboo-divider span:nth-child(3)  { height: 46px; }
.bamboo-divider span:nth-child(4)  { height: 28px; }
.bamboo-divider span:nth-child(5)  { height: 44px; }
.bamboo-divider span:nth-child(6)  { height: 36px; }
.bamboo-divider span:nth-child(7)  { height: 48px; }
.bamboo-divider span:nth-child(8)  { height: 30px; }
.bamboo-divider span:nth-child(9)  { height: 42px; }
.bamboo-divider span:nth-child(10) { height: 26px; }

/* ===== MENU PREVIEW (homepage) ===== */
.menu-preview {
  padding: 80px 0 90px;
  background: var(--light);
  position: relative;
}
.menu-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--bamboo-dk), var(--bamboo), var(--gold),
    var(--red), var(--gold),
    var(--bamboo), var(--bamboo-dk));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.category-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.cat-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}
.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.category-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cat-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.3px;
}

.menu-cta { text-align: center; }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 90px 0;
  background: #f9f5ef;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--bamboo-dk), var(--bamboo), var(--gold),
    var(--red), var(--gold),
    var(--bamboo), var(--bamboo-dk));
}

.reviews-header { text-align: center; margin-bottom: 44px; }

.avg-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.avg-stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 3px; }
.avg-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}
.avg-count { color: var(--muted); font-size: 0.9rem; }

/* Review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.11);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 18px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(212,175,55,0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-card.new-card { border-left: 3px solid var(--red); }

.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.review-text {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #f0ebe2;
  gap: 8px;
}
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.review-date { font-size: 0.78rem; color: var(--muted); white-space: nowrap; }

/* Write a review form */
.review-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
  border-top: 3px solid var(--red);
}
.review-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--dark);
}
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0d5c5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: #fdfaf6;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
  background: #fff;
}
.form-group textarea { margin-bottom: 20px; min-height: 110px; }

/* Star picker */
.star-picker { display: flex; gap: 2px; padding-top: 2px; }
.star-pick {
  background: none;
  border: none;
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
  padding: 0 3px;
  transition: color 0.12s, transform 0.1s;
  line-height: 1;
}
.star-pick.on { color: var(--gold); }
.star-pick:hover { transform: scale(1.2); }

.review-submit-btn { margin-top: 4px; }

.review-success {
  display: none;
  text-align: center;
  padding: 14px 20px;
  background: #e8f8f0;
  color: #1a7a40;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 14px;
  border: 1px solid #a9dfbf;
}
.review-success.visible { display: block; }

.review-error {
  display: none;
  text-align: center;
  padding: 12px 20px;
  background: #fde8e8;
  color: #c0392b;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 12px;
  border: 1px solid #f5aaaa;
}
.review-error.visible { display: block; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row-two { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 24px 20px; }
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 90px 0;
  background: #fff;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 980px;
  margin: 0 auto;
}

.contact-info-centered {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
  background: var(--light);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; margin-top: 2px; }
.info-item strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.info-item p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 0.92rem; }

/* Map */
.map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

#location-map {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.map-directions-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  z-index: 500;
}
.map-directions-btn:hover { background: #a93226; transform: translateY(-2px); }

/* ===== FULL MENU PAGE ===== */
.menu-page { background: #f5f5f5; }

.menu-page-header {
  position: relative;
  padding: 120px 24px 60px;
  text-align: center;
  background: linear-gradient(135deg, #8b1a1a 0%, #2c0a0a 60%, #1a0505 100%);
  overflow: hidden;
}
.menu-page-header::after {
  content: '龍 福 壽 喜';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  color: rgba(212,175,55,0.05);
  letter-spacing: 20px;
  pointer-events: none;
  overflow: hidden;
}
.menu-page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
}
.menu-page-header-content { position: relative; z-index: 2; }
.menu-page-header-content .section-label { color: var(--gold); margin-bottom: 10px; }
.menu-page-header-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 10px;
}
.menu-page-header-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; letter-spacing: 0.5px; }

/* Two-column layout: sidebar + main */
.menu-body {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  gap: 32px;
}

/* ===== SIDEBAR ===== */
.menu-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 70px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 24px 0;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}

.sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 20px 12px;
  border-bottom: 1px solid #f0ebe2;
  margin-bottom: 8px;
}

.sidebar-nav { display: flex; flex-direction: column; }

.sidebar-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  background: none;
  border: none;
  font-size: 0.88rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.sidebar-btn:hover { background: #fdf8f0; color: var(--red); }
.sidebar-btn.active {
  background: #fdf8f0;
  color: var(--red);
  border-left-color: var(--red);
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--muted);
}

/* ===== MAIN CONTENT ===== */
.menu-main { flex: 1; min-width: 0; }

/* Search bar */
.search-wrap {
  position: relative;
  margin-bottom: 16px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 13px 44px 13px 42px;
  border: 2px solid #e0d5c5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  display: none;
  padding: 4px;
}
.search-clear.visible { display: block; }

/* Mobile sidebar toggle */
.sidebar-toggle {
  display: none;
  width: 100%;
  padding: 11px 16px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: left;
}

/* No results */
.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 1rem;
}
.no-results.visible { display: block; }

/* Menu categories */
.menu-category {
  background: #fff;
  border-radius: 10px;
  padding: 28px 28px 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: opacity 0.2s;
}
.menu-category.hidden { display: none; }

.category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--red);
}
.cat-emoji { font-size: 1.6rem; }
.category-heading h2 { font-size: 1.5rem; color: var(--dark); margin: 0; }

/* "New" category — gold banner accent */
#cat-new .category-heading {
  border-bottom-color: var(--gold);
  background: linear-gradient(to right, rgba(212,175,55,0.08), transparent);
  border-radius: 6px 6px 0 0;
  padding: 8px 12px 14px;
  margin: -8px -12px 0;
}
#cat-new .category-heading h2 { color: var(--bamboo); }
#cat-new { border: 2px solid rgba(212,175,55,0.3); }
.cat-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.cat-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin: -8px 0 14px;
  font-style: italic;
}

.menu-list { display: flex; flex-direction: column; }

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #f0ebe2;
  gap: 20px;
  transition: opacity 0.15s, background 0.2s, padding 0.2s;
  flex-wrap: wrap;
  cursor: pointer;
  border-radius: 8px;
}
.menu-row:last-child { border-bottom: none; }
.menu-row.hidden { display: none; }
.menu-row:hover { background: #fffbf7; padding-left: 8px; padding-right: 8px; }
.menu-row.active { background: #fff8f2; padding: 14px 8px; border-bottom-color: transparent; box-shadow: 0 2px 12px rgba(192,57,43,0.08); border: 1px solid #f5d5c8; }

.menu-row-left { flex: 1; }
.menu-row-left h3 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.menu-row-left h3 .qty {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  font-family: 'Open Sans', sans-serif;
}
.menu-row-left p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 6px; }

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.tag.popular  { background: #fdf0e0; color: #c0392b; border: 1px solid #f5c6a0; }
.tag.spicy    { background: #fde8e8; color: #c0392b; border: 1px solid #f5aaaa; }
.tag.chefs    { background: #e8f4fd; color: #2471a3; border: 1px solid #aed6f1; }
.tag.signature{ background: #f9f0ff; color: #7d3c98; border: 1px solid #d7bde2; }
.tag.veg      { background: #e8f8f0; color: #1e8449; border: 1px solid #a9dfbf; }

/* ===== FOOTER ===== */
.footer { background: #111; color: rgba(255,255,255,0.7); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand .logo-icon { font-size: 1.5rem; color: var(--gold); }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-left: 8px; }
.footer-brand p { margin-top: 12px; font-size: 0.86rem; line-height: 1.7; }

.footer-links strong,
.footer-social strong {
  display: block;
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  color: rgba(255,255,255,0.8);
}
.social-icons a:hover { background: var(--gold); color: var(--dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Sidebar becomes slide-in drawer on tablet/mobile */
  .menu-sidebar {
    position: fixed;
    top: 0; left: -280px;
    width: 260px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    z-index: 900;
    transition: left 0.3s ease;
    padding-top: 56px;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }
  .menu-sidebar.open { left: 0; }
  .sidebar-close { display: block; }
  .sidebar-toggle { display: block; }
  .menu-body { padding: 24px 16px 60px; }
  .menu-category { padding: 20px 16px 4px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 1000; }

  section h2 { font-size: 1.8rem; }
  .contact-info-centered { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  #location-map { height: 280px; }
}

@media (max-width: 520px) {
  .category-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .menu-row { flex-direction: column; gap: 6px; }
  .price { align-self: flex-start; }
  .bamboo-group, .dragon-seal, .lantern { display: none; }
  .bamboo-divider { gap: 4px; }
}

@media (max-width: 900px) {
  .lantern { display: none; }
  .bamboo-group { width: 14%; opacity: 0.7; }
  .dragon-seal { font-size: clamp(5rem, 14vw, 10rem); opacity: 0.8; }
}

/* Overlay behind open sidebar on mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 890;
}
.sidebar-overlay.visible { display: block; }

/* ===== ITEM ADD PANEL ===== */
.item-add-panel {
  display: none;
  flex: 0 0 100%;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 0 4px;
  animation: fadeUp 0.18s ease both;
}
.item-add-panel.visible { display: flex; }

.add-size-btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 2px solid var(--red);
  background: #fff;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  text-align: center;
  letter-spacing: 0.2px;
}
.add-size-btn:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.add-size-btn.single { background: var(--red); color: #fff; }
.add-size-btn.single:hover { background: #a93226; transform: translateY(-1px); }

.panel-main-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}
.panel-side-row {
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.side-picker-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.side-extra {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(192,57,43,0.09);
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
}
.add-size-btn:hover .side-extra { color: #fff; background: rgba(255,255,255,0.25); }

.side-back-btn {
  background: none !important;
  color: var(--muted) !important;
  border-color: #ddd !important;
  font-size: 0.82rem !important;
  align-self: flex-start;
  padding: 7px 14px !important;
}
.side-back-btn:hover { color: var(--dark) !important; border-color: #aaa !important; }

/* ===== CART FLOAT BUTTON ===== */
.cart-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 850;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(192,57,43,0.45);
  transition: transform 0.2s, background 0.2s, opacity 0.2s;
  opacity: 1;
}
.cart-float:hover { transform: translateY(-3px); background: #a93226; }
.cart-float.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }

.cart-badge {
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
}
.cart-overlay.visible { display: block; }

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transition: right 0.32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--dark);
  color: #fff;
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
}
.cart-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s;
}
.cart-close-btn:hover { color: #fff; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  margin-top: 56px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.cart-empty span { display: block; font-size: 2rem; margin-bottom: 12px; }

.cart-item {
  padding: 14px 0;
  border-bottom: 1px solid #f0ebe2;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { margin-bottom: 8px; }
.cart-item-info strong { font-size: 0.93rem; color: var(--dark); display: block; }
.cart-item-size {
  font-size: 0.78rem;
  color: var(--muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  flex-shrink: 0;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--red); background: var(--red); color: #fff; }
.cart-item-qty { font-weight: 700; min-width: 22px; text-align: center; font-size: 0.95rem; }
.cart-item-price { margin-left: auto; color: var(--red); font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1rem; }
.remove-btn {
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
  margin-left: 4px;
}
.remove-btn:hover { color: var(--red); }

.cart-footer {
  padding: 20px 24px;
  border-top: 2px solid #f0ebe2;
  background: var(--light);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-row strong { font-size: 0.95rem; color: var(--dark); }
.cart-total-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.cart-no-tax {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
}
.cart-total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
}
.cart-order-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.cart-order-btn:hover { background: #a93226; transform: translateY(-1px); }
.cart-clear-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: none;
  color: var(--muted);
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cart-clear-btn:hover { border-color: var(--red); color: var(--red); }

/* ===== ORDER MODAL ===== */
.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-modal.open { display: flex; }

.order-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: fadeUp 0.25s ease both;
  max-height: 90vh;
  overflow-y: auto;
}
.order-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--muted);
}
.order-modal-close:hover { color: var(--dark); }
.order-modal-icon { font-size: 2.8rem; text-align: center; margin-bottom: 10px; }
.order-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 6px;
}
.order-modal-hint { text-align: center; color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }

.order-phone-btn {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 20px;
  transition: background 0.2s;
  letter-spacing: 0.5px;
}
.order-phone-btn:hover { background: #a93226; }

.order-modal-summary {
  border-top: 1px solid #f0ebe2;
  padding-top: 14px;
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #444;
  gap: 16px;
}
.order-summary-item span:last-child { color: var(--red); font-weight: 700; white-space: nowrap; }
.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 4px;
  border-top: 2px solid #f0ebe2;
  margin-top: 8px;
  font-size: 1rem;
}
.order-summary-total strong:last-child { color: var(--red); font-size: 1.2rem; font-family: 'Playfair Display', serif; }

.order-modal-hours {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f0ebe2;
  letter-spacing: 0.3px;
}

@media (max-width: 520px) {
  .cart-drawer { width: 100vw; }
  .cart-float { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.88rem; }
  .order-modal-content { padding: 28px 20px; }
}
