@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary:        #C1440E;
  --primary-light:  #E8621A;
  --primary-dark:   #8B2E08;
  --secondary:      #2D6A4F;
  --secondary-light:#40916C;
  --accent:         #F4A261;
  --gold:           #D4A017;
  --gold-light:     #F5C842;

  --bg:             #F9F5F0;
  --bg-dark:        #1A1208;
  --surface:        #FFFFFF;
  --surface-warm:   #FDF6EE;

  --text:           #1C1209;
  --text-secondary: #5C4A36;
  --text-muted:     #9B8470;

  --border:         rgba(193,68,14,0.15);
  --border-light:   rgba(255,255,255,0.5);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  --shadow-xs: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 8px 32px rgba(193,68,14,0.25);
  --shadow-glass: 0 8px 32px rgba(31,38,135,0.08);

  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --navbar-h: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Outfit', sans-serif; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: 'Outfit', sans-serif; outline: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }

.glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
}

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 30px; font-size: 0.78rem; font-weight: 600;
}
.chip-popular { background: #FFF3CD; color: #9B6A00; border: 1px solid #F5C842; }
.chip-veg { background: #D4EDDA; color: #1B5E20; border: 1px solid #40916C; }
.chip-nonveg { background: #F8D7DA; color: #7B1E1E; border: 1px solid #E57373; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.75rem 1.6rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--trans); letter-spacing: 0.3px;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 18px rgba(193,68,14,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,68,14,0.45);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #3D2800;
  box-shadow: 0 4px 18px rgba(212,160,23,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.5); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-danger { background: #DC3545; color: white; }
.btn-danger:hover { background: #B02A37; }
.btn-success { background: var(--secondary); color: white; }
.btn-success:hover { background: var(--secondary-light); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--navbar-h);
  background: rgba(249,245,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(249,245,240,0.98);
}
.navbar .container {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
}
.nav-brand-icon {
  width: 42px; height: 42px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; flex-shrink: 0;
}
.nav-brand-text { font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.nav-brand-sub { font-family: 'Outfit', sans-serif; font-size: 0.7rem; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links li a {
  padding: 0.5rem 0.9rem; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.95rem; color: var(--text-secondary);
  transition: var(--trans); position: relative;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary); background: rgba(193,68,14,0.07);
}
.nav-links li a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--primary);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.cart-icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: var(--trans);
  color: var(--primary);
}
.cart-icon-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); color: white; font-size: 0.68rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--trans); border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: var(--navbar-h); left: 0; width: 100%;
  background: rgba(249,245,240,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 999;
  padding: 1rem 0; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu li a {
  display: block; padding: 0.85rem 5%; font-weight: 500; font-size: 1.05rem;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
.mobile-menu li a:hover { color: var(--primary); background: rgba(193,68,14,0.05); padding-left: 7%; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper { padding-top: var(--navbar-h); min-height: 100vh; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2D1A08 40%, #1A1208 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/hero_restaurant.png');
  background-size: cover; background-position: center;
  opacity: 0.3; z-index: 0;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(193,68,14,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,160,23,0.15) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: white; font-style: italic; margin-bottom: 1rem;
  line-height: 1.1;
}
.hero h1 span { color: var(--accent); font-style: normal; display: block; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 1px; z-index: 1;
}
.scroll-dot {
  width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 20px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot::after {
  content: ''; width: 4px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,0.5); animation: scrollAnim 1.6s infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(8px); opacity: 0; }
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.75rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '✦'; font-size: 0.5rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); }
.section-subtitle { font-family: 'Outfit', sans-serif; color: var(--text-muted); max-width: 500px; margin: 0.75rem auto 0; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--trans);
  overflow: hidden; border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.menu-card { position: relative; }
.menu-card-img {
  width: 100%; height: 200px;
  object-fit: cover; transition: var(--trans);
}
.menu-card:hover .menu-card-img { transform: scale(1.04); }
.menu-card-img-wrap { overflow: hidden; }
.menu-card-body { padding: 1.25rem; }
.menu-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
.menu-card-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.55; }
.menu-card-footer {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.menu-card-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.menu-card-badges { display: flex; gap: 6px; flex-wrap: wrap; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 0.5rem;
}
.form-control {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text); font-size: 0.95rem;
  transition: var(--trans);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(193,68,14,0.1); }
.form-control::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   TABLE FLOOR MAP
   ============================================================ */
.floor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 600px; margin: 0 auto 2rem;
}
.table-item {
  aspect-ratio: 1; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans); border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.table-item.available {
  background: #E8F5E9; border-color: var(--secondary);
}
.table-item.available:hover {
  background: var(--secondary); color: white; transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}
.table-item.booked {
  background: #FFEBEE; border-color: #EF5350; cursor: not-allowed;
}
.table-item-num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.table-item-cap { font-size: 0.8rem; margin-top: 4px; opacity: 0.7; }
.table-item-status {
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px; border-radius: 50%;
}
.available .table-item-status { background: var(--secondary); }
.booked .table-item-status { background: #EF5350; animation: pulse 1.5s infinite; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

/* ============================================================
   CART SIDEBAR
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 400px;
  height: 100vh; background: var(--surface);
  z-index: 1200; transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
  padding: 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-sidebar-header h3 { font-size: 1.3rem; }
.cart-close { background: none; font-size: 1.5rem; color: var(--text-muted); padding: 4px; }
.cart-close:hover { color: var(--primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; }
.cart-item-price { color: var(--primary); font-weight: 600; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty button {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; background: var(--bg); border: 1px solid var(--border);
  font-size: 1rem; font-weight: 700; color: var(--primary); transition: var(--trans);
}
.cart-qty button:hover { background: var(--primary); color: white; border-color: var(--primary); }
.cart-qty span { font-weight: 600; min-width: 20px; text-align: center; }
.cart-footer { padding: 1.25rem; border-top: 1px solid var(--border); }
.cart-summary { margin-bottom: 1rem; }
.cart-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 6px; }
.cart-row.total { font-weight: 700; font-size: 1.1rem; color: var(--primary); padding-top: 8px; border-top: 1px solid var(--border); }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text-muted); }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.toast {
  padding: 0.9rem 1.5rem; border-radius: var(--radius);
  background: var(--bg-dark); color: white; font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg); animation: toastIn 0.35s ease;
  display: flex; align-items: center; gap: 10px; min-width: 250px;
}
.toast.success { border-left: 4px solid var(--secondary); }
.toast.error { border-left: 4px solid #EF5350; }
.toast.info { border-left: 4px solid var(--accent); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--accent); margin-bottom: 0.75rem;
}
.footer-brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 0.95rem; transition: var(--trans);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { color: white; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--trans); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.88rem; }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--accent); }

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--bg-dark), #2D1A08);
  padding: 5rem 0 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(193,68,14,0.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212,160,23,0.12) 0%, transparent 60%);
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner-eyebrow { color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.75rem; }
.page-banner h1 { font-size: clamp(2rem,5vw,3.5rem); color: white; }

/* ============================================================
   SECTION PADDING
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-warm); }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.55rem 1.25rem; border-radius: 30px; font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid var(--border); background: var(--surface); color: var(--text-secondary);
  cursor: pointer; transition: var(--trans);
}
.filter-tab:hover { border-color: var(--primary); color: var(--primary); }
.filter-tab.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 150px; height: 150px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.offer-card::after {
  content: ''; position: absolute; bottom: -40px; left: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.offer-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.offer-card-code {
  display: inline-block; background: rgba(255,255,255,0.2);
  padding: 4px 12px; border-radius: 6px; font-weight: 700; font-size: 1.1rem;
  letter-spacing: 2px; margin-bottom: 0.5rem; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.offer-card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.4rem; }
.offer-card-desc { font-size: 0.88rem; opacity: 0.85; }
.offer-card-valid { font-size: 0.78rem; opacity: 0.65; margin-top: 0.75rem; }
.offer-card.gold-card {
  background: linear-gradient(135deg, #B8860B, #D4A017);
}
.offer-card.green-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-layout { display: flex; min-height: 100vh; padding-top: 0; }
.admin-sidebar {
  width: 260px; background: var(--bg-dark); padding: 2rem 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 100;
}
.admin-sidebar-logo {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--accent);
  padding: 0 0.75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1rem;
}
.admin-sidebar-logo span { display: block; font-family: 'Outfit', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase; }
.admin-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm); color: rgba(255,255,255,0.6);
  font-weight: 500; font-size: 0.95rem; transition: var(--trans); cursor: pointer;
  border: none; background: none; width: 100%; text-align: left;
}
.admin-nav-link:hover { background: rgba(255,255,255,0.07); color: white; }
.admin-nav-link.active { background: var(--primary); color: white; }
.admin-nav-link .icon { font-size: 1.1rem; width: 22px; }

.admin-main { margin-left: 260px; flex: 1; padding: 2rem; min-height: 100vh; background: var(--bg); }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.admin-topbar h1 { font-size: 1.75rem; }
.admin-section { display: none; }
.admin-section.active { display: block; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card {
  background: var(--surface); border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;
}
.stat-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-icon.orange { background: rgba(193,68,14,0.1); color: var(--primary); }
.stat-icon.green { background: rgba(45,106,79,0.1); color: var(--secondary); }
.stat-icon.gold { background: rgba(212,160,23,0.1); color: var(--gold); }
.stat-icon.blue { background: rgba(33,150,243,0.1); color: #2196F3; }
.stat-value { font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }

.admin-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.admin-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  white-space: nowrap;
}
.admin-table th {
  background: #F7F3EE; padding: 1rem 1.25rem; text-align: left; font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.admin-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--surface-warm); }

.badge {
  padding: 3px 10px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 600; display: inline-block;
}
.badge-confirmed { background: #D4EDDA; color: #1B5E20; }
.badge-pending   { background: #FFF3CD; color: #9B6A00; }
.badge-cancelled { background: #F8D7DA; color: #7B1E1E; }
.badge-delivered { background: #D1ECF1; color: #0C5460; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--surface); border-radius: var(--radius-lg); padding: 2rem;
  width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto;
  transform: scale(0.95); transition: transform 0.25s;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem;
}
.modal-header h3 { font-size: 1.35rem; }
.modal-close { background: none; font-size: 1.5rem; color: var(--text-muted); padding: 4px; }

/* Admin Login */
.admin-login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark);
  background-image: radial-gradient(circle at 30% 40%, rgba(193,68,14,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(212,160,23,0.12) 0%, transparent 50%);
}
.admin-login-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; width: 100%; max-width: 400px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.admin-login-card h2 { color: white; margin-bottom: 0.5rem; }
.admin-login-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 2rem; }
.admin-login-card .form-control { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: white; }
.admin-login-card .form-control::placeholder { color: rgba(255,255,255,0.35); }
.admin-login-card .form-control:focus { border-color: var(--primary); }
.admin-login-card .form-label { color: rgba(255,255,255,0.7); }

/* ============================================================
   COUPON INPUT
   ============================================================ */
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-row .form-control { flex: 1; border-radius: 10px 0 0 10px; }
.coupon-row .btn { border-radius: 0 10px 10px 0; }
.coupon-applied {
  background: #D4EDDA; border: 1px solid #40916C; border-radius: var(--radius-sm);
  padding: 0.6rem 1rem; color: var(--secondary); font-weight: 600; font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--bg-dark), #2D1A08);
  border-radius: var(--radius-lg); padding: 2.5rem; color: white;
}
.contact-info-card h3 { color: var(--accent); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-detail-label { font-size: 0.78rem; opacity: 0.55; text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-value { font-size: 0.95rem; margin-top: 2px; }
.map-placeholder {
  background: #DDD; border-radius: var(--radius); height: 220px; margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(193,68,14,0.08), rgba(45,106,79,0.08));
  border: 1px solid var(--border); font-style: italic;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fadeUp { animation: fadeUp 0.6s ease both; }
.animate-fadeIn { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; }

/* ============================================================
   SCROLL ANIMATIONS (via .in-view class)
   ============================================================ */
[data-aos] {
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
  .order-layout { grid-template-columns: 1fr 320px !important; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  /* ── Navbar ── */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand-text { font-size: 1.25rem; }
  .nav-brand-sub { display: none; }
  .nav-brand-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .cart-icon-btn { width: 40px; height: 40px; font-size: 1.1rem; }

  /* ── Hero ── */
  .hero { min-height: 100svh; padding: 2rem 0 5rem; align-items: flex-end; }
  .hero .container { padding-bottom: 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero p { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 2px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-scroll { display: none; }

  /* ── Grids ── */
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 1.25rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── Sections ── */
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: 1.75rem; }
  .page-banner { padding: 4rem 0 2.5rem; }
  .page-banner h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; }
  .form-control { font-size: 1rem; padding: 0.9rem 1rem; }   /* bigger tap target */

  /* ── Buttons ── */
  .btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }

  /* ── Floor map ── */
  .floor-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; max-width: 340px; }
  .table-item-num { font-size: 1.4rem; }
  .table-item-cap { font-size: 0.7rem; }

  /* ── Order page: stack layout ── */
  .order-layout { grid-template-columns: 1fr !important; }
  .order-sticky { position: static !important; }
  .order-menu-grid { grid-template-columns: 1fr !important; }

  /* ── Cart sidebar — full width on mobile ── */
  .cart-sidebar { max-width: 100%; right: -100%; }

  /* ── Offer cards ── */
  .offer-card { padding: 1.5rem; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-info-card { padding: 2rem 1.5rem; }

  /* ── Footer ── */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Admin mobile: tab bar & tables ── */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 2.5rem 1rem 80px; }
  .admin-mobile-nav {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 0;
  }
  .admin-mobile-btn {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    gap: 3px; background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5); font-size: 0.65rem; font-weight: 600;
    padding: 0.4rem 0.25rem; transition: var(--trans);
  }
  .admin-mobile-btn .icon { font-size: 1.2rem; }
  .admin-mobile-btn.active { color: var(--accent); }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1rem; gap: 0.75rem; }
  .stat-value { font-size: 1.5rem; }
  .admin-topbar h1 { font-size: 1.35rem; }

  /* Table to Card conversion for mobile */
  .admin-table-wrap { overflow: visible; background: transparent; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td {
    display: block; width: 100%; box-sizing: border-box;
  }
  .admin-table thead { display: none; }
  .admin-table tr {
    background: var(--surface); border-radius: var(--radius);
    padding: 1rem; margin-bottom: 1rem; border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
  }
  .admin-table td {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0; border-bottom: 1px dashed var(--border);
    text-align: right;
  }
  .admin-table td:last-child { border-bottom: none; padding-bottom: 0; }
  .admin-table td::before {
    content: attr(data-label); font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; color: var(--text-muted); text-align: left;
    margin-right: 1rem; flex-shrink: 0;
  }
  .admin-table td img { max-width: 80px; }
  .admin-table td .btn { padding: 4px 10px; font-size: 0.8rem; }

  /* ── Modals ── */
  .modal-box { padding: 1.5rem; border-radius: var(--radius); }

  /* ── Toast — bottom-center on mobile ── */
  .toast-container { right: 1rem; left: 1rem; bottom: 1.5rem; }
  .toast { min-width: 0; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 0; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .hero-stat-num { font-size: 1.4rem; }

  .menu-card-img { height: 170px; }
  .filter-tabs { gap: 0.35rem; }
  .filter-tab { padding: 0.45rem 0.85rem; font-size: 0.82rem; }

  .floor-grid { max-width: 100%; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .table-item-num { font-size: 1.2rem; }

  .admin-login-card { padding: 2rem 1.5rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }

  .offer-card { padding: 1.25rem; }
  .offer-card-title { font-size: 1.15rem; }
  .footer { padding: 2.5rem 0 1rem; }
}

/* ============================================================
   TOUCH / HOVER ENHANCEMENTS
   ============================================================ */
@media (hover: none) {
  /* Disable transform hovers on touch screens to avoid sticky states */
  .card:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-outline:hover { transform: none; }
  .btn-gold:hover { transform: none; }
  .footer-social a:hover { transform: none; }
  /* Bigger tap targets */
  .cart-qty button { width: 34px; height: 34px; }
  .admin-nav-link { padding: 1rem 0.75rem; }
}

