/* ============================================
   BULLGUER PT - Premium Design
   ============================================ */

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #457b9d;
  --success: #2a9d8f;
  --warning: #f4a261;
  --bg: #fafafa;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    'Poppins',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--gray-900);
  line-height: 1.6;
  padding-bottom: 100px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.brand-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s;
}

.location:hover {
  background: var(--gray-200);
}

.location-icon {
  font-size: 16px;
}

.location select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #264573 100%);
  padding: 50px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--warning);
  color: var(--gray-900);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-search {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.search-icon {
  font-size: 18px;
}

.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 0;
}

.hero-info {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.info-icon {
  font-size: 16px;
}

.hero-decoration {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  opacity: 0.1;
}

.deco-circle {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  padding: 14px 20px;
}

.promo-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
}

.promo-icon {
  font-size: 20px;
}

.promo-text strong {
  font-weight: 700;
}

/* ============================================
   CATEGORIES
   ============================================ */

.categories {
  background: var(--white);
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-lg);
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 70px;
}

.category-btn:hover {
  border-color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
}

.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.cat-emoji {
  font-size: 24px;
}

.category-btn span:last-child {
  font-size: 11px;
  font-weight: 600;
}

/* ============================================
   POPULAR SECTION
   ============================================ */

.popular-section {
  padding: 24px 20px;
  background: var(--white);
  margin-bottom: 8px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  font-size: 24px;
}

.section-badge {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.popular-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.popular-scroll::-webkit-scrollbar {
  display: none;
}

.popular-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.popular-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, #ffe5d9, #ffd0ba);
}

.popular-content {
  padding: 12px;
}

.popular-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.popular-add {
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.popular-add:hover {
  background: var(--primary-dark);
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu-section {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ============================================
   MENU ITEM CARD
   ============================================ */

.menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-item-image {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  object-fit: cover;
  background: linear-gradient(135deg, #ffe5d9, #ffd0ba);
}

.menu-item-content {
  flex: 1;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-badge {
  display: inline-block;
  background: var(--warning);
  color: var(--gray-900);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.menu-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 11px;
  color: var(--gray-600);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.menu-item-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

.menu-item-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.menu-item-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
}

.info-card {
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-card h3 {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
}

/* ============================================
   FLOATING CART BUTTON
   ============================================ */

.cart-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
  z-index: 1000;
  transition: all 0.3s;
}

.cart-btn:hover {
  transform: translateX(-50%) scale(1.02);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.cart-btn.hidden {
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
}

.cart-icon {
  font-size: 20px;
}

.cart-count {
  background: var(--white);
  color: var(--primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.cart-text {
  font-weight: 600;
}

.cart-total {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.close-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: linear-gradient(135deg, #ffe5d9, #ffd0ba);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn.minus {
  color: var(--primary);
  border-color: var(--primary);
}

.qty-btn.plus {
  color: var(--success);
  border-color: var(--success);
}

.cart-item-qty span {
  font-weight: 700;
  font-size: 16px;
  min-width: 24px;
  text-align: center;
}

.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.cart-empty.active {
  display: flex;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-empty p {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 600;
}

.empty-hint {
  color: var(--gray-400);
  font-size: 14px;
  margin-top: 4px;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.cart-footer.hidden {
  display: none;
}

.cart-summary {
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-600);
}

.summary-row .free {
  color: var(--success);
  font-weight: 600;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  border-top: 2px solid var(--gray-200);
  padding-top: 14px;
  margin-top: 4px;
}

.checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.checkout-btn:hover {
  background: var(--primary-dark);
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.close-modal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  font-size: 18px;
  cursor: pointer;
}

#checkout-form {
  padding: 20px;
}

.form-section {
  margin-bottom: 24px;
}

.form-section h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.payment-option:hover {
  border-color: var(--primary);
}

.payment-option input {
  display: none;
}

.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(230, 57, 70, 0.05);
}

.payment-icon {
  font-size: 28px;
}

.payment-option span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}

.mbway-number {
  margin-top: 14px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-summary {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.summary-item.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  border-top: 2px solid var(--gray-300);
  padding-top: 12px;
  margin-top: 6px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.submit-btn:disabled {
  background: var(--gray-400);
  cursor: not-allowed;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */

.success-modal {
  text-align: center;
  padding: 40px 30px;
}

.success-icon {
  font-size: 72px;
  margin-bottom: 20px;
}

.success-modal h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.order-number {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.order-number span {
  color: var(--primary);
  font-weight: 800;
  font-size: 24px;
}

.success-text {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 24px;
}

.order-timer {
  background: linear-gradient(135deg, var(--secondary), #264573);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-timer span {
  font-size: 14px;
  opacity: 0.8;
}

.order-timer strong {
  font-size: 24px;
}

.close-success {
  padding: 14px 50px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.close-success:hover {
  background: var(--gray-800);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 50px 20px 30px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-icon {
  font-size: 36px;
}

.footer-brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.footer .brand-name {
  font-size: 24px;
  color: var(--white);
}

.footer .brand-tag {
  background: var(--primary);
}

.footer-text {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

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

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 11px;
  color: var(--gray-600);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

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

  .menu-item {
    flex-direction: column;
  }

  .menu-item-image {
    width: 100%;
    height: 160px;
  }

  .info-section {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
}

/* Hide scrollbar */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
