/* ========================================
   CSS VARIABLES / DESIGN TOKENS
   Saturday â€“ Navy/Beige Palette
   ======================================== */
:root {
  --color-navy: #1A3550;
  --color-navy-light: #2A4F6E;
  --color-navy-dark: #0F2233;
  --color-navy-soft: rgba(26, 53, 80, 0.08);
  --color-beige: #C4B9AB;
  --color-beige-light: #D8D0C5;
  --color-beige-dark: #A89E90;
  --color-off-white: #F0EDEA;
  --color-cream: #F7F5F2;
  --color-white: #FFFFFF;
  --color-black: #0D0D0D;
  --color-text-dark: #1A1918;
  --color-text: #3A3A3A;
  --color-text-muted: #7A7672;
  --color-text-light: #9E9A95;
  --color-border: #E5E0DA;
  --color-border-light: #EDE9E4;
  --color-success: #2E7D32;
  --color-success-light: #E8F5E9;
  --color-gold: #C5962A;
  --color-error: #D32F2F;
  --color-error-light: #FFEBEE;
  --color-warning: #F57C00;
  --color-warning-light: #FFF3E0;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.04);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background: var(--color-off-white);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}

.app-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-off-white);
}

main {
  flex: 1;
  padding-top: 68px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* Navbar text colors â€” transparent state */
.navbar .navbar-logo-text,
.navbar .navbar-link,
.navbar .navbar-location,
.navbar .navbar-location-value,
.navbar .navbar-btn,
.navbar .navbar-cart,
.navbar .navbar-hamburger {
  color: white;
}

.navbar .navbar-search-input {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.navbar .navbar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.navbar .navbar-search-icon {
  color: rgba(255, 255, 255, 0.6);
}

.navbar .navbar-location-label {
  color: rgba(255, 255, 255, 0.6);
}

.navbar .navbar-location-icon {
  color: rgba(255, 255, 255, 0.7);
}

.navbar .navbar-btn-login {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Navbar text colors â€” scrolled (white bg) state */
.navbar.scrolled .navbar-logo-text,
.navbar.scrolled .navbar-link,
.navbar.scrolled .navbar-location,
.navbar.scrolled .navbar-location-value,
.navbar.scrolled .navbar-btn,
.navbar.scrolled .navbar-cart,
.navbar.scrolled .navbar-hamburger {
  color: var(--color-text-dark);
}

.navbar.scrolled .navbar-search-input {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text-dark);
}

.navbar.scrolled .navbar-search-input::placeholder {
  color: var(--color-text-muted);
}

.navbar.scrolled .navbar-search-icon {
  color: var(--color-text-muted);
}

.navbar.scrolled .navbar-location-label {
  color: var(--color-text-light);
}

.navbar.scrolled .navbar-location-icon {
  color: var(--color-text-muted);
}

.navbar.scrolled .navbar-btn-login {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: white;
}

.navbar.scrolled .navbar-link-active {
  color: #E8572A;
}

.navbar-inner {
  width: 100%;
  padding: 0 32px 0 150px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-center {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.navbar-logo-text {
  font-family: 'Caveat', cursive;
  font-size: 25px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.navbar-logo-accent {
  color: var(--color-navy);
}

/* Section switcher icons render inline SVGs */
.section-icon,
.dropdown-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-icon svg {
  display: block;
}

/* Location Selector */
.navbar-location {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.navbar-location:hover {
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .navbar-location:hover {
  background: var(--color-cream);
}

.navbar-location-icon {
  color: var(--color-navy);
  flex-shrink: 0;
}

.navbar-location-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-location-label {
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-location-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Nav Search */
.navbar-search {
  flex: 1;
  max-width: 480px;
  position: relative;
  transition: opacity 0.3s ease, max-width 0.3s ease;
}

.navbar-search-hidden {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.navbar-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--color-text);
  transition: all var(--transition);
  outline: none;
}

.navbar-search-input::placeholder {
  color: var(--color-text-muted);
}

.navbar-search-input:focus {
  border-color: var(--color-navy);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(26, 53, 80, 0.08);
}

.navbar-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

/* Nav Links */
.navbar-links {
  display: flex;
  list-style: none;
  gap: 2px;
}

.navbar-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar-link:hover {
  color: var(--color-text-dark);
  background: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .navbar-link:hover {
  background: var(--color-cream);
}

.navbar-link-active {
  color: #E8572A !important;
  font-weight: 600;
}

.navbar-link-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #E8572A;
  border-radius: 2px;
}

/* Nav Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.navbar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.navbar-btn-login {
  background: var(--color-navy);
  color: var(--color-white);
}

.navbar-btn-login:hover {
  background: var(--color-navy-light);
  box-shadow: var(--shadow-sm);
}

.navbar-cart {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text);
  position: relative;
  transition: all var(--transition);
}

.navbar-cart:hover {
  background: var(--color-cream);
  color: var(--color-navy);
}

.navbar-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-navy);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Hamburger */
.navbar-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-dark);
}

.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.navbar-mobile-link {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}

.navbar-mobile-link:last-child {
  border-bottom: none;
}

.navbar-mobile-link.navbar-link-active {
  color: #E8572A;
}

/* ========================================
   HERO BANNER â€” Full-Width Immersive
   ======================================== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: -48px;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 1.2s ease;
}

.hero-banner-img.hero-img-hidden {
  opacity: 0;
}

.hero-banner-img.hero-img-visible {
  opacity: 1;
}

/* Hero Video */
.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hero-banner-video.hero-video-visible {
  opacity: 1;
}

.hero-banner-video.hero-video-hidden {
  opacity: 0;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.65) 35%,
    rgba(13, 13, 13, 0.25) 60%,
    rgba(13, 13, 13, 0.02) 100%
  );
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px 40px;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-banner-left {
  max-width: 540px;
}

/* Logo badge */
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.hero-logo-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-logo-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

/* Mute/Unmute Button */
.hero-mute-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
  animation: fadeIn 0.4s ease;
}

.hero-mute-btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Title */
.hero-banner-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.hero-banner-title-accent {
  background: linear-gradient(135deg, #C4B9AB 0%, #F0EDEA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Search Bar */
.hero-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  max-width: 480px;
  transition: all var(--transition);
}

.hero-search-bar:focus-within {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
}

.hero-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: white;
  padding: 10px 0;
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-search-btn {
  padding: 10px 24px;
  background: var(--color-beige);
  color: var(--color-navy-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.hero-search-btn:hover {
  background: var(--color-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   QUICK ACTIONS
   ======================================== */
.quick-actions-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px 20px;
}

.quick-actions-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}

.quick-actions-scroll::-webkit-scrollbar { display: none; }

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 18px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  min-width: fit-content;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.quick-action-item:hover {
  border-color: var(--color-navy-light);
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.quick-action-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  color: var(--color-text-dark);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.quick-action-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.quick-action-label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.quick-action-desc {
  font-size: 11px;
  color: #000;
}

/* ========================================
   PROMO BANNER
   ======================================== */
.promo-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px 24px;
}

.promo-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

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

.promo-card {
  flex: 0 0 calc(50% - 8px);
  min-width: 280px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(130, 125, 120, 0.2);
}

.promo-card-active {
  box-shadow: 0 4px 16px rgba(26, 53, 80, 0.15);
}

.promo-card-bg {
  position: relative;
  aspect-ratio: 1024 / 559;
  background-size: cover;
  background-position: center;
}

.promo-card-pattern {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 240px;
  height: 240px;
  background: rgba(160, 155, 150, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}

.promo-card-pattern::after {
  content: '';
  position: absolute;
  bottom: -120%;
  left: -80%;
  width: 180px;
  height: 180px;
  background: rgba(160, 155, 150, 0.1);
  border-radius: 50%;
}

.promo-card-content {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 20px 24px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  color: #1a1a1a;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.promo-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: #1a1a1a;
}

.promo-card-subtitle {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 400;
  margin-bottom: 16px;
  color: #333;
}

.promo-card-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #d97706;
  margin-top: auto;
}

.promo-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-beige);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.promo-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-navy);
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px 24px;
}

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

.categories-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding: 4px 0;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 4px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 1;
}

.category-item:hover {
  border-color: var(--color-navy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-item.active {
  border-color: var(--color-navy);
  background: var(--color-navy-soft);
  box-shadow: var(--shadow-sm);
}

.category-item.active .category-label {
  color: var(--color-navy);
  font-weight: 600;
}

.category-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.category-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text);
}

/* ========================================
   POPULAR NEAR YOU
   ======================================== */
.popular-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 32px;
}

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

.popular-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.popular-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.popular-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  transition: color var(--transition);
}

.popular-view-all:hover {
  color: var(--color-navy-light);
}

.popular-arrows {
  display: flex;
  gap: 6px;
}

.popular-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: all var(--transition);
}

.popular-arrow:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

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

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


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

@media(max-width: 768px) {
  .top-brands-image {
    object-fit: fill;
  }
}

/* Restaurant Grid (for Browse page) */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ========================================
   RESTAURANT CARD
   ======================================== */
.restaurant-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.restaurant-grid .restaurant-card {
  width: 100%;
}

.restaurant-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-beige);
}

.restaurant-image-wrapper {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.restaurant-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

@media(max-width: 768px) {
  .restaurant-image {
    object-fit: fill;
  }
}

.restaurant-card:hover .restaurant-image {
  transform: scale(1.06);
}

.restaurant-promoted-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  background: rgba(26, 53, 80, 0.85);
  color: white;
  font-size: 9px;
  font-weight: 600;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.restaurant-offer-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.restaurant-favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: var(--color-text-light);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.restaurant-favorite:hover,
.restaurant-favorite.active {
  color: var(--color-error);
  transform: scale(1.1);
}

.restaurant-favorite.active svg {
  fill: var(--color-error);
}

.restaurant-info {
  padding: 14px 16px;
}

.restaurant-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.restaurant-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.restaurant-cuisine {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.restaurant-dot {
  font-size: 4px;
  color: var(--color-text-light);
}

.restaurant-tags {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.restaurant-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.restaurant-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-success);
  padding: 2px 6px;
  border-radius: 4px;
}

.restaurant-rating svg {
  fill: white;
  stroke: white;
}

.restaurant-price {
  font-size: 11px;
  color: var(--color-text-muted);
}

.restaurant-time {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-left: auto;
}

.restaurant-veg-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--color-success);
  font-weight: 500;
  padding: 2px 6px;
  background: var(--color-success-light);
  border-radius: 4px;
}

/* ========================================
   TOP BRANDS
   ======================================== */
.top-brands-section {
  padding: 24px 0 32px;
  border-top: 1px solid var(--color-border-light);
}

.top-brands-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-brands-header {
  margin-bottom: 20px;
}

.top-brands-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.3px;
}

.top-brands-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.top-brands-scroll::-webkit-scrollbar { display: none; }

.top-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.top-brand-item:hover {
  transform: translateY(-4px);
}

.top-brand-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.top-brand-item:hover .top-brand-circle {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: scale(1.05);
}

.top-brand-emoji {
  font-size: 32px;
  line-height: 1;
}

.top-brand-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

/* ========================================
   APP CTA BANNER (SLIM)
   ======================================== */
.app-cta-section {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  padding: 28px 0 32px;
  margin-top: 0;
  margin-bottom: 0 !important;
}

.app-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.app-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.app-cta-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.app-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.app-cta-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

.app-cta-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-cta-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.app-cta-input {
  padding: 10px 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 13px;
  width: 200px;
  outline: none;
  font-family: inherit;
}

.app-cta-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.app-cta-btn {
  padding: 10px 20px;
  background: white;
  color: var(--color-navy);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.app-cta-btn:hover {
  background: var(--color-cream);
}

.app-cta-stores {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-cta-store-text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.app-cta-store-badges {
  display: flex;
  gap: 8px;
}

.app-cta-store-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.app-cta-store-badge:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

.challenges-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 520px;
}

.challenges-header {
  margin-bottom: 20px;
}

.challenges-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.challenges-title {
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-dark);
}

.challenges-timer {
  font-size: 11px;
  color: var(--color-navy);
  font-weight: 600;
  padding: 4px 12px;
  background: var(--color-navy-soft);
  border-radius: 20px;
}

.challenges-subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
}

.challenges-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--color-cream);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.challenge-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-beige);
}

.challenge-complete {
  opacity: 0.65;
  background: var(--color-navy-soft);
}

.challenge-icon {
  font-size: 20px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.challenge-info {
  flex: 1;
  min-width: 0;
}

.challenge-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dark);
  display: block;
  margin-bottom: 6px;
}

.challenge-progress-bar {
  height: 5px;
  background: var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.challenge-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-navy), var(--color-navy-light));
  border-radius: 10px;
  transition: width 0.6s ease;
}

.challenge-progress-text {
  font-size: 10px;
  color: var(--color-text-muted);
}

.challenge-reward {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.challenge-reward-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold);
}

.challenge-reward-label {
  font-size: 9px;
  color: var(--color-text-muted);
}

.challenge-details {
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--color-border-light);
  margin-top: 10px;
}

.challenge-claim-btn {
  margin-top: 8px;
  padding: 6px 16px;
  background: var(--color-gold);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.challenge-claim-btn:hover {
  opacity: 0.9;
}

.challenges-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  transition: color var(--transition);
}

.challenges-view-all:hover {
  color: var(--color-navy-light);
}

/* ========================================
   MENU ITEM CARD
   ======================================== */
.menu-item-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.menu-item-card:last-child {
  border-bottom: none;
}

.menu-item-left {
  flex: 1;
  min-width: 0;
}

.menu-item-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.veg-indicator {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--color-success);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veg-indicator.non-veg {
  border-color: var(--color-error);
}

.veg-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
}

.veg-indicator.non-veg .veg-indicator-dot {
  background: var(--color-error);
}

.bestseller-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-gold);
  padding: 1px 6px;
  background: rgba(197, 150, 42, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(197, 150, 42, 0.2);
}

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

.menu-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.menu-item-original-price {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 6px;
  font-size: 12px;
}

.menu-item-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--color-success);
  font-weight: 500;
  margin-top: 6px;
}

.menu-item-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.menu-item-image {
  width: 120px;
  height: 96px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.menu-item-add-btn {
  padding: 6px 28px;
  background: var(--color-white);
  border: 1.5px solid var(--color-navy);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-item-add-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.menu-item-qty-control {
  display: flex;
  align-items: center;
  background: var(--color-navy);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.menu-item-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.menu-item-qty-btn:hover {
  background: rgba(255,255,255,0.1);
}

.menu-item-qty-value {
  min-width: 24px;
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
}

/* ========================================
   CART DRAWER
   ======================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--color-white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-drawer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
}

.cart-drawer-close:hover {
  background: var(--color-cream);
  color: var(--color-text-dark);
}

.cart-drawer-restaurant {
  padding: 12px 24px;
  background: var(--color-cream);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-light);
  gap: 12px;
}

.cart-drawer-item-info {
  flex: 1;
  min-width: 0;
}

.cart-drawer-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.cart-drawer-item-price {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cart-drawer-checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-navy);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.cart-drawer-checkout-btn:hover {
  background: var(--color-navy-light);
  box-shadow: var(--shadow-md);
}

.cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.cart-drawer-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cart-drawer-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.cart-drawer-empty-text {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ========================================
   FILTER BAR
   ======================================== */
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: var(--color-beige);
}

.filter-chip.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: white;
}

.filter-chip-icon {
  font-size: 13px;
}

.sort-dropdown {
  position: relative;
  display: inline-block;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}

.sort-btn:hover {
  border-color: var(--color-navy);
}

/* ========================================
   SKELETON LOADING
   ======================================== */
.skeleton {
  background: linear-gradient(90deg, var(--color-cream) 25%, var(--color-border-light) 37%, var(--color-cream) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.skeleton-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
}

.skeleton-image {
  width: 100%;
  height: 150px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.skeleton-text-short {
  width: 60%;
}

.skeleton-text-medium {
  width: 80%;
}

.skeleton-circle {
  border-radius: 50%;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast-container {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

@media (min-width: 769px) {
  .toast-container {
    bottom: 32px;
  }
}

.toast {
  padding: 12px 24px;
  background: var(--color-text-dark);
  color: white;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease;
  white-space: nowrap;
}

.toast.success {
  background: var(--color-success);
}

.toast.error {
  background: var(--color-error);
}

@keyframes toastIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ========================================
   BOTTOM NAV (Mobile)
   ======================================== */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  backdrop-filter: blur(20px);
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.bottom-nav-item.active {
  color: var(--color-navy);
}

.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
}

.bottom-nav-icon {
  width: 22px;
  height: 22px;
}

.bottom-nav-badge {
  position: absolute;
  top: 0;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-navy);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.app-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.7);
  margin-top: 0 !important;
}

.footer-main {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: flex;
  justify-content: space-between;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
  flex-shrink: 0;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.3px;
  font-family: 'Caveat', cursive !important;
}

.saturdays-font {
  font-family: 'Caveat', cursive !important;
}

.footer-logo-accent {
  color: var(--color-beige);
}

.footer-tagline {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.footer-description {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* App store badges */
.footer-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  transition: all 0.2s ease;
}

.footer-app-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.footer-app-badge svg {
  flex-shrink: 0;
}

.footer-app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-app-badge-top {
  font-size: 9px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.footer-app-badge-store {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255,255,255,0.5);
  transition: all 0.25s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #0D0D0D;
  border-top: none !important;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0 !important;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-dot {
  color: rgba(255,255,255,0.15);
  font-size: 10px;
}

/* ========================================
   PAGE - BROWSE
   ======================================== */
.browse-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
}

.browse-header {
  margin-bottom: 24px;
}

.browse-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.browse-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
}

.browse-filters {
  margin-bottom: 24px;
}

.browse-results-count {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.browse-no-results {
  text-align: center;
  padding: 64px 24px;
}

.browse-no-results-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.browse-no-results-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.browse-no-results-text {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ========================================
   PAGE - RESTAURANT DETAIL
   ======================================== */
.restaurant-detail-page {
  max-width: 1280px;
  margin: 0 auto;
}

.restaurant-banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.restaurant-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.6));
}

.restaurant-detail-info {
  padding: 24px;
  position: relative;
  margin-top: -40px;
  background: var(--color-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.restaurant-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.restaurant-detail-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.restaurant-detail-cuisine {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.restaurant-detail-stats {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 24px;
}

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

.restaurant-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.restaurant-stat-value.green {
  color: var(--color-success);
}

.restaurant-stat-label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.restaurant-menu-section {
  padding: 0 24px 24px;
}

.restaurant-menu-category {
  margin-bottom: 24px;
}

.restaurant-menu-category-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.restaurant-menu-count {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 6px;
}

/* Sticky Cart Bar (restaurant page) */
.sticky-cart-bar {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: var(--color-navy);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: calc(100% - 48px);
  animation: slideUp 0.3s ease;
}

@media (min-width: 769px) {
  .sticky-cart-bar {
    bottom: 24px;
  }
}

@keyframes slideUp {
  from { transform: translateX(-50%) translateY(100%); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.sticky-cart-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sticky-cart-count {
  font-size: 13px;
  font-weight: 500;
}

.sticky-cart-total {
  font-size: 11px;
  opacity: 0.8;
}

.sticky-cart-btn {
  padding: 8px 20px;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

.sticky-cart-btn:hover {
  background: var(--color-cream);
}

/* ========================================
   PAGE - CART
   ======================================== */
.cart-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.cart-page-header {
  margin-bottom: 24px;
}

.cart-page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.cart-restaurant-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.cart-restaurant-image {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-restaurant-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.cart-restaurant-view {
  font-size: 12px;
  color: var(--color-navy);
  font-weight: 500;
}

.cart-items-section {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
  gap: 12px;
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-name-section {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-item-customize {
  font-size: 11px;
  color: var(--color-navy);
  cursor: pointer;
  font-weight: 500;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  white-space: nowrap;
}

/* Coupon Section */
.coupon-section {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--transition);
}

.coupon-section:hover {
  border-color: var(--color-beige);
}

.coupon-section-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coupon-section-icon {
  font-size: 18px;
}

.coupon-section-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.coupon-section-arrow {
  color: var(--color-text-muted);
}

/* Bill Details */
.bill-details {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.bill-details-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.bill-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--color-text);
}

.bill-row.total {
  border-top: 1px solid var(--color-border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-dark);
}

.bill-row .free {
  color: var(--color-success);
  font-weight: 500;
}

.place-order-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-navy);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.place-order-btn:hover {
  background: var(--color-navy-light);
  box-shadow: var(--shadow-md);
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.cart-empty-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.cart-empty-text {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.cart-empty-btn {
  display: inline-flex;
  padding: 12px 32px;
  background: var(--color-navy);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
}

.cart-empty-btn:hover {
  background: var(--color-navy-light);
}

/* ========================================
   PAGE - ORDERS
   ======================================== */
.orders-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.orders-page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.order-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.order-card:hover {
  box-shadow: var(--shadow-sm);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.order-card-restaurant {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-card-image {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.order-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.order-card-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.order-status-badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
}

.order-status-badge.delivered {
  background: var(--color-success-light);
  color: var(--color-success);
}

.order-status-badge.on_the_way {
  background: var(--color-navy-soft);
  color: var(--color-navy);
}

.order-status-badge.preparing {
  background: rgba(197, 150, 42, 0.1);
  color: var(--color-gold);
}

.order-status-badge.cancelled {
  background: var(--color-error-light);
  color: var(--color-error);
}

.order-card-items {
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.order-card-total {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.order-card-actions {
  display: flex;
  gap: 8px;
}

.order-reorder-btn {
  padding: 8px 20px;
  background: var(--color-navy);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.order-reorder-btn:hover {
  background: var(--color-navy-light);
}

.order-details-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-full);
}

.order-details-btn:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
}

/* ========================================
   PAGE - PROFILE
   ======================================== */
.profile-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}

.profile-page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.profile-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.profile-user-section {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.profile-user-info {
  flex: 1;
}

.profile-user-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.profile-user-email {
  font-size: 13px;
  color: var(--color-text-muted);
}

.profile-user-phone {
  font-size: 13px;
  color: var(--color-text-muted);
}

.profile-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: color var(--transition);
}

.profile-menu-item:last-child {
  border-bottom: none;
}

.profile-menu-item:hover {
  color: var(--color-navy);
}

.profile-menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-menu-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 16px;
}

.profile-menu-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.profile-menu-sublabel {
  font-size: 11px;
  color: var(--color-text-muted);
}

.profile-menu-arrow {
  color: var(--color-text-light);
}

.profile-logout-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1.5px solid var(--color-error);
  color: var(--color-error);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.profile-logout-btn:hover {
  background: var(--color-error-light);
}

/* ========================================
   SEARCH BAR (Standalone)
   ======================================== */
.search-bar-standalone {
  position: relative;
  max-width: 600px;
}

.search-bar-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  color: var(--color-text);
  transition: all var(--transition);
  outline: none;
}

.search-bar-input::placeholder {
  color: var(--color-text-muted);
}

.search-bar-input:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(26, 53, 80, 0.08);
}

.search-bar-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.search-bar-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
}

.search-bar-clear:hover {
  background: var(--color-cream);
}

/* ========================================
   BACK BUTTON
   ======================================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.back-btn:hover {
  background: var(--color-cream);
  color: var(--color-text-dark);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero-banner { min-height: 440px; }
  .hero-banner-content { min-height: 440px; padding: 56px 24px 40px; }
  .hero-banner-title { font-size: 38px; }
  .hero-banner-subtitle { font-size: 14px; }
  .hero-stats { gap: 16px; }
  .hero-stat-number { font-size: 17px; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-search { display: none; }
  .navbar-location { display: none; }
  .navbar-actions .navbar-btn-login { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-mobile-menu { display: flex; }
  .bottom-nav { display: block; }

  .hero-banner { min-height: 400px; }
  .hero-banner-content { min-height: 400px; padding: 40px 20px 32px; }
  .hero-banner-title { font-size: 32px; letter-spacing: -1px; }
  .hero-banner-subtitle { font-size: 13px; margin-bottom: 24px; }
  .hero-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 13, 13, 0.85) 0%,
      rgba(13, 13, 13, 0.6) 50%,
      rgba(13, 13, 13, 0.4) 100%
    );
  }
  .hero-search-bar { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }

  .popular-header { flex-wrap: wrap; gap: 8px; }
  .restaurant-card { width: 200px; }
  .restaurant-image-wrapper { height: 120px; }

  .footer-inner { flex-direction: column; gap: 32px; padding: 40px 16px 32px; }
  .footer-brand { max-width: 100%; width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-logo-row { justify-content: center; }
  .footer-links { gap: 24px 32px; justify-content: flex-start; width: 100%; }
  .footer-col { flex: 1 1 calc(50% - 16px); min-width: calc(50% - 16px); }
  .footer-social { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; padding: 16px 16px 64px !important; gap: 8px; }

  .restaurant-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .restaurant-banner { height: 180px; }
  .restaurant-detail-stats { gap: 16px; }

  .promo-card { flex: 0 0 85%; }
  .app-cta-inner { flex-direction: column; text-align: center; }
  .app-cta-left { justify-content: center; }
  .app-cta-right { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-banner-title { font-size: 26px; }
  .hero-banner-subtitle { font-size: 12px; }

  .category-item {
    min-width: 76px;
    padding: 12px 14px;
  }

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

  .promo-card { flex: 0 0 92%; }
  .app-cta-stores { flex-direction: column; }
}

/* ===== SECTION SWITCHER DROPDOWN ===== */
.navbar-section-switcher {
  position: relative;
}

.navbar-section-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 24px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #232323;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.navbar.scrolled .navbar-section-btn {
  border-color: rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
  color: #232323;
}

.navbar-section-btn:hover {
  border-color: #e8572a;
  background: rgba(232,87,42,0.06);
}

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

.section-chevron {
  transition: transform 0.25s ease;
}

.section-chevron.open {
  transform: rotate(180deg);
}

.navbar-section-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  z-index: 1000;
  animation: dropdownFadeIn 0.2s ease;
}

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

.navbar-section-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.navbar-section-dropdown-item:hover {
  background: #f7f5f3;
}

.navbar-section-dropdown-item.active {
  background: rgba(232,87,42,0.06);
}

.dropdown-item-icon {
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0edea;
  border-radius: 10px;
}

.navbar-section-dropdown-item.active .dropdown-item-icon {
  background: rgba(232,87,42,0.12);
}

.dropdown-item-info {
  display: flex;
  flex-direction: column;
}

.dropdown-item-label {
  font-size: 14px;
  font-weight: 600;
  color: #232323;
}

.dropdown-item-desc {
  font-size: 12px;
  color: #888;
  margin-top: 1px;
}

/* Mobile section switcher */
.navbar-mobile-section-switcher {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-mobile-section-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(0,0,0,0.1);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-mobile-section-btn.active {
  background: #e8572a;
  border-color: #e8572a;
  color: #fff;
}


/* ── Floating support FAB + widget (synced from src/styles/app.css so the
   button is FIXED bottom-right instead of falling into page flow) ──────── */
.support-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-navy);
  box-shadow: 0 8px 24px rgba(14, 45, 83, 0.35);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.support-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 30px rgba(14, 45, 83, 0.45);
}

.support-fab:focus-visible {
  outline: 3px solid var(--color-navy);
  outline-offset: 3px;
}

.support-fab.is-open {
  background: var(--color-navy-dark);
}

.support-widget {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1200;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(14, 45, 83, 0.28), 0 0 0 1px rgba(14, 45, 83, 0.06);
  overflow: hidden;
  animation: support-pop 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes support-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.support-widget-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
}

.support-widget-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.2px;
}

.support-widget-sub {
  font-size: 12.5px;
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.support-widget-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.support-widget-close:hover { background: rgba(255, 255, 255, 0.28); }

.support-widget-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.support-widget-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
}

.support-widget-field em {
  color: #e8760c;
  font-style: normal;
}

.support-widget-field input,
.support-widget-field textarea {
  font-size: 14px;
  font-weight: 400;
  color: #1a2433;
  padding: 10px 12px;
  border: 1px solid var(--color-beige);
  border-radius: 10px;
  background: #fbfaf8;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.support-widget-field input::placeholder,
.support-widget-field textarea::placeholder {
  color: #9a958d;
}

.support-widget-field input:focus,
.support-widget-field textarea:focus {
  outline: none;
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px var(--color-navy-soft);
  background: #fff;
}

.support-widget-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 2px;
  padding: 11px 16px;
  border: none;
  border-radius: 10px;
  background: var(--color-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.support-widget-submit:hover:not(:disabled) { background: var(--color-navy-light); }
.support-widget-submit:active:not(:disabled) { transform: translateY(1px); }
.support-widget-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.support-widget-error {
  font-size: 12.5px;
  color: #c0392b;
  margin: -4px 0 0;
}

.support-widget-sent {
  text-align: center;
  padding: 26px 18px 20px;
}

.support-widget-sent-icon { color: #1a9e5c; }

.support-widget-sent-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 10px 0 4px;
}

.support-widget-sent-text {
  font-size: 13px;
  color: #5b6470;
  margin: 0 0 14px;
  line-height: 1.5;
}

.support-widget-link-btn {
  background: none;
  border: none;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.support-widget-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--color-beige-light);
  background: #faf9f7;
  font-size: 12.5px;
  color: #6b7280;
}

.support-widget-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-navy);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.support-widget-foot-link:hover { text-decoration: underline; }

/* Lift above the mobile bottom nav so it never overlaps. */
@media (max-width: 768px) {
  .support-fab { right: 16px; bottom: 78px; width: 52px; height: 52px; }
  .support-widget { right: 12px; bottom: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .support-fab, .support-widget-submit { transition: none; }
  .support-fab:hover { transform: none; }
  .support-widget { animation: none; }
}
