:root{
  /* Modern Color Palette */
  --fx-primary: #6366f1;
  --fx-primary-light: #818cf8;
  --fx-primary-dark: #4f46e5;
  --fx-secondary: #f59e0b;
  --fx-accent: #ef4444;
  --fx-success: #10b981;
  --fx-warning: #f59e0b;
  --fx-error: #ef4444;

  /* Neutral Colors */
  --fx-surface: #ffffff;
  --fx-surface-2: #f8fafc;
  --fx-surface-3: #f1f5f9;
  --fx-muted: #64748b;
  --fx-muted-light: #94a3b8;
  --fx-text: #0f172a;
  --fx-text-light: #475569;
  --fx-sub: #64748b;

  /* Modern Shadows */
  --fx-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --fx-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --fx-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --fx-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --fx-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Modern Border Radius */
  --fx-radius-sm: 8px;
  --fx-radius: 12px;
  --fx-radius-md: 16px;
  --fx-radius-lg: 20px;
  --fx-radius-xl: 24px;
  --fx-radius-full: 9999px;

  /* Modern Gradients */
  --fx-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --fx-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --fx-gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --fx-gradient-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --fx-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1d4ed8 45%, #38bdf8 100%);

  /* Enhanced Navigation */
.fx-logo-text {
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.fx-nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.fx-nav-icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

/* Enhanced Promotions Section */
.bg-gradient-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.promo-slide img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.promo-slide:hover img {
  transform: scale(1.02);
}

/* Enhanced Categories */
.category-card {
  min-width: 100px;
  max-width: 120px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  border-color: var(--fx-primary) !important;
}

.category-icon {
  font-size: 2rem;
  color: var(--fx-primary);
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-name {
  font-size: 0.875rem;
  line-height: 1.2;
}

/* Enhanced Listing Cards */
.fx-card {
  border-radius: 16px !important;
  border: 1px solid #e2e8f0 !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  border-color: var(--fx-primary) !important;
}

.fx-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.listing-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fx-card:hover .listing-img {
  transform: scale(1.05);
}

.fx-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--fx-text);
  margin-top: 0.5rem;
}

.fx-meta {
  font-size: 0.8rem;
  color: var(--fx-muted);
  margin-top: 0.25rem;
}

/* Enhanced Buttons */
.btn {
  border-radius: 8px !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--fx-primary) !important;
  border-color: var(--fx-primary) !important;
}

.btn-primary:hover {
  background: var(--fx-primary-dark) !important;
  border-color: var(--fx-primary-dark) !important;
}

/* Enhanced Badges */
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
}

/* Enhanced Section Headers */
section h5 {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Enhanced Spacing */
.categories-section,
.promo-banner-section {
  border-bottom: 1px solid #e2e8f0;
}

/* Smooth Animations */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Enhanced Loading States */
.fx-listing-carousel {
  min-height: 300px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .category-card {
    min-width: 90px;
    max-width: 100px;
  }
  
  .fx-card-title {
    font-size: 0.9rem;
  }
  
  .listing-img {
    height: 150px;
  }
}

/* Enhanced Visual Hierarchy */
.text-dark {
  color: #1a202c !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Sophisticated background with animated gradient */
body {
  background: linear-gradient(-45deg, #f8fafc, #e2e8f0, #f1f5f9, #e2e8f0);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  min-height: 100vh;
}

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

/* Enhanced glassmorphism effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* Enhanced card designs with glassmorphism */
.fx-card,
.category-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}

/* Enhanced Shadows */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3) !important;
}

/* Enhanced Border Styles */
.border-light {
  border-color: #e2e8f0 !important;
}

/* Enhanced Interactive Elements */
.category-item,
.fx-listing-slide {
  text-decoration: none !important;
}

.category-item:hover,
.fx-listing-slide:hover {
  text-decoration: none !important;
}

/* Enhanced spacing and breathing room */
.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Enhanced section separators with animated gradient */
section {
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fx-primary), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced card hover effects with 3D transform */
.category-card:hover,
.fx-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

/* Enhanced button interactions with magnetic effect */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Enhanced navigation with glassmorphism */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced promotional section */
.promo-banner-section {
  position: relative;
  overflow: hidden;
}

.promo-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(239, 68, 68, 0.1));
  pointer-events: none;
}

/* Enhanced loading states */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Enhanced typography with better readability */
h5 {
  letter-spacing: -0.025em;
  line-height: 1.2;
}

/* Enhanced icon animations */
.category-card:hover .category-icon {
  transform: scale(1.2) rotate(5deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced focus states */
.btn:focus,
.btn:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .category-card:hover,
  .fx-card:hover {
    transform: translateY(-4px);
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
}

/* Enhanced footer styling */
footer {
  margin-top: 3rem !important;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fx-primary), var(--fx-accent), var(--fx-primary));
  animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.hover-primary:hover {
  color: var(--fx-primary) !important;
  transition: color 0.3s ease;
}

/* Enhanced social media icons */
footer .fab {
  transition: all 0.3s ease;
}

footer .fab:hover {
  transform: translateY(-2px);
  color: var(--fx-primary) !important;
}

/* Enhanced app download buttons */
.btn-dark {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d) !important;
  border: none !important;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Enhanced footer links */
footer a {
  position: relative;
  text-decoration: none !important;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fx-primary);
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}

/* Enhanced brand logo */
footer .fa-bolt {
  animation: pulse 2s ease-in-out infinite;
}

/* Enhanced section spacing */
section {
  margin-bottom: 2rem;
}

/* Enhanced loading skeleton for different elements */
.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-button {
  height: 36px;
  width: 100px;
  border-radius: 8px;
}

/* Enhanced mobile optimizations */
@media (max-width: 576px) {
  .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .promo-banner-section {
    margin: 0.5rem;
    padding: 1rem;
  }
  
  footer {
    padding: 2rem 0 !important;
  }
}

/* Enhanced accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--fx-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Enhanced print styles */
@media print {
  .navbar,
  .fx-bottom-nav,
  footer {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .fx-card {
    break-inside: avoid;
  }
}
  --fx-spacing-2xl: 64px;

  /* Typography */
  --fx-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --fx-font-weight-light: 300;
  --fx-font-weight-normal: 400;
  --fx-font-weight-medium: 500;
  --fx-font-weight-semibold: 600;
  --fx-font-weight-bold: 700;
  --fx-font-weight-extrabold: 800;

  /* Modern Transitions */
  --fx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --fx-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --fx-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.has-bottom-nav{
  padding-bottom: 80px;
  font-family: var(--fx-font-family);
  color: var(--fx-text);
  background-color: var(--fx-surface-2);
  line-height: 1.6;
}

/* Modern Hero Section */
.fx-hero{
  background: var(--fx-gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: center;
}


.fx-hero .fx-hero-inner{
  padding: 20px 14px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.fx-hero .fx-title{
  font-weight: var(--fx-font-weight-extrabold);
  font-size: clamp(1.05rem, 3.8vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.fx-hero .fx-sub{
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: var(--fx-font-weight-medium);
  margin-bottom: 24px;
}

/* Modern Search Bar */
.fx-search{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--fx-radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  box-shadow: var(--fx-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--fx-transition);
}

.fx-search:focus-within{
  box-shadow: var(--fx-shadow-xl);
  transform: translateY(-2px);
}

.fx-search input{
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  font-weight: var(--fx-font-weight-medium);
  color: var(--fx-text);
}

.fx-search i{
  font-size: 0.95rem;
  color: rgba(71, 85, 105, 0.9);
}

.fx-search button{
  padding: 6px 12px;
  font-size: 0.8rem;
  line-height: 1.1;
}

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

/* Modern Section Styling */
.fx-sect{
  background: var(--fx-surface);
  border-radius: var(--fx-radius-xl) var(--fx-radius-xl) 0 0;
  box-shadow: var(--fx-shadow-lg);
  margin-top: -16px;
  padding: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .fx-hero{
    min-height: 220px;
  }

  .fx-hero .fx-hero-inner{
    padding: 36px 28px;
    gap: 18px;
  }

  .fx-search{
    gap: 12px;
    padding: 14px 20px;
  }

  .fx-search input{
    font-size: 16px;
  }

  .fx-search button{
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Modern Section Titles */
.fx-section-title{
  font-weight: var(--fx-font-weight-bold);
  color: var(--fx-text);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0 0 24px 0;
  letter-spacing: -0.025em;
}

/* Modern Cards */
.fx-card{
  background: var(--fx-surface);
  border-radius: var(--fx-radius-lg);
  box-shadow: var(--fx-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--fx-transition);
  overflow: hidden;
  position: relative;
}

.fx-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--fx-shadow-xl);
  border-color: rgba(99, 102, 241, 0.2);
}

.fx-card .fx-card-img{
  height: 160px;
  border-radius: var(--fx-radius-md);
  background: var(--fx-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fx-card .fx-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fx-transition);
}

.fx-card:hover .fx-card-img img{
  transform: scale(1.1);
}

.fx-card .fx-card-img::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fx-gradient-primary);
  opacity: 0;
  transition: var(--fx-transition);
}

.fx-card:hover .fx-card-img::after{
  opacity: 0.1;
}

.fx-card-title{
  font-weight: var(--fx-font-weight-semibold);
  font-size: 1rem;
  margin: 16px 0 8px 0;
  color: var(--fx-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
}

.fx-card .fx-meta{
  color: var(--fx-muted);
  font-size: 0.875rem;
  font-weight: var(--fx-font-weight-medium);
  margin-bottom: 16px;
}

/* Modern Buttons */
.btn-modern{
  border-radius: var(--fx-radius-full);
  font-weight: var(--fx-font-weight-semibold);
  padding: 10px 20px;
  border: none;
  transition: var(--fx-transition);
  position: relative;
  overflow: hidden;
}

.btn-modern::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-modern:hover::before{
  left: 100%;
}

/* Modern Categories */
.categories-section{
  background: var(--fx-surface);
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.categories-slider{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories-slider::-webkit-scrollbar{
  display: none;
}

.category-item{
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  transition: var(--fx-transition);
  padding: 0 8px;
}

.category-item:hover{
  transform: translateY(-4px) scale(1.05);
}

.category-icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--fx-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 32px;
  box-shadow: var(--fx-shadow-md);
  transition: var(--fx-transition);
  position: relative;
  overflow: hidden;
}

.category-icon::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s;
  opacity: 0;
}

.category-item:hover .category-icon{
  box-shadow: var(--fx-shadow-lg);
  transform: scale(1.1);
}

.category-item:hover .category-icon::before{
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.category-name{
  font-size: 14px;
  font-weight: var(--fx-font-weight-semibold);
  color: var(--fx-text);
  line-height: 1.3;
  transition: var(--fx-transition);
}

.category-item:hover .category-name{
  color: var(--fx-primary);
}

/* Modern Bottom Navigation */
.fx-bottom-nav{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 12px 20px;
  z-index: 1030;
}

.fx-bottom-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--fx-primary), var(--fx-accent));
  border-radius: 2px;
  margin-top: -2px;
}

.fx-bottom-nav .fx-tabs{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}

.fx-bottom-nav a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 12px;
  min-width: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.fx-bottom-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  pointer-events: none;
}

.fx-bottom-nav a:hover::before {
  opacity: 1;
}

.fx-bottom-nav a:hover {
  transform: translateY(-2px);
  color: var(--fx-primary);
}

.fx-bottom-nav a.active{
  color: var(--fx-primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.fx-bottom-nav a i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.fx-bottom-nav a:hover i {
  transform: scale(1.1);
}

.fx-bottom-nav a.active i {
  transform: scale(1.1);
}

/* Enhanced notification popup for providers */
#fxProviderOrderPopup .alert {
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
}

/* Responsive Design */
@media (min-width: 576px) {
  .category-item {
    width: 110px;
  }
  .category-icon {
    width: 90px;
    height: 90px;
    font-size: 36px;
  }
  .category-name {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .category-item {
    width: 120px;
  }
  .category-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }
  .category-name {
    font-size: 16px;
  }
  .fx-hero .fx-hero-inner {
    padding: 48px 32px;
  }
}

/* Location modal mobile improvements */
#locationModal .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
}

#locationModal .modal-content {
  height: 100vh;
  border-radius: 0;
  border: none;
}

#locationModal .modal-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#locationModal .modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem;
  flex-shrink: 0;
}

#locationModal .btn {
  min-height: 44px;
  font-size: 16px;
  font-weight: 600;
}

/* Mobile location text improvements */
@media (max-width: 576px) {
  #navLocationText {
    font-size: 0.75rem;
  }

  .fx-hero .fx-title {
    font-size: 1.25rem !important;
  }
}

/* Location button improvements */
.btn[data-bs-toggle="modal"][data-bs-target="#locationModal"] {
  transition: all 0.2s ease;
  border-radius: 8px;
}

.btn[data-bs-toggle="modal"][data-bs-target="#locationModal"]:hover {
  background-color: rgba(0, 123, 255, 0.1);
  transform: translateY(-1px);
}

.btn[data-bs-toggle="modal"][data-bs-target="#locationModal"]:active {
  transform: translateY(0);
}

/* Modern Empty States */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--fx-muted);
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: var(--fx-font-weight-semibold);
  margin-bottom: 8px;
  color: var(--fx-text);
}

.empty-state p {
  font-size: 1rem;
  margin-bottom: 24px;
}



