/* ========================================================= BANTU FOOD v1.0 — LAUNCH EDITION File: public/css/app.css ========================================================= */

/* ------------------------- 1. RESET & GLOBAL ------------------------- */
:root {
  --green-950: #062b1b;
  --green-900: #083a25;
  --green-800: #0b432a;
  --green-700: #0f5132;
  --green-600: #157347;
  --green-500: #198754;
  --green-100: #e8f4ed;
  --orange-600: #e96f00;
  --orange-500: #ff7a00;
  --orange-400: #ff9a3d;
  --orange-100: #fff0df;
  --white: #ffffff;
  --bg: #f4f6f5;
  --text: #1f2923;
  --muted: #69736d;
  --border: #e4e9e6;
  --danger: #dc3545;
  --warning: #ffc107;
  --blue: #0d6efd;
  --purple: #6f42c1;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.16);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --bottom-nav-height: 86px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  padding-bottom: calc(var(--bottom-nav-height) + 12px);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  max-width: 100%;
}

.page-content {
  min-height: calc(100vh - 90px);
}

/* ------------------------- 2. TOP NAVBAR ------------------------- */
.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--green-800);
  color: var(--white);
  position: relative;
  z-index: 50;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white) !important;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.navbar-brand-icon {
  font-size: 38px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-icon-button,
.navbar-profile-button {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white) !important;
  font-size: 21px;
  transition: 0.2s ease;
}

.navbar-icon-button:hover,
.navbar-profile-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.navbar-login-button {
  padding: 12px 20px;
  border-radius: 25px;
  background: var(--orange-500);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: bold;
}

/* Legacy navbar compatibility */
.navbar .logo {
  color: var(--white);
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}

.navbar .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.navbar .nav-links a,
.navbar a {
  color: var(--white);
  font-weight: bold;
}

/* ------------------------- 3. BOTTOM NAVIGATION ------------------------- */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: var(--bottom-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
  padding: 10px 6px 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -7px 24px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(16px);
  z-index: 999;
}

.bottom-nav a {
  min-width: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transition: 0.2s ease;
}

.bottom-nav a:hover,
.bottom-nav a.active {
  color: var(--orange-500);
  transform: translateY(-1px);
}

.bottom-nav span {
  display: block;
  font-size: 25px;
  line-height: 1;
}

/* ------------------------- 4. GENERIC LAYOUT ------------------------- */
.section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 32px 18px;
}

.section h2 {
  color: var(--green-700);
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 10px;
}

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

.footer {
  background: var(--green-700);
  color: var(--white);
  text-align: center;
  padding: 26px;
  margin-top: 30px;
}

/* ------------------------- 5. BUTTONS ------------------------- */
.btn,
.btn-register,
.register-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: var(--orange-500);
  color: var(--white) !important;
  padding: 15px 20px;
  border-radius: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2);
  transition: 0.2s ease;
}

.btn:hover,
.btn-register:hover,
.register-button:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.btn:active,
.btn-register:active,
.register-button:active {
  transform: scale(0.99);
}

.btn-green {
  background: var(--green-700);
}
.btn-blue {
  background: var(--blue);
}
.btn-red {
  background: var(--danger);
}
.btn-purple {
  background: var(--purple);
}

.btn-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  background: #cfd5d1;
  color: #68716c;
  padding: 15px 20px;
  border-radius: 32px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 14px;
  border: none;
  cursor: not-allowed;
}

/* ------------------------- 6. FORMS ------------------------- */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
textarea,
select {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: #fafcfb;
  color: var(--text);
  padding: 15px 16px;
  font-size: 17px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group {
  margin-bottom: 18px;
}

.withdraw-form {
  width: 100%;
}

.withdraw-form label {
  margin-top: 18px;
}

.withdraw-form input {
  margin-bottom: 18px;
}

/* ------------------------- 7. ALERTS ------------------------- */
.alert-success,
.shop-alert-success {
  background: #d1e7dd;
  color: var(--green-700);
  border: 1px solid #a3cfbb;
  padding: 15px 17px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}

.alert-error,
.shop-alert-error {
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f1aeb5;
  padding: 15px 17px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
}

/* ------------------------- 8. STATS ------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat h3 {
  color: var(--green-700);
  font-size: 30px;
  margin-bottom: 5px;
}

.stat p {
  color: var(--muted);
}

/* ------------------------- 9. HOME PAGE ------------------------- */
.premium-home {
  background: var(--bg);
}

.premium-hero {
  position: relative;
  overflow: hidden;
  padding: 62px 22px 54px;
  background: radial-gradient(
      circle at 95% 85%,
      rgba(255, 151, 41, 0.96),
      transparent 42%
    ),
    linear-gradient(140deg, #063c25 0%, #0f7546 58%, #15925a 100%);
  color: var(--white);
}

.premium-hero::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.premium-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.premium-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 14px;
  font-weight: bold;
}

.premium-hero h1 {
  margin: 0 0 20px;
  font-size: 55px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.premium-hero h1 span {
  color: #ffc071;
}

.premium-hero p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  line-height: 1.6;
}

.premium-search {
  padding: 16px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.premium-search-input {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 2px solid var(--border);
  border-radius: 19px;
  background: #f7f9f8;
}

.premium-search-input span {
  font-size: 22px;
}

.premium-search-input input {
  height: 56px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.premium-search button {
  width: 100%;
  min-height: 60px;
  margin-top: 13px;
  border: 0;
  border-radius: 30px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
}

.premium-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.premium-action-primary,
.premium-action-secondary {
  min-width: 190px;
  padding: 15px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
}

.premium-action-primary {
  background: var(--white);
  color: var(--green-700);
}

.premium-action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.premium-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.premium-benefits div {
  padding: 15px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
}

.premium-benefits strong,
.premium-benefits span {
  display: block;
}

.premium-benefits strong {
  margin-bottom: 4px;
  font-size: 23px;
}

.premium-benefits span {
  font-size: 12px;
}

.premium-section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 50px 18px 15px;
}

.premium-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 22px;
}

.premium-section-header small,
.premium-join-section small {
  color: var(--orange-500);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.premium-section-header h2 {
  margin: 5px 0 0;
  color: var(--green-700);
  font-size: 31px;
}

.premium-section-header a {
  color: var(--green-700);
  font-size: 14px;
  font-weight: bold;
}

.premium-promo-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.premium-promo-card {
  min-width: 330px;
  min-height: 185px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 25px;
  border-radius: 25px;
  color: var(--white);
  scroll-snap-align: start;
  box-shadow: var(--shadow-md);
}

.promo-orange {
  background: linear-gradient(135deg, #ff7200, #ffa242);
}
.promo-green {
  background: linear-gradient(135deg, #075b36, #15965c);
}
.promo-purple {
  background: linear-gradient(135deg, #553391, #8b59d0);
}

.promo-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: bold;
}

.premium-promo-card h3 {
  margin: 0 0 8px;
  font-size: 27px;
}

.premium-promo-card p {
  max-width: 215px;
  font-size: 14px;
  line-height: 1.5;
}

.premium-promo-icon {
  font-size: 55px;
}

.premium-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.premium-category-card {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--white);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.premium-category-card span {
  font-size: 40px;
}

.premium-how-section {
  padding-bottom: 45px;
}

.premium-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.premium-step-card {
  padding: 25px 19px;
  border-radius: 24px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.premium-step-icon {
  width: 67px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 22px;
  background: var(--green-100);
  font-size: 34px;
}

.premium-step-card span {
  color: var(--orange-500);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.premium-step-card h3 {
  margin: 8px 0;
  color: var(--green-700);
  font-size: 19px;
}

.premium-step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.premium-join-section {
  max-width: 1065px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin: 45px auto;
  padding: 35px;
  border-radius: 28px;
  background: linear-gradient(135deg, #063c25, #0f7546);
  color: var(--white);
}

.premium-join-section h2 {
  max-width: 620px;
  margin: 8px 0 10px;
  font-size: 31px;
}

.premium-join-section p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.premium-join-section a {
  min-width: 180px;
  padding: 16px 20px;
  border-radius: 28px;
  background: var(--orange-500);
  color: var(--white);
  text-align: center;
  font-weight: bold;
}

.premium-footer {
  margin-top: 40px;
  padding: 35px 20px 115px;
  background: #092d1e;
  color: var(--white);
  text-align: center;
}

.premium-footer strong {
  font-size: 24px;
}

.premium-footer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Legacy home compatibility */
.hero {
  background: linear-gradient(
    135deg,
    var(--green-700),
    var(--green-500),
    var(--orange-500)
  );
  color: var(--white);
  padding: 55px 20px 45px;
  text-align: center;
}

.hero h1,
.hero h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ------------------------- 10. RESTAURANT PAGE ------------------------- */
.restaurant-page {
  min-height: 100vh;
  background: var(--bg);
}

.restaurant-hero {
  padding: 22px 18px 35px;
  background: radial-gradient(
      circle at top right,
      rgba(255, 122, 0, 0.95),
      transparent 42%
    ),
    linear-gradient(135deg, #0b3d27, #0f6a40);
}

.restaurant-cover {
  width: 100%;
  max-width: 1050px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.restaurant-logo {
  width: 105px;
  height: 105px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: var(--white);
  font-size: 55px;
  box-shadow: var(--shadow-lg);
}

.restaurant-info h1 {
  margin: 8px 0;
  font-size: 36px;
  line-height: 1.15;
}

.restaurant-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.restaurant-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: bold;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #63f28b;
  box-shadow: 0 0 0 4px rgba(99, 242, 139, 0.16);
}

.restaurant-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.restaurant-meta span {
  padding: 8px 11px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: bold;
}

.restaurant-content {
  width: 100%;
  max-width: 1050px;
  margin: auto;
  padding: 28px 18px 60px;
}

.shop-alert {
  margin-bottom: 18px;
  padding: 15px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: bold;
}

.menu-search-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.menu-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #f8faf9;
}

.menu-search-input input {
  height: 52px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.menu-search-card button {
  min-width: 150px;
  padding: 0 24px;
  border: none;
  border-radius: 18px;
  background: var(--orange-500);
  color: var(--white);
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.category-scroll {
  display: flex;
  gap: 11px;
  margin: 25px 0 34px;
  padding-bottom: 9px;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.category-chip {
  flex: 0 0 auto;
  min-width: 105px;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  color: var(--green-700);
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  scroll-snap-align: start;
  white-space: nowrap;
}

.category-chip.active {
  border-color: var(--orange-500);
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.22);
}

.menu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.menu-small-title {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.menu-heading h2 {
  color: var(--green-700);
  font-size: 32px;
}

.menu-count {
  padding: 8px 13px;
  border-radius: 20px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 14px;
  font-weight: bold;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.food-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}

.food-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.food-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e9efeb;
}

.food-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5f4eb, #fff1df);
  font-size: 82px;
}

.food-category-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border-radius: 18px;
  background: rgba(15, 81, 50, 0.9);
  color: var(--white);
  font-size: 12px;
  font-weight: bold;
}

.food-favourite-form {
  position: absolute;
  top: 12px;
  right: 12px;
}

.food-favourite-button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.food-body {
  padding: 20px;
}

.food-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.food-title-row h3 {
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

.food-emoji {
  font-size: 26px;
}

.food-description {
  min-height: 52px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.food-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.food-details span {
  padding: 6px 9px;
  border-radius: 15px;
  background: #f2f6f3;
  color: #455149;
  font-size: 12px;
  font-weight: bold;
}

.food-stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #eff9f2;
  color: var(--green-700);
  font-size: 13px;
}

.food-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.food-price small {
  display: block;
  margin-bottom: 2px;
  color: #7d847f;
  font-size: 12px;
}

.food-price strong {
  color: var(--green-700);
  font-size: 23px;
}

.add-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 48px;
  padding: 0 18px;
  border: none;
  border-radius: 25px;
  background: var(--orange-500);
  color: var(--white) !important;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.add-cart-button.disabled {
  background: #aeb6b1;
  cursor: not-allowed;
}

.empty-menu {
  grid-column: 1/-1;
  padding: 55px 25px;
  border-radius: 28px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.empty-menu-icon {
  margin-bottom: 13px;
  font-size: 68px;
}

.empty-menu h3 {
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 26px;
}

.empty-menu p {
  max-width: 430px;
  margin: 0 auto 22px;
  color: var(--muted);
  line-height: 1.6;
}

.empty-menu a {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 25px;
  background: var(--orange-500);
  color: var(--white);
  font-weight: bold;
}

/* ------------------------- 11. CART / REVIEW / TIMELINE ------------------------- */
.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #f8faf9;
  border: 1px solid var(--border);
  padding: 15px;
  border-radius: 18px;
  margin-bottom: 12px;
}

.review-item {
  background: #f8faf9;
  border: 1px solid var(--border);
  padding: 15px;
  border-radius: 18px;
  margin-bottom: 12px;
}

.review-star {
  color: #ff9800;
  font-weight: bold;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin: 22px 0;
}

.timeline-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #dcdcdc;
  color: var(--white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-icon.active {
  background: var(--orange-500);
}
.timeline-icon.done {
  background: var(--green-500);
}

.status-badge {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  margin-top: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 20px;
  font-weight: bold;
}

/* ------------------------- 12. CATEGORY & PROMO ------------------------- */
.category-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.category-box .btn {
  margin: 0;
}

.promo {
  background: linear-gradient(135deg, var(--orange-500), #ffb347);
  color: var(--white);
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 25px;
}

/* ------------------------- 13. RESPONSIVE ------------------------- */
@media (max-width: 750px) {
  .navbar {
    min-height: 74px;
    padding: 12px 16px;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .navbar-brand-icon {
    font-size: 31px;
  }

  .navbar-icon-button,
  .navbar-profile-button {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  /* Hide old duplicated menu links on mobile */
  .navbar .nav-links {
    display: none !important;
  }

  .premium-hero {
    padding: 50px 17px 44px;
  }

  .premium-hero h1 {
    font-size: 43px;
  }

  .premium-hero p {
    font-size: 18px;
  }

  .premium-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .premium-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-join-section {
    margin: 42px 15px;
    display: block;
    padding: 28px 23px;
  }

  .premium-join-section h2 {
    font-size: 27px;
  }

  .premium-join-section a {
    display: block;
    margin-top: 22px;
  }

  .menu-search-card {
    grid-template-columns: 1fr;
  }

  .menu-search-card button {
    min-height: 56px;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-cover {
    align-items: flex-start;
    padding: 21px;
  }

  .restaurant-logo {
    width: 78px;
    height: 78px;
    border-radius: 21px;
    font-size: 40px;
  }

  .restaurant-info h1 {
    font-size: 27px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  body {
    padding-bottom: 94px;
  }

  .navbar {
    padding: 11px 14px;
  }

  .navbar-brand {
    font-size: 20px;
    gap: 8px;
  }

  .navbar-brand-icon {
    font-size: 29px;
  }

  .premium-badge {
    font-size: 12px;
  }

  .premium-hero h1 {
    font-size: 38px;
  }

  .premium-action-primary,
  .premium-action-secondary {
    width: 100%;
  }

  .premium-benefits {
    gap: 8px;
  }

  .premium-benefits div {
    padding: 12px 5px;
  }

  .premium-benefits strong {
    font-size: 20px;
  }

  .premium-promo-card {
    min-width: 290px;
  }

  .premium-section-header h2 {
    font-size: 27px;
  }

  .premium-step-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-cover {
    display: block;
  }

  .restaurant-logo {
    margin-bottom: 17px;
  }

  .restaurant-content {
    padding-left: 14px;
    padding-right: 14px;
  }

  .food-body {
    padding: 18px;
  }

  .add-cart-button {
    padding: 0 15px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .bottom-nav a {
    min-width: 54px;
    font-size: 11px;
  }

  .bottom-nav span {
    font-size: 23px;
  }
}
.bottom-nav a.active{
    color:#ff7a00;
}

.bottom-nav a.active span{
    transform:scale(1.12);
}

.bottom-nav a{
    transition:color .2s ease, transform .2s ease;
}

.bottom-nav a span{
    transition:transform .2s ease;
}
.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:white !important;
    text-decoration:none !important;
}

.navbar-logo-image{
    width:58px;
    height:58px;
    object-fit:cover;
    border-radius:50%;
    background:white;
    border:3px solid rgba(255,255,255,.25);
    box-shadow:0 6px 18px rgba(0,0,0,.16);
}

.navbar-brand-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.navbar-brand-text strong{
    color:white;
    font-size:24px;
    line-height:1.1;
}

.navbar-brand-text small{
    margin-top:4px;
    color:rgba(255,255,255,.78);
    font-size:10px;
    font-weight:bold;
    letter-spacing:.4px;
}

@media(max-width:430px){
    .navbar-logo-image{
        width:52px;
        height:52px;
    }

    .navbar-brand-text strong{
        font-size:20px;
    }

    .navbar-brand-text small{
        font-size:8px;
    }
}