/* ==========================================================================
   EATERIES CSS - Complete Styling for Eateries Directory & Section
   ========================================================================== */

/*
  TABLE OF CONTENTS:
  
  1. EATERIES SECTION (Homepage Component)
     - Main container styling
     - Background decorative elements
     - Header and content layout
  
  2. EATERIES DIRECTORY PAGE
     - Hero section with background image
     - Categories grid with interactive cards
     - Call-to-action section
  
  3. EATERIES GRID (Interactive Restaurant Listings)
     - Grid layout and item styling
     - Filter buttons and animations
     - Hover effects and transitions
  
  4. RESPONSIVE DESIGN
     - Tablet breakpoints (1024px, 768px)
     - Mobile breakpoints (576px, 480px, 375px)
     - Touch device optimizations
  
  5. ANIMATIONS & INTERACTIONS
     - Card hover effects
     - Filter transitions
     - Button animations
*/

/* ==========================================================================
   1. EATERIES SECTION STYLES (Homepage Component)
   ========================================================================== */

/* Main section container with decorative background elements */
.eateries-section {
  padding: var(--spacing-5xl) 0;
  background-color: var(--color-primary-green-light);
  position: relative;
  overflow: hidden; /* Hide decorative overflow elements */
}

/* Decorative circular gradient - top right */
.eateries-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: -250px;
  right: -100px;
  z-index: 1;
}

/* Decorative circular gradient - bottom left */
.eateries-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-yellow-rgb), 0.15) 0%, rgba(var(--color-primary-yellow-rgb), 0) 70%);
  bottom: -200px;
  left: -100px;
  z-index: 1;
}

/* Main content container with proper spacing and z-index */
.eateries-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
  position: relative;
  z-index: 2; /* Above decorative elements */
}

/* Section header with centered layout */
.eateries-header {
  text-align: center;
  margin-bottom: var(--spacing-4xl);
  position: relative;
  padding-bottom: var(--spacing-xl); /* Space between title and content */
  width: 100%;                       /* Ensure full width */
  display: flex;
  flex-direction: column;
  align-items: center;               /* Center all content */
  justify-content: center;
}

/* Mobile responsive styles for eateries header */
@media (max-width: 768px) {
  .eateries-header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-md);
    padding: 0 var(--spacing-md);    /* Add horizontal padding */
  }
}

@media (max-width: 480px) {
  .eateries-header {
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);    /* Less padding on small screens */
    text-align: center;
  }
}

/* ==========================================================================
   2. EATERIES DIRECTORY PAGE STYLES
   ========================================================================== */

/* HERO SECTION - Full-width background image with overlay text */

/* Main hero container with responsive height */
.eateries-hero {
    position: relative;
    min-height: 60vh; /* Consistent with blog template */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000; /* Fallback before image loads */
    margin: 0; /* Remove margin to eliminate white gap */
}

/* Background image container */
.eateries-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Background image with enhanced styling and animation */
.eateries-hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.2) contrast(1.1) brightness(1.05); /* Enhanced vibrancy */
    transform: scale(1.02); /* Slight scale to prevent border gaps */
    transition: transform 12s ease-out;
    animation: heroImageZoom 20s ease-out forwards;
}

/* Subtle zoom animation for hero image */
@keyframes heroImageZoom {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Dark overlay for text readability while preserving image vibrancy */
.eateries-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

/* Content container with proper positioning and spacing */
.eateries-hero__container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Inner content wrapper with max-width constraint */
.eateries-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

/* Main hero title with responsive typography and strong shadows */
.eateries-hero__title {
    font-family: var(--font-family-secondary); /* Source Serif Pro - same as homepage */
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive scaling from 2.5rem to 5rem */
    font-weight: 700; /* Bold weight matching homepage */
    font-variation-settings: 'opsz' 60, 'wght' 700;
    line-height: 1.1; /* Tight line height for impact */
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.98); /* Nearly opaque white */
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.9); /* Strong shadow for visibility */
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0.1em 0; /* Prevent text clipping */
    overflow: visible;
}

/* Decorative tagline wrapper with centered alignment */
.eateries-hero__tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    width: 100%;
}

/* Decorative lines flanking the subtitle */
.eateries-hero__tagline-line {
    height: 1px;
    width: clamp(30px, 5vw, 80px); /* Responsive line width */
    background-color: var(--color-primary-yellow);
}

/* Subtitle with italic styling and responsive typography */
.eateries-hero__subtitle {
    font-family: var(--font-family-accent); /* Source Serif Pro italic */
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-variation-settings: 'opsz' 24, 'wght' 400;
    margin: 0 var(--spacing-md);
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 0.05em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap; /* Prevent wrapping on desktop */
}

/* Hero description with enhanced readability styling */
.eateries-hero__description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    margin-top: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9); /* Strong shadow for readability */
    opacity: 1;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px); /* Modern blur effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    box-sizing: border-box;
}

/* CATEGORIES SECTION - Grid of restaurant category cards */

/* Main categories section with consistent spacing */
.eateries-categories {
    padding: var(--spacing-5xl) 0 var(--spacing-5xl);
    background: var(--color-background);
    margin-top: 0;
    margin-bottom: 0;
}

/* Categories container matching homepage layout */
.eateries-categories__container {
    max-width: 1200px; /* Match homepage container width */
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
}

/* Section header with centered styling */
.eateries-categories__header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

/* Category section title with decorative underline */
.eateries-categories__title {
    font-family: var(--font-family-secondary); /* Match homepage font */
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
}

/* Yellow underline decoration for section title */
.eateries-categories__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary-yellow);
    border-radius: 2px;
}

/* Section description text */
.eateries-categories__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* CATEGORY CARDS GRID - Responsive layout for category cards */

/* Main grid container with flexible layout */
.eateries-categories__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-4xl);
    justify-content: center;
    align-items: stretch; /* Equal height cards */
}

/* Tablet breakpoint adjustments */
/* Desktop/Large tablet responsive layout */
@media (max-width: 1024px) {
  /* Categories grid spacing */
  .eateries-categories__grid {
    gap: var(--spacing-lg);
  }
  
  /* Eateries grid layout for tablets */
  .eateries-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    gap: var(--spacing-md);
    justify-items: stretch;
  }
  
  .eateries-filter {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Tablet responsiveness - maintain icon positioning */
@media (min-width: 768px) and (max-width: 1024px) {
  .eatery-category-card__header {
    min-height: 48px; /* Consistent header height */
  }
  
  .eatery-category-card__icon {
    width: 46px;
    height: 46px;
  }
  
  .eatery-category-card__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .eatery-category-card__title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

/* Small tablet responsive layout */
@media (max-width: 768px) {
  /* Categories grid layout */
  .eateries-categories__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
  }
  .eatery-category-card {
    width: 48vw; /* Two cards per row */
    max-width: 360px;
    min-width: 220px;
    margin-bottom: var(--spacing-md);
  }
  
  /* CTA title responsive adjustments */
  .eateries-cta__title {
    white-space: normal; /* Allow text wrapping on tablets */
    line-height: 1.3;
  }
  
  /* Hero section adjustments */
  .eateries-hero {
    min-height: 60vh; /* Consistent height */
    margin-top: 70px; /* Account for mobile header height */
  }
  
  .eateries-hero__container {
    padding: 0 var(--spacing-lg);
  }
  
  .eateries-hero__content {
    max-width: 100%; /* Full width on tablets */
  }
  
  .eateries-hero__title {
    font-size: clamp(2rem, 10vw, 3.5rem);
    margin-bottom: var(--spacing-md);
  }
  
  .eateries-hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.4rem);
    white-space: normal; /* Allow text wrapping */
    text-align: center;
  }
  
  .eateries-hero__tagline-wrapper {
    margin: var(--spacing-md) 0;
    flex-wrap: wrap;
  }
  
  .eateries-hero__tagline-line {
    width: clamp(20px, 4vw, 60px);
  }
  
  .eateries-hero__description {
    max-width: 100%;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1rem;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Categories section adjustments */
  .eateries-categories__container {
    padding: 0 var(--spacing-lg);
  }
  
  .eateries-categories__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
  }
  
  /* Category card adjustments for tablets */
  .eatery-category-card {
    height: 300px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .eatery-category-card__content {
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
  }
  
  .eatery-category-card__header {
    flex-direction: row; /* Keep horizontal layout */
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .eatery-category-card__title-wrapper {
    flex: 1;
    margin-right: 0;
  }
  
  .eatery-category-card__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }
  
  .eatery-category-card__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .eatery-category-card__description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
  }
  
  .eatery-category-card__count {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* CTA section adjustments */
  .eateries-cta__container {
    padding: 0 var(--spacing-lg) var(--spacing-4xl) var(--spacing-lg);
  }
  
  .eateries-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: var(--spacing-md);
  }
  
  .eateries-cta__button {
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Eateries grid and filter adjustments */
  .eateries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    justify-items: stretch;
  }
  
  .eateries-filter-button {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
  }
  
  .eateries-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}

/* Mobile single-column layout */
/* Mobile single-column layout */
@media (max-width: 576px) {
  /* Categories grid layout */
  .eateries-categories__grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
  }
  .eatery-category-card {
    width: 100%; /* Full width on mobile */
    max-width: 100%;
    margin-bottom: var(--spacing-lg);
  }
  
  /* Category card content adjustments */
  .eatery-category-card__content {
    padding-top: calc(var(--spacing-lg) + 5px); /* Extra padding for icon */
  }
  
  /* Eateries grid mobile layout */
  .eateries-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: var(--spacing-lg);
    justify-items: stretch;
  }
  
  .eateries-item {
    width: 100%;
    max-width: 400px; /* Prevent cards from getting too wide */
  }
  
  .eateries-title {
    font-size: var(--font-size-lg);
  }
  
  .eateries-description-text {
    font-size: var(--font-size-sm);
  }
  
  /* Make card details always visible on mobile */
  .eateries-details {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-md);
  }
  
  /* Better tap targets on mobile */
  .eateries-overlay {
    opacity: 0.7;
  }
  
  /* Mobile: Always show description and links */
  .eateries-item .eateries-description-text {
    opacity: 1;
    max-height: 80px;
    transform: translateY(0);
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }
  
  .eateries-links {
    opacity: 1;
    transform: translateY(0);
    margin-top: var(--spacing-sm);
  }
  
  /* Button optimizations */
  .eateries-button {
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
  }
  
  .eateries-button-container {
    margin-top: var(--spacing-2xl);
  }
  
  .eateries-header h2 {
    font-size: 1.75rem;
  }
  
  .eateries-section {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
  }
  
  .eateries-container {
    padding: 0 var(--spacing-md);
  }
}

/* Remove duplicate media queries (consolidated above) */

/* CATEGORY CARDS - Interactive cards with background images and content overlays */

/* Main category card styling with hover animations */
.eatery-category-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bounce effect */
    border: 1px solid var(--color-border);
    cursor: pointer;
    height: 320px; /* Fixed height for consistency */
    width: 100%;
    max-width: 340px; /* Max width for horizontal layout */
    transform: translateY(0);
}

/* Card hover effects */
.eatery-category-card:hover {
    transform: translateY(-12px); /* Lift effect */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.eatery-category-card:hover .eatery-category-card__image {
    transform: scale(1.08); /* Image zoom on hover */
}

.eatery-category-card:hover .eatery-category-card__overlay {
    opacity: 0.7; /* Darken overlay on hover */
}

.eatery-category-card:hover .eatery-category-card__content {
    transform: translateY(-5px); /* Content lift on hover */
}

/* Background image container for category cards */
.eatery-category-card__image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Background image with smooth transitions */
.eatery-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Gradient overlay for text readability */
.eatery-category-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Card content container positioned at bottom */
.eatery-category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Ensure content isn't clipped */
}

/* Mobile-specific content adjustments for better icon positioning */
/* Card header with title and icon layout */
.eatery-category-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: visible;
}

/* Category icon with glassmorphism effect */
.eatery-category-card__icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-primary-yellow);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    top: 0;
    overflow: hidden;
}

/* SVG icon styling within category icon - consistent sizing */
.eatery-category-card__icon svg {
    width: 24px; /* Fixed size for consistency */
    height: 24px;
    color: currentColor;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* Icon hover effect - yellow background with dark text */
.eatery-category-card:hover .eatery-category-card__icon {
    background: var(--color-primary-yellow);
    color: var(--color-text-primary);
    transform: scale(1.1);
    border-color: var(--color-primary-yellow);
}

/* Title wrapper for proper flex layout */
.eatery-category-card__title-wrapper {
    flex: 1;
    margin-right: var(--spacing-md);
}

/* Category card title styling */
.eatery-category-card__title {
    font-family: var(--font-family-secondary);
    font-size: 1.75rem;
    color: white;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word; /* Allow breaking of long words */
    overflow-wrap: break-word; /* Modern browsers */
    hyphens: auto; /* Add hyphens for better breaking */
}

/* Category description text */
.eatery-category-card__description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Statistics section for category cards */
.eatery-category-card__stats {
    margin-bottom: var(--spacing-lg);
}

/* Restaurant count badge with glassmorphism */
.eatery-category-card__count {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* "View All" link with animated underline */
.eatery-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animated underline effect */
.eatery-category-card__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-yellow);
    transition: width 0.3s ease;
}

/* Link hover effects */
.eatery-category-card:hover .eatery-category-card__link::after {
    width: 100%; /* Full underline on hover */
}

.eatery-category-card__link:hover {
    color: white;
    transform: translateX(4px); /* Slide effect */
}

/* TOUCH DEVICE OPTIMIZATIONS - Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
    .eatery-category-card:hover {
        transform: none; /* Disable hover transforms */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Reset to default shadow */
    }
    
    .eatery-category-card:hover .eatery-category-card__image {
        transform: none; /* Disable image zoom */
    }
    
    .eatery-category-card:hover .eatery-category-card__overlay {
        opacity: 0.6; /* Reset to default opacity */
    }
    
    .eatery-category-card:hover .eatery-category-card__content {
        transform: none; /* Disable content transform */
    }
    
    .eatery-category-card:hover .eatery-category-card__icon {
        transform: none; /* Disable icon transform */
    }
    
    /* Active states for better touch feedback */
    .eatery-category-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .eatery-category-card__link:active {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        padding: 2px 4px;
        margin: -2px -4px;
    }
}

/* CALL TO ACTION SECTION - Bottom section with action buttons */

/* CTA section with gradient background */
.eateries-cta {
    background: linear-gradient(135deg, 
        var(--color-primary-green-light) 0%, 
        var(--color-primary-green) 50%, 
        var(--color-primary-green-dark) 100%);
    padding: var(--spacing-5xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* CTA container with centered layout */
.eateries-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl) var(--spacing-4xl) var(--spacing-xl);
    position: relative;
    z-index: 2;
}

/* CTA content wrapper with max-width constraint */
.eateries-cta__content {
    max-width: 700px;
    margin: 0 auto;
}

/* CTA section title with decorative underline */
.eateries-cta__title {
    font-family: var(--font-family-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    line-height: 1.2;
    white-space: nowrap; /* Prevent wrapping on desktop */
    text-align: center;
}

/* Yellow underline decoration for CTA title */
.eateries-cta__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary-yellow);
    border-radius: 2px;
}

/* CTA description text */
.eateries-cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-4xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Button container with flexible layout */
.eateries-cta__buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* CTA BUTTONS - Styled action buttons with animations */

/* Base button styling with glassmorphism and animations */
.eateries-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth bounce effect */
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Shine effect animation for buttons */
.eateries-cta__button::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.6s ease;
    z-index: 0;
}

.eateries-cta__button:hover::before {
    left: 100%; /* Shine animation on hover */
}

/* Button text positioning above shine effect */
.eateries-cta__button span {
    position: relative;
    z-index: 1;
}

/* Primary button styling (yellow) */
.eateries-cta__button--primary {
    background: var(--color-primary-yellow);
    color: var(--color-text-primary);
    border-color: var(--color-primary-yellow);
}

.eateries-cta__button--primary:hover {
    background: var(--color-white);
    color: var(--color-primary-green-dark);
    border-color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Secondary button styling (transparent with glassmorphism) */
.eateries-cta__button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.eateries-cta__button--secondary:hover {
    background: var(--color-white);
    color: var(--color-primary-green-dark);
    border-color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   3. RESPONSIVE DESIGN - Tablet and Mobile Breakpoints
   ========================================================================== */

/* MOBILE BREAKPOINT (480px) - Optimizations for small screens */
@media (max-width: 480px) {
    .eateries-hero {
        min-height: 60vh; /* Consistent with blog template */
        margin-top: 60px; /* Adjust for smaller mobile header */
    }
    
    .eateries-hero__container {
        padding: 0 var(--spacing-md);
    }
    
    .eateries-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .eateries-hero__subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        margin: 0 var(--spacing-sm);
    }
    
    .eateries-hero__tagline-wrapper {
        margin: var(--spacing-sm) 0;
    }
    
    .eateries-hero__tagline-line {
        width: clamp(15px, 3vw, 40px);
    }
    
    .eateries-hero__description {
        padding: var(--spacing-sm) var(--spacing-md);
        margin-top: var(--spacing-md);
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Categories section mobile adjustments */
    .eateries-categories__container {
        padding: 0 var(--spacing-md);
    }
    
    .eateries-categories__grid {
        gap: var(--spacing-lg);
    }
    
    /* Category cards optimized for mobile */
    .eatery-category-card {
        height: 280px;
        min-width: unset;
        max-width: 100%;
        margin: 0;
    }
    
    .eatery-category-card__content {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    }
    
    .eatery-category-card__header {
        display: flex; /* Keep flex layout */
        justify-content: space-between; /* Icon stays on right */
        align-items: flex-start; /* Align to top */
        margin-bottom: var(--spacing-sm);
        position: relative;
        min-height: 48px; /* Ensure consistent height */
    }
    
    .eatery-category-card__title-wrapper {
        margin-right: var(--spacing-sm); /* Add space between title and icon */
        flex: 1; /* Take remaining space */
        max-width: calc(100% - 60px); /* Reserve space for icon */
    }
    
    .eatery-category-card__icon {
        width: 44px; /* Consistent size */
        height: 44px;
        font-size: 1.1rem;
        flex-shrink: 0; /* Don't shrink */
        position: relative; /* Remove absolute positioning */
        margin-left: auto; /* Push to right */
    }
    
    .eatery-category-card__title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%; /* Ensure it doesn't overflow */
    }
    
    .eatery-category-card__description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-md);
        color: rgba(255, 255, 255, 0.95); /* Better readability */
    }
    
    .eatery-category-card__count {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .eatery-category-card__link {
        font-size: 0.9rem;
        margin-top: var(--spacing-sm);
        min-height: 44px; /* Better touch target */
        display: flex;
        align-items: center;
    }
    
    /* Reduced hover effects for mobile */
    .eatery-category-card:hover {
        transform: translateY(-6px);
    }
    
    /* CTA section mobile adjustments */
    .eateries-cta__container {
        padding: 0 var(--spacing-md) var(--spacing-4xl) var(--spacing-md);
    }
    
    .eateries-cta__buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }
    
    .eateries-cta__button {
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 2rem;
        min-height: 48px; /* Better touch target */
    }
    
    /* Additional mobile description styling */
    .eateries-hero__description {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-lg);
        margin-top: var(--spacing-lg);
    }
    
    /* Eateries item hover effects */
    .eateries-item:hover .eateries-description-text {
        color: rgba(255, 255, 255, 0.85);
    }
    
    /* Restaurant item specific mobile styling */
    .restaurant-item {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .restaurant-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    
    .restaurant-item__content {
        padding: var(--spacing-md);
    }
    
    .restaurant-item__name {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.3;
    }
    
    .restaurant-item__details {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: var(--spacing-sm);
        line-height: 1.4;
    }
    
    .restaurant-item__description {
        font-size: 0.8rem;
        line-height: 1.3;
        color: rgba(255, 255, 255, 0.9);
    }
}

/* VERY SMALL MOBILE DEVICES (375px) - Ultra-compact optimizations */
@media (max-width: 375px) {
    .eateries-hero {
        min-height: 45vh; /* Smaller on very small screens */
        height: 45vh;
    }
    
    .eateries-hero__container {
        padding: 0 var(--spacing-sm);
    }
    
    .eateries-hero__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--spacing-xs);
    }
    
    .eateries-hero__subtitle {
        font-size: clamp(0.8rem, 3vw, 1rem);
        margin: 0 var(--spacing-xs);
    }
    
    .eateries-hero__description {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
        line-height: 1.4;
        margin-top: var(--spacing-sm);
    }
    
    .eateries-categories__container {
        padding: 0 var(--spacing-sm);
    }
    
    .eatery-category-card {
        height: 260px;
    }
    
    .eatery-category-card__content {
        padding: var(--spacing-md) var(--spacing-sm) var(--spacing-sm);
    }
    
    .eatery-category-card__title {
        font-size: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
        max-width: 100%;
    }
    
    .eatery-category-card__description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .eatery-category-card__icon {
        width: 40px; /* Slightly smaller but consistent ratio */
        height: 40px;
        font-size: 1rem;
    }
    
    .eatery-category-card__icon svg {
        width: 20px; /* Proportionally smaller */
        height: 20px;
    }
    
    .eateries-hero__description {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .eatery-category-card__count {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .eatery-category-card__link {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   4. ANIMATIONS & INTERACTIONS - Scroll animations and motion preferences
   ========================================================================== */

/* SCROLL ANIMATIONS - Category cards fade in on scroll (respects motion preferences) */
@media (prefers-reduced-motion: no-preference) {
    .eatery-category-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    /* Staggered animation delays for smooth sequential appearance */
    .eatery-category-card:nth-child(1) { animation-delay: 0.1s; }
    .eatery-category-card:nth-child(2) { animation-delay: 0.2s; }
    .eatery-category-card:nth-child(3) { animation-delay: 0.3s; }
    .eatery-category-card:nth-child(4) { animation-delay: 0.4s; }
    .eatery-category-card:nth-child(5) { animation-delay: 0.5s; }
    .eatery-category-card:nth-child(6) { animation-delay: 0.6s; }
    
    /* Fade in and slide up animation */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* FOOTER CONNECTION - Ensure seamless connection between sections */
.footer {
    margin-top: 0 !important; /* Remove gap between CTA and footer */
}

/* ==========================================================================
   5. EATERIES GRID SYSTEM - Interactive restaurant listings with filtering
   ========================================================================== */

/* SECTION TITLES AND DESCRIPTIONS */

/* Main section title styling (inherits from global styles with custom colors) */
.eateries-section-title {
  color: var(--color-white); /* White text for dark backgrounds */
  text-align: center;         /* Ensure proper centering */
  width: 100%;               /* Full width for centering */
  margin: 0 auto;            /* Center the element */
}

/* Yellow underline for section headings */
.eateries-section-title::after {
  background: var(--color-primary-yellow) !important;
  left: 50% !important;      /* Center the underline */
  transform: translateX(-50%) !important; /* Perfect centering */
}

/* Mobile responsive styles for eateries title */
@media (max-width: 768px) {
  .eateries-section-title {
    font-size: var(--font-size-lg) !important;
    line-height: 1.25;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .eateries-section-title {
    font-size: var(--font-size-base) !important; /* 16px - same as featured section */
    line-height: 1.3;
    letter-spacing: 0.1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-xs);
  }
  
  .eateries-section-title::after {
    width: 50px !important;
  }
}

@media (max-width: 360px) {
  .eateries-section-title {
    font-size: var(--font-size-sm) !important; /* 14px for very small screens */
    line-height: 1.4;
    letter-spacing: 0.05px;
  }
  
  .eateries-section-title::after {
    width: 35px !important;
  }
}

@media (max-width: 320px) {
  .eateries-section-title {
    font-size: var(--font-size-xs) !important; /* 12px for ultra-small screens */
    line-height: 1.5;
    letter-spacing: 0;
    word-spacing: -1px;
  }
  
  .eateries-section-title::after {
    width: 30px !important;
  }
}

/* Section description with optimized readability */
.eateries-description {
  font-size: var(--font-size-xl);
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Mobile responsive styles for eateries description */
@media (max-width: 768px) {
  .eateries-description {
    font-size: var(--font-size-lg);
    max-width: 90%;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .eateries-description {
    font-size: var(--font-size-base);
    max-width: 95%;
    line-height: 1.4;
    margin-top: var(--spacing-sm);
  }
}

/* FILTER SYSTEM - Interactive category filtering buttons */

/* Filter button container with centered layout */
.eateries-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-sm);
}

/* Individual filter button styling */
.eateries-filter-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  margin: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Filter button hover state */
.eateries-filter-button:hover {
  color: var(--color-white);
  background-color: var(--color-primary-green-dark);
}

/* Active filter button styling */
.eateries-filter-button.active {
  color: var(--color-text-primary);
  background-color: var(--color-primary-yellow);
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 3px 12px rgba(var(--color-primary-yellow-rgb), 0.3);
}

/* ==========================================================================
   EATERIES SHOWCASE - Beautiful CSS-Only Design (No JavaScript)
   ========================================================================== */

/* Main showcase grid with asymmetric layout */
.eateries-showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Featured item takes more space */
  grid-template-rows: 1fr 1fr; /* Two rows */
  gap: var(--spacing-lg, 1.5rem); /* Fallback value */
  margin: var(--spacing-3xl, 3rem) 0; /* Fallback value */
  min-height: 600px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Featured item spans 2 rows */
.eateries-showcase-item--featured {
  grid-row: 1 / 3; /* Spans both rows */
  grid-column: 1; /* First column only */
  min-height: 600px; /* Ensure featured item is tall enough */
}

/* Individual showcase items */
.eateries-showcase-item {
  position: relative;
  border-radius: var(--border-radius-lg, 12px); /* Fallback value */
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: var(--color-white, #ffffff); /* Fallback value */
  min-height: 280px; /* Consistent height for smaller cards */
  height: 100%; /* Fill grid cell */
}

/* Hover effects with smooth overlapping */
.eateries-showcase-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Image styling */
.eateries-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.eateries-showcase-item:hover .eateries-showcase-image {
  transform: scale(1.1);
}

/* Overlay gradient */
.eateries-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0.9) 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
}

.eateries-showcase-item:hover .eateries-showcase-overlay {
  opacity: 1;
}

/* Content styling */
.eateries-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-xl, 2rem); /* Fallback value */
  color: var(--color-white, #ffffff); /* Fallback value */
  transform: translateY(0); /* Always visible */
  transition: transform 0.4s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.eateries-showcase-item:hover .eateries-showcase-content {
  transform: translateY(-8px); /* Slight lift on hover */
}

/* Badge styling */
.eateries-showcase-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-primary-yellow);
  text-shadow: none;
}

/* Title styling */
.eateries-showcase-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 1);
  color: var(--color-white);
}

.eateries-showcase-item--featured .eateries-showcase-title {
  font-size: var(--font-size-2xl);
}

/* Location styling */
.eateries-showcase-location {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin: 0 0 var(--spacing-sm) 0;
  font-weight: 500;
  color: var(--color-primary-yellow);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Description styling */
.eateries-showcase-description {
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin: 0 0 var(--spacing-lg) 0;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.eateries-showcase-item--featured .eateries-showcase-description {
  font-size: var(--font-size-lg);
}

/* Link styling */
.eateries-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-primary-yellow);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-primary-yellow);
  transition: all 0.3s ease;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.eateries-showcase-link:hover {
  background: var(--color-white);
  color: var(--color-primary-green);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.eateries-showcase-link svg {
  transition: transform 0.3s ease;
}

.eateries-showcase-link:hover svg {
  transform: translateX(3px);
}

/* Call to action section */
.eateries-showcase-cta {
  text-align: center;
  margin-top: var(--spacing-3xl);
}

.eateries-showcase-cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-primary-green) 0%, var(--color-secondary-green) 100%);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-lg);
  border-radius: var(--border-radius-full);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.eateries-showcase-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 90, 39, 0.4);
  background: linear-gradient(135deg, var(--color-secondary-green) 0%, var(--color-primary-yellow) 100%);
}

.eateries-showcase-cta-button svg {
  transition: transform 0.3s ease;
}

.eateries-showcase-cta-button:hover svg {
  transform: translateX(5px);
}

/* Responsive design */
@media (max-width: 1024px) {
  .eateries-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--spacing-md);
    min-height: auto;
  }
  
  .eateries-showcase-item--featured {
    grid-row: 1;
    grid-column: 1 / 3; /* Spans both columns */
    min-height: 350px;
  }
  
  .eateries-showcase-item {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .eateries-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--spacing-lg);
    min-height: auto;
  }
  
  .eateries-showcase-item--featured {
    grid-column: 1;
    grid-row: auto;
    min-height: 350px;
  }
  
  .eateries-showcase-item {
    min-height: 300px;
  }
  
  .eateries-showcase-content {
    padding: var(--spacing-lg);
  }
  
  .eateries-showcase-title {
    font-size: var(--font-size-lg);
  }
  
  .eateries-showcase-item--featured .eateries-showcase-title {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 480px) {
  .eateries-showcase-content {
    padding: var(--spacing-md);
  }
  
  .eateries-showcase-cta-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
  }
}

/* ==========================================================================
   END OF EATERIES SHOWCASE CSS
   ========================================================================== */

/* ==========================================================================
   END OF EATERIES CSS
   ========================================================================== */

/*
  SUMMARY:
  This CSS file provides complete styling for the eateries section and directory pages,
  including:
  
  - Homepage eateries showcase section with asymmetric grid layout
  - Directory page hero section with background image animations
  - Interactive category cards with hover effects and glassmorphism
  - Beautiful CSS-only showcase cards with overlapping hover effects
  - Comprehensive responsive design for all device sizes
  - Touch device optimizations and accessibility considerations
  - Smooth animations and transitions throughout
  
  Key Features:
  - No JavaScript dependencies for reliable functionality
  - Consistent design language with the rest of the site
  - Performance-optimized animations and transitions
  - Accessibility-first approach with proper contrast and touch targets
  - Mobile-first responsive design philosophy
  - Comprehensive commenting for easy maintenance and updates
*/
