@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Noto+Serif+TC:wght@400;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Colors */
  --primary: #8f1a1d;
  --primary-rgb: 143, 26, 29;
  --primary-light: #b02327;
  --accent: #dfb26c;
  --accent-rgb: 223, 178, 108;
  --accent-light: #ecd1a4;
  --bg-dark: #0f0f11;
  --bg-surface: #191a1e;
  --bg-surface-hover: #22232a;
  --text-main: #f5f5f7;
  --text-muted: #a1a1aa;
  --text-gold: #e5c185;
  --border-color: rgba(223, 178, 108, 0.15);
  --border-glow: rgba(223, 178, 108, 0.35);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --glow-shadow: 0 0 15px rgba(143, 26, 29, 0.4);
  
  /* Fonts */
  --font-display: 'Cinzel', 'Noto Serif TC', serif;
  --font-body: 'Outfit', sans-serif;
  --font-chinese: 'Noto Serif TC', 'Microsoft JhengHei', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Spacing & Heights */
  --header-height: 80px;
}

/* --- BASE & TYPOGRAPHY --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-dark);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Highlighted Text */
.gold-text {
  color: var(--text-gold);
}
.crimson-text {
  color: var(--primary-light);
}

/* --- BUTTONS & INTERACTIVES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #631012 100%);
  color: #fff;
  border: 1px solid rgba(223, 178, 108, 0.4);
  box-shadow: 0 4px 15px rgba(143, 26, 29, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(143, 26, 29, 0.6), 0 0 10px rgba(223, 178, 108, 0.2);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn-secondary {
  border: 1px solid var(--accent);
  color: var(--text-gold);
  background: rgba(223, 178, 108, 0.05);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(223, 178, 108, 0.3);
  transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

header.scrolled {
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo .cn {
  font-family: var(--font-chinese);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.logo .en {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  padding: 2px;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-btn.active {
  background: var(--accent);
  color: var(--bg-dark);
}

/* Cart Button */
.cart-trigger {
  position: relative;
  background: rgba(143, 26, 29, 0.15);
  border: 1px solid rgba(143, 26, 29, 0.4);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-trigger:hover {
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(143, 26, 29, 0.6);
  transform: scale(1.05);
}

.cart-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-gold);
  transition: var(--transition-fast);
}

.cart-trigger:hover .cart-icon {
  fill: #fff;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: radial-gradient(circle at center, rgba(15, 15, 17, 0.4) 0%, rgba(15, 15, 17, 0.95) 100%),
              url('assets/hero_bg.png') center/cover no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle-cn {
  font-family: var(--font-chinese);
  font-size: 2.2rem;
  color: var(--text-gold);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.15em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.4s;
}

.hero-title span {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-main);
  -webkit-text-fill-color: var(--text-main);
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.8s;
}

/* --- BANNER / PROMO SECTION (NEW YEAR CAKE) --- */
.promo-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(143, 26, 29, 0.08) 50%, var(--bg-dark) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle-cn {
  font-family: var(--font-chinese);
  color: var(--text-gold);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
}

.promo-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.promo-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 40px rgba(143, 26, 29, 0.2);
}

.promo-img-wrapper {
  position: relative;
  overflow: hidden;
}

.promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.promo-card:hover .promo-img {
  transform: scale(1.05);
}

.promo-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.promo-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-tag {
  color: var(--text-gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.promo-heading-cn {
  font-family: var(--font-chinese);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}

.promo-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.promo-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.promo-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 30px;
}

.promo-price-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.promo-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-gold);
  font-family: var(--font-display);
}

.promo-price-details {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- INTERACTIVE MENU SECTION --- */
.menu-section {
  padding: 100px 0;
  background: var(--bg-dark);
}

.menu-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  gap: 24px;
}

/* Search Bar */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 14px 20px 14px 50px;
  border-radius: 40px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(223, 178, 108, 0.2);
  background: var(--bg-surface-hover);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.search-input:focus + .search-icon {
  fill: var(--text-gold);
}

/* Custom tabs UI */
.tabs-container {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 50px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbars */
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.tab-btn .tab-cn {
  font-family: var(--font-chinese);
  font-size: 1rem;
}

.tab-btn .tab-en {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(223, 178, 108, 0.3);
  box-shadow: 0 4px 15px rgba(143, 26, 29, 0.4);
}

/* Category Timing Info */
.time-tag {
  font-size: 0.85rem;
  background: rgba(223, 178, 108, 0.1);
  color: var(--text-gold);
  border: 1px solid rgba(223, 178, 108, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 10px rgba(143, 26, 29, 0.1);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.item-code {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-gold);
  background: rgba(223, 178, 108, 0.08);
  border: 1.5px solid rgba(223, 178, 108, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.item-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-gold);
  font-weight: 700;
}

.menu-card-body {
  margin-bottom: 20px;
  flex-grow: 1;
}

.item-title-cn {
  font-family: var(--font-chinese);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.item-title-en {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

.item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
  margin-top: auto;
}

.item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.item-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 10px;
}

.item-tag.spicy {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.item-tag.recommend {
  background: rgba(223, 178, 108, 0.15);
  color: var(--text-gold);
}

.add-to-cart-btn {
  background: var(--primary);
  border: 1px solid rgba(223, 178, 108, 0.3);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(143, 26, 29, 0.3);
}

.add-to-cart-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 15px rgba(223, 178, 108, 0.4);
}

.add-to-cart-btn:hover svg {
  fill: var(--bg-dark);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- SIDE CART DRAWER --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px; /* Hidden by default */
  width: 420px;
  height: 100%;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-fast);
  display: flex;
}

.cart-close-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.cart-items-wrapper {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  gap: 16px;
}

.cart-empty-icon {
  width: 60px;
  height: 60px;
  fill: var(--border-glow);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  animation: slideInLeft 0.3s forwards;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 10px;
}

.cart-item-name-cn {
  font-family: var(--font-chinese);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.cart-item-name-en {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-customizations {
  font-size: 0.75rem;
  color: var(--text-gold);
  background: rgba(223, 178, 108, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 6px;
  border: 1px solid rgba(223, 178, 108, 0.15);
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.qty-controls {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-gold);
}

.qty-val {
  padding: 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-weight: 700;
  color: var(--text-gold);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(239, 68, 68, 0.6);
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 4px;
  display: flex;
  align-items: center;
}

.cart-item-remove:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 17, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

.cart-summary-row.total {
  font-size: 1.3rem;
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.order-note-area {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  border-left: 3px solid var(--accent);
}

/* --- CUSTOMIZATION MODAL --- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(to right, rgba(143, 26, 29, 0.2), transparent);
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-title-cn {
  font-family: var(--font-chinese);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-gold);
}

.modal-title-en {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 4px;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}

.option-group {
  margin-bottom: 24px;
}

.option-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-gold);
  border-left: 3px solid var(--primary);
  padding-left: 8px;
  letter-spacing: 0.05em;
}

.option-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.choice-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(223, 178, 108, 0.3);
}

.choice-card.selected {
  background: rgba(143, 26, 29, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(223, 178, 108, 0.15);
}

.choice-label-cn {
  font-family: var(--font-chinese);
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.choice-label-en {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.choice-card.selected .choice-label-en {
  color: var(--text-main);
}

.choice-price {
  font-size: 0.85rem;
  color: var(--text-gold);
  font-weight: 600;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 17, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-total-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.modal-total-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-gold);
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 17, 0.6) 100%);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  animation: fadeIn 1s ease;
}

.about-lead-cn {
  font-family: var(--font-chinese);
  font-size: 1.6rem;
  color: var(--text-gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-main);
  line-height: 1.5;
}

.about-p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-box:hover {
  background: rgba(143, 26, 29, 0.05);
  border-color: var(--border-glow);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-gold);
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.stat-label-cn {
  font-family: var(--font-chinese);
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.stat-label-en {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.gallery-card.tall {
  grid-row: span 2;
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: scale(1.02);
  border-color: var(--border-glow);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* --- CONTACT & MAP SECTION --- */
.contact-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  background: rgba(143, 26, 29, 0.1);
  border: 1px solid rgba(143, 26, 29, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-gold);
}

.contact-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-gold);
}

.contact-details h3 .cn {
  font-family: var(--font-chinese);
  font-size: 1.1rem;
  display: block;
}

.contact-details h3 .en {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-details p {
  color: var(--text-muted);
  line-height: 1.6;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.hours-day {
  font-weight: 600;
  color: var(--text-main);
}

.hours-time {
  color: var(--text-muted);
}

/* Map */
.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  height: 450px;
  position: relative;
  background: #121214;
}

.map-placeholder-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #26282e 0%, #121214 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  z-index: 1;
}

.map-decor-icon {
  width: 50px;
  height: 50px;
  fill: var(--text-gold);
  margin-bottom: 16px;
}

.map-placeholder-bg h4 {
  font-family: var(--font-chinese);
  font-size: 1.25rem;
  color: var(--text-gold);
  margin-bottom: 8px;
}

.map-placeholder-bg p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 300px;
  margin-bottom: 20px;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo .cn {
  font-family: var(--font-chinese);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: 0.1em;
}

.footer-logo .en {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent);
  background: rgba(223, 178, 108, 0.05);
  transform: translateY(-3px);
}

.social-link:hover svg {
  fill: var(--text-gold);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
}

/* --- ANIMATIONS & INTERACTIVE STATES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(223, 178, 108, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(223, 178, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(223, 178, 108, 0);
  }
}

/* Scroll Animation Utilities */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInLeft 0.3s forwards;
  border-left: 5px solid var(--accent);
}

.toast.success {
  border-color: #10b981;
  border-left-color: #10b981;
}

.toast-icon {
  width: 18px;
  height: 18px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promo-card {
    grid-template-columns: 1fr;
  }
  
  .promo-img-wrapper {
    height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  #nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-surface);
    transition: var(--transition-smooth);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 99;
    padding: 40px 24px;
  }
  
  #nav-menu.open {
    left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-subtitle-cn {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
  
  .option-choices {
    grid-template-columns: 1fr;
  }
  
  .promo-content {
    padding: 30px;
  }
}
