/* 🎨 Cafe Booking - Modern Design System */
:root {
  --bg: #1a0f08;
  --panel: rgba(45, 28, 18, 0.96);
  --text: #fef5e7;
  --muted: #d4a574;
  --accent: #d4864f;
  --accent-soft: #b8764a;
  --accent-dark: #2d1a0f;
  --border: rgba(212, 134, 79, 0.25);
  --success: #66b366;
  --warning: #e8a84f;
  --danger: #d94b4b;
  --transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(135deg, #2b1c13 0%, #392718 45%, #271b12 100%);
  padding-top: 60px;
  position: relative;
}

body.index-page {
  background: linear-gradient(135deg, rgba(38, 24, 15, 0.92), rgba(46, 28, 17, 0.92)), url("../img/cafe.jpg") center/cover no-repeat fixed;
}

body.index-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 12, 6, 0.28), rgba(19, 12, 6, 0.06));
  pointer-events: none;
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

/* 🎯 Navbar */
.navbar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(30, 16, 10, 0.98) 0%, rgba(45, 26, 15, 0.96) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(212, 134, 79, 0.25);
  padding: 1.2rem 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
}

.navbar-brand {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fef5e7 !important;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffc966 0%, #ffd89b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-links {
  display: flex;
  gap: 1.2rem;
}

.nav-link {
  color: #fef5e7 !important;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(212, 134, 79, 0.12);
  border: 1.5px solid rgba(212, 134, 79, 0.2);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  background: rgba(232, 168, 79, 0.25);
  transform: translateY(-2px);
  border-color: rgba(232, 168, 79, 0.4);
  box-shadow: 0 8px 20px rgba(232, 168, 79, 0.2);
}

.cart-section, .user-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(183, 122, 95, 0.2);
  border-radius: 20px;
  color: white;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 122, 95, 0.3);
  font-weight: 600;
  transition: all 0.3s ease;
}

.cart-section:hover, .user-section:hover {
  background: rgba(196, 136, 102, 0.3);
  transform: translateY(-2px);
}

/* 🌟 Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(45, 26, 15, 0.98) 0%, rgba(60, 35, 22, 0.95) 100%);
  border: 2px solid rgba(212, 134, 79, 0.35);
  border-radius: 32px;
  padding: 56px 48px;
  margin-bottom: 48px;
  margin-top: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 134, 79, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ffc966 0%, #ffd89b 55%, #e8a84f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  line-height: 1.02;
  text-shadow: 0 6px 25px rgba(232, 168, 79, 0.2);
}

.hero-tagline {
  margin: 0 0 16px;
  color: #f3d9b2;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  opacity: 0.88;
}

.hero-subtitle {
  margin: 0 auto 24px;
  color: #f1e7d7;
  font-size: 1rem;
  line-height: 1.85;
  max-width: 680px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (min-width: 1200px) {
  .hero-subtitle {
    white-space: nowrap;
  }
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-hero,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero {
  background: linear-gradient(135deg, #ffcb6b 0%, #f8b44d 100%);
  color: #3b230c;
  border: none;
  box-shadow: 0 18px 40px rgba(255, 190, 92, 0.25);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 190, 92, 0.32);
}

.btn-hero-secondary {
  background: linear-gradient(135deg, #ffcb6b 0%, #f8b44d 100%);
  color: #3b230c;
  border: none;
  box-shadow: 0 18px 40px rgba(255, 190, 92, 0.25);
}

.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 190, 92, 0.32);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff9e7;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* 📋 Section Card */
.page-header {
  background: rgba(50, 30, 18, 0.95);
  border: 2px solid rgba(212, 134, 79, 0.3);
  border-radius: 28px;
  padding: 36px 40px;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fef5e7;
}

.page-header p {
  margin: 12px 0 0;
  color: #d4a574;
  line-height: 1.8;
  font-weight: 500;
}

.section-card {
  background: linear-gradient(135deg, rgba(50, 30, 18, 0.97) 0%, rgba(38, 22, 13, 0.94) 100%);
  border: 2px solid rgba(212, 134, 79, 0.28);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.section-card:hover {
  box-shadow: 0 35px 85px rgba(212, 134, 79, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 134, 79, 0.45);
  transform: translateY(-3px);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fef5e7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-title {
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.04em;
  color: #fef5e7;
  background: linear-gradient(135deg, #ffc966 0%, #ffd89b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  margin: 0;
  color: #d4a574;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  max-width: 560px;
}

@media (max-width: 767px) {
  .section-header {
    align-items: flex-start;
  }
}

.section-card h4 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* 🔍 Filter Controls */
.filter-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  display: none;
}

.search-input {
  border: 2px solid rgba(212, 134, 79, 0.25) !important;
  border-radius: 14px;
  padding: 12px 16px 12px 44px !important;
  transition: var(--transition);
  font-size: 0.98rem;
  background: rgba(35, 20, 12, 0.92) !important;
  color: #fef5e7 !important;
  font-weight: 500;
}

.search-input:focus {
  border-color: #e8a84f !important;
  box-shadow: 0 0 0 4px rgba(232, 168, 79, 0.2) !important;
  background: rgba(45, 26, 15, 0.98) !important;
}

.filter-select,
.table-select {
  border: 2px solid rgba(212, 134, 79, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  transition: var(--transition);
  font-size: 0.98rem;
  background-color: rgba(35, 20, 12, 0.92);
  color: #fef5e7;
  font-weight: 600;
}

.filter-select:focus,
.table-select:focus {
  outline: none;
  border-color: #e8a84f;
  box-shadow: 0 0 0 4px rgba(232, 168, 79, 0.2);
  background: rgba(45, 26, 15, 0.98);
}

/* 🎴 Menu Card */
.card-menu {
  border: 2px solid rgba(212, 134, 79, 0.3);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(50, 30, 18, 0.98) 0%, rgba(38, 22, 13, 0.95) 100%);
  transition: var(--transition);
  min-height: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.card-menu::before {
  content: "";
  position: absolute;
  top: -80%;
  right: -40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 134, 79, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.card-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 134, 79, 0.05) 0%, transparent 50%, rgba(212, 134, 79, 0.03) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.card-menu:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 90px rgba(212, 134, 79, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 134, 79, 0.6);
  background: linear-gradient(135deg, rgba(60, 36, 22, 0.99) 0%, rgba(45, 26, 15, 0.97) 100%);
}

.card-menu:hover::before {
  top: -40%;
  right: -20%;
  background: radial-gradient(circle, rgba(212, 134, 79, 0.2) 0%, transparent 70%);
}

.card-menu h5 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  font-weight: 900;
  position: relative;
  z-index: 2;
  color: #fef5e7;
  line-height: 1.3;
}

.card-menu .menu-label {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  background: linear-gradient(135deg, rgba(232, 168, 79, 0.25), rgba(212, 134, 79, 0.15));
  color: #ffd89b;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(212, 134, 79, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(212, 134, 79, 0.1);
}

.card-menu .price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 1rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8a84f 0%, #ffc966 100%);
  color: #1a0f08;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 12px 32px rgba(232, 168, 79, 0.35);
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-menu .price-badge::before {
  content: "₫";
  font-size: 0.85em;
  margin-right: 3px;
}

.card-menu .menu-desc {
  font-size: 1.05rem;
  color: #d4a574;
  margin: 16px 0 32px;
  line-height: 1.8;
  flex: 1;
  position: relative;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.btn-add {
  border-radius: 14px;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, #d4864f 0%, #e8a84f 100%);
  border: 2px solid rgba(232, 168, 79, 0.3);
  color: #1a0f08;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(212, 134, 79, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-add:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(232, 168, 79, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-add:active {
  transform: translateY(-1px);
}

/* 🛒 Cart Section */
.cart-section {
  background: linear-gradient(135deg, rgba(212, 134, 79, 0.12) 0%, rgba(212, 134, 79, 0.04) 100%);
  border-color: rgba(212, 134, 79, 0.28);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(212, 134, 79, 0.2);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e8a84f 0%, #ffc966 100%);
  color: #1a0f08;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 28px rgba(232, 168, 79, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  min-height: 100px;
}

.cart-item {
  background: linear-gradient(135deg, rgba(70, 42, 25, 0.98) 0%, rgba(50, 30, 18, 0.95) 100%);
  border: 2px solid rgba(212, 134, 79, 0.2);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.cart-item:hover {
  border-color: #e8a84f;
  box-shadow: 0 10px 28px rgba(232, 168, 79, 0.25);
  background: linear-gradient(135deg, rgba(85, 50, 30, 0.99) 0%, rgba(65, 38, 22, 0.97) 100%);
  transform: translateX(4px);
}

.cart-item strong {
  color: #ffc966;
  font-weight: 800;
}

.cart-empty {
  color: #d4a574;
  padding: 32px 18px;
  border-radius: 16px;
  background: rgba(45, 26, 15, 0.95);
  border: 2px dashed rgba(212, 134, 79, 0.35);
  text-align: center;
  font-size: 0.95rem;
}

.auth-message {
  background: rgba(212, 134, 79, 0.12);
  border: 1px solid rgba(212, 134, 79, 0.25);
  color: #f8e5c1;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.auth-message a,
.auth-message .auth-logout {
  color: #ffd89b;
  font-weight: 700;
  text-decoration: none;
}

.auth-message .auth-logout {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cart-total {
  margin-top: 24px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #e8a84f 0%, #ffc966 100%);
  color: #1a0f08;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 900;
  text-align: right;
  box-shadow: 0 14px 40px rgba(232, 168, 79, 0.4);
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* 📝 Checkout Section */
.checkout-section {
  background: linear-gradient(135deg, rgba(212, 134, 79, 0.12) 0%, rgba(212, 134, 79, 0.04) 100%);
  border-color: rgba(212, 134, 79, 0.28);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffc966;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-input {
  border: 2px solid rgba(212, 134, 79, 0.25) !important;
  border-radius: 12px;
  padding: 13px 16px !important;
  font-size: 0.98rem;
  color: #fef5e7 !important;
  background: rgba(35, 20, 12, 0.92) !important;
  transition: var(--transition);
  font-weight: 500;
}

.form-input:focus {
  outline: none;
  border-color: #e8a84f !important;
  box-shadow: 0 0 0 4px rgba(232, 168, 79, 0.2) !important;
  background: rgba(45, 26, 15, 0.98) !important;
}

.btn-checkout {
  background: linear-gradient(135deg, #e8a84f 0%, #ffc966 100%);
  color: #1a0f08;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 14px 40px rgba(232, 168, 79, 0.35);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-checkout:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(232, 168, 79, 0.45);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-checkout:active {
  transform: translateY(-1px);
}

.checkout-note {
  margin-top: 16px;
  color: #e8d5c3; /* Lighter color for better readability */
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

/* 📱 Input Fields */
#tableSelect,
#name,
#phone {
  border: 1.5px solid rgba(172, 110, 78, 0.22);
  border-radius: 12px;
  background: rgba(45, 28, 18, 0.85);
  color: #f3ddc9;
  transition: var(--transition);
  padding: 11px 14px;
}

#tableSelect:focus,
#name:focus,
#phone:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 95, 77, 0.1);
}

@media (max-width: 767px) {
  .page-header,
  .section-card {
    padding: 20px;
  }

  .card-menu {
    min-height: auto;
  }
}

.btn-refresh {
  padding: 0.92rem 1.35rem;
  border-radius: 16px;
}

.table-responsive {
  overflow-x: auto;
}

.table th {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(136, 120, 109, 0.18);
}

.table td {
  border-top: 1px solid rgba(136, 120, 109, 0.12);
}

/* ❌ ERROR & VALIDATION */
.required {
  color: var(--danger);
  font-weight: 700;
}

.error-text {
  display: block;
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 500;
  min-height: 1.2em;
}

.form-input.is-invalid {
  border-color: var(--danger) !important;
  background-color: rgba(231, 93, 111, 0.05);
}

.form-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(231, 93, 111, 0.1) !important;
}

/* ⏳ LOADING & ANIMATIONS */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 168, 79, 0.3); }
  50% { box-shadow: 0 0 40px rgba(232, 168, 79, 0.5); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.loading-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: spin 1s linear infinite;
  color: #e8a84f;
}

.card-menu,
.cart-item {
  animation: fadeIn 0.4s ease-out;
}

.card-menu:hover {
  animation: pulse 0.6s ease-in-out;
}

/* 📊 STATUS BADGES */
.status-badge {
  display: inline-flex;
  padding: 0.45rem 0.95rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

.status-pending {
  background: linear-gradient(135deg, rgba(248, 175, 66, 0.15), rgba(248, 175, 66, 0.08));
  color: #c97e00;
}

.status-done {
  background: linear-gradient(135deg, rgba(90, 191, 132, 0.15), rgba(90, 191, 132, 0.08));
  color: #2d7f4d;
}

.status-cancel {
  background: linear-gradient(135deg, rgba(231, 93, 111, 0.15), rgba(231, 93, 111, 0.08));
  color: #a83644;
}

/* 🔘 BUTTONS - ADMIN */
.btn-success,
.btn-danger,
.btn-dark {
  border-radius: 10px;
  padding: 0.6rem 0.95rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #4aa070);
  color: white;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(90, 191, 132, 0.2);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), #d94b5f);
  color: white;
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(231, 93, 111, 0.2);
}

.btn-dark {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 95, 77, 0.2);
}

/* 🦶 FOOTER */
.footer-section {
  margin-top: 80px;
  background: linear-gradient(135deg, #3b2a21 0%, #5a3a27 100%);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 0 2rem;
  margin-bottom: 30px;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 247, 236, 0.18);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(255, 247, 236, 0.35);
  transform: translateY(-3px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 247, 236, 0) 0%, rgba(255, 247, 236, 0.25) 50%, rgba(255, 247, 236, 0) 100%);
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0 2rem;
}

.footer-bottom p {
  margin: 0;
}

/* 📱 RESPONSIVE */
@media (max-width: 991px) {
  .navbar-links {
    gap: 1rem;
  }

  .filter-controls {
    gap: 8px;
  }

  .section-header {
    flex-direction: column;
  }

  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 50px;
  }

  .navbar-top .container {
    padding: 0 1rem;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .navbar-links {
    gap: 0.8rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .page-header,
  .section-card {
    padding: 18px;
    border-radius: 16px;
  }

  .container {
    padding: 0 1rem;
  }

  .row {
    margin-left: calc(var(--bs-gutter-x) * -0.5 / 2);
    margin-right: calc(var(--bs-gutter-x) * -0.5 / 2);
  }

  .filter-controls {
    flex-direction: column;
  }

  .search-wrapper {
    min-width: 100%;
  }

  .filter-select,
  .table-select {
    width: 100%;
  }

  .cart-section,
  .checkout-section {
    margin-bottom: 20px;
  }

  .form-input {
    padding: 10px 12px !important;
  }

  .btn-checkout {
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 🎨 TEXT UTILITIES */
.text-accent {
  color: var(--accent);
  font-weight: 600;
}

/* ==================== INDEX PAGE OVERRIDES ==================== */
body {
  background: linear-gradient(135deg, #2a160f 0%, #3a2418 40%, #27180f 100%);
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f4e5d3;
}

.navbar-top {
  background: linear-gradient(135deg, #341d12 0%, #4d3424 45%, #6b4c39 100%);
  box-shadow: 0 12px 30px rgba(20, 12, 8, 0.24);
  border-bottom: 2px solid rgba(255, 247, 236, 0.14);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.navbar-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.navbar-brand {
  font-size: 1.9rem;
  font-weight: 900;
  color: #f4e8dd;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  animation: slideInLeft 0.6s ease;
}

.navbar-links {
  display: flex;
  gap: 12px;
}

.nav-link {
  color: #ffe8c6 !important;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  background: rgba(95, 60, 34, 0.7);
  border: 1px solid rgba(183, 122, 95, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
}

.nav-link:hover {
  background: rgba(237, 158, 83, 0.95);
  color: #271508 !important;
  transform: translateY(-2px);
  border-color: rgba(196, 136, 102, 0.35);
  box-shadow: 0 10px 22px rgba(25, 14, 8, 0.24);
}

.page-header {
  background: rgba(64, 42, 30, 0.98);
  border-radius: 25px;
  padding: 65px 55px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 213, 144, 0.16);
  animation: fadeInDown 0.8s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 8, 5, 0.22);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 142, 103, 0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-tagline {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  opacity: 0.95;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: transparent;
  margin: 0 0 18px;
  letter-spacing: -0.04em;
  line-height: 1.03;
  background: linear-gradient(135deg, #ffd97a 0%, #f3b96c 45%, #d7995a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 40px rgba(223, 145, 52, 0.14);
}

.hero-subtitle {
  margin: 0 auto 32px;
  color: #f5e9d8;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 720px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-hero,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hero {
  background: linear-gradient(135deg, #ffce6a 0%, #f4b654 100%);
  color: #462f18;
  border: none;
  box-shadow: 0 18px 40px rgba(255, 182, 86, 0.24);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(255, 182, 86, 0.32);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f6e9d6;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff9e7;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.section-card {
  background: linear-gradient(135deg, #f8e6d7 0%, #f4dbc9 100%);
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 12px 30px rgba(76, 54, 44, 0.08);
  border: 1px solid rgba(160, 123, 103, 0.18);
  animation: fadeInUp 0.8s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  box-shadow: 0 22px 40px rgba(76, 54, 44, 0.12);
  transform: translateY(-6px);
}

.section-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(160, 123, 103, 0.18);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #8c5a45;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.section-description {
  color: #7a6357;
  font-size: 0.98rem;
  margin: 12px 0 0 0;
  font-weight: 500;
}

.filter-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.search-wrapper {
  position: relative;
}

.search-wrapper i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a06c52;
  font-size: 1.05rem;
}

.search-input {
  border: 1px solid var(--border) !important;
  padding-left: 45px !important;
  border-radius: 14px !important;
  padding: 14px !important;
  transition: all 0.3s ease;
  font-weight: 500;
  background: rgba(43, 27, 18, 0.9) !important;
  color: #f6e7d4 !important;
  font-size: 0.96rem !important;
}

.search-input:focus {
  border-color: #b07f65 !important;
  box-shadow: 0 0 0 5px rgba(176, 127, 101, 0.14) !important;
  outline: none;
  background: rgba(54, 34, 24, 0.95) !important;
}

.search-input::placeholder {
  color: #b79d8c !important;
}

.filter-select,
.table-select {
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  transition: all 0.3s ease;
  font-weight: 700;
  color: #f6e7d4 !important;
  background: rgba(43, 27, 18, 0.9) !important;
  font-size: 0.96rem !important;
}

.filter-select:focus,
.table-select:focus {
  border-color: #b07f65 !important;
  box-shadow: 0 0 0 5px rgba(176, 127, 101, 0.14) !important;
  outline: none;
  background: rgba(54, 34, 24, 0.95) !important;
}

.menu-item {
  background: linear-gradient(135deg, #462c21 0%, #5b3d2d 55%, #6d4c3b 100%);
  border: 1px solid rgba(172, 110, 78, 0.18);
  border-radius: 18px;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: popIn 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 16px rgba(15, 9, 6, 0.18);
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 168, 0.12), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 136, 102, 0.23);
  box-shadow: 0 20px 36px rgba(15, 9, 6, 0.28);
  background: linear-gradient(135deg, #5a3d31 0%, #72513f 50%, #8d6750 100%);
}

.menu-icon {
  font-size: 4rem;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.menu-item:hover .menu-icon {
  transform: scale(1.18) rotate(10deg);
}

.menu-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fef5e7;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.menu-desc {
  font-size: 0.9rem;
  color: #ffc966;
  margin: 0 0 14px 0;
  line-height: 1.6;
  flex-grow: 1;
}

.menu-price {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffc966, #ffd89b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.menu-btn {
  background: linear-gradient(135deg, #b67557, #d49b7e, #f1c6a1);
  color: #3b2a21;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(119, 77, 55, 0.18);
  font-size: 0.98rem;
}

.menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(119, 77, 55, 0.24);
  background: linear-gradient(135deg, #d49a7a, #b67557);
}

.menu-btn:active {
  transform: scale(0.98);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(160, 123, 103, 0.22);
}

.cart-badge {
  background: linear-gradient(135deg, #d49a7a, #f1c6a1);
  color: #3b2a21;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(119, 77, 55, 0.18);
  animation: pulse 2s infinite;
  border: 1px solid rgba(183, 122, 95, 0.35);
}

.cart-list {
  list-style: none;
  margin-bottom: 18px;
  max-height: 370px;
  overflow-y: auto;
}

.cart-list::-webkit-scrollbar {
  width: 8px;
}

.cart-list::-webkit-scrollbar-track {
  background: #3e2d22;
  border-radius: 10px;
}

.cart-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d49a7a, #b67557);
  border-radius: 10px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: linear-gradient(135deg, rgba(72, 47, 34, 0.38), rgba(61, 39, 28, 0.28));
  border-radius: 12px;
  margin-bottom: 11px;
  animation: slideInRight 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(160, 109, 82, 0.32);
}

.cart-item:hover {
  background: linear-gradient(135deg, rgba(120, 77, 51, 0.4), rgba(107, 63, 44, 0.3));
  transform: translateX(6px);
  border-color: rgba(160, 109, 82, 0.55);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-weight: 800;
  color: #3b2a21;
  margin: 0;
  font-size: 0.98rem;
}

.cart-item-qty {
  font-size: 0.86rem;
  color: #a68c7d;
  margin: 5px 0 0 0;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 900;
  background: linear-gradient(135deg, #b67557, #d49a7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 14px;
  text-align: right;
  min-width: 65px;
  font-size: 1.05rem;
}

.cart-item-remove {
  background: linear-gradient(135deg, #b67557, #d49a7a);
  color: white;
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(119, 77, 55, 0.2);
}

.cart-item-remove:hover {
  background: linear-gradient(135deg, #d49a7a, #b67557);
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(119, 77, 55, 0.3);
}

.cart-empty {
  text-align: center;
  padding: 45px 20px;
  color: #a68c7d;
}

.cart-empty i {
  font-size: 3.5rem;
  color: rgba(180, 133, 103, 0.22);
  margin-bottom: 14px;
}

.cart-empty p {
  margin: 0;
  font-weight: 600;
}

.cart-total {
  background: linear-gradient(135deg, rgba(216, 171, 136, 0.16), rgba(180, 133, 103, 0.11));
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(212, 154, 122, 0.28);
  text-align: right;
  font-weight: 900;
  font-size: 1.45rem;
  color: #a86a36;
  letter-spacing: -0.01em;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-weight: 800;
  color: var(--accent); /* Coffee color */
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.required {
  color: #c34c3c;
  font-weight: 900;
}

.form-input {
  border: 1px solid rgba(160, 123, 103, 0.25) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  transition: all 0.3s ease;
  font-size: 0.96rem !important;
  background: rgba(49, 30, 19, 0.92) !important;
  color: #ffffff !important; /* Changed from dark brown to white */
  font-weight: 500 !important;
}

.form-input:focus {
  border-color: #b07f65 !important;
  box-shadow: 0 0 0 5px rgba(176, 127, 101, 0.14) !important;
  outline: none;
  background: rgba(49, 30, 19, 0.92) !important;
}

.form-input::placeholder {
  color: #d4c4b7 !important; /* Lighter placeholder color for better visibility */
}

.error-text {
  color: #c34c3c;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 1.2em;
}

.btn-checkout {
  background: linear-gradient(135deg, #b67557, #d49a7a, #e6c5a6) !important;
  color: #3b2a21 !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 15px 28px !important;
  font-weight: 900 !important;
  font-size: 1.02rem !important;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 12px 32px rgba(119, 77, 55, 0.22) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-checkout:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(119, 77, 55, 0.3) !important;
  background: linear-gradient(135deg, #d49a7a, #b67557, #c88d6c) !important;
}

.btn-checkout:active {
  transform: translateY(-1px);
}

.btn-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-note {
  font-size: 0.88rem;
  color: #8a7164;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.checkout-note i {
  color: #b07f65;
  font-size: 1.1rem;
}

.footer-section {
  background: linear-gradient(135deg, #45322a 0%, #5f4539 40%, #7a5b4d 100%);
  color: #f5eee7;
  margin-top: 70px;
  padding: 55px 0 22px;
  border-top: 2px solid rgba(255, 247, 236, 0.14);
}

.footer-content {
  margin-bottom: 28px;
}

.footer-brand {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d9ab86, #f3d6bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-text {
  color: rgba(245, 238, 231, 0.9);
  margin: 10px 0;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 247, 236, 0.18);
  border: 2px solid rgba(255, 247, 236, 0.45);
  border-radius: 50%;
  color: #f5eee7;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 700;
}

.social-link:hover {
  background: rgba(255, 247, 236, 0.95);
  border-color: rgba(255, 247, 236, 0.85);
  color: #45322a;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 236, 0.25), transparent);
  margin: 28px 0;
}

.footer-bottom {
  text-align: center;
  color: rgba(245, 238, 231, 0.75);
  font-size: 0.92rem;
  font-weight: 500;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.loading-spinner {
  font-size: 2.5rem;
  color: #b67557;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .page-header {
    padding: 45px 28px;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .nav-link {
    padding: 9px 16px;
    font-size: 0.87rem;
  }

  .menu-item {
    padding: 18px;
  }

  .menu-icon {
    font-size: 3.5rem;
  }

  .cart-list {
    max-height: 280px;
  }

  .btn-checkout {
    padding: 13px 20px !important;
  }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4b2f26;
  background: rgba(185, 95, 77, 0.16);
}

.status-pending {
  background: rgba(248, 175, 66, 0.16);
  color: #a66a19;
}

.status-done {
  background: rgba(90, 191, 132, 0.16);
  color: #2f7f43;
}

.status-cancel {
  background: rgba(231, 93, 111, 0.16);
  color: #9d2a3d;
}
