/* Orekonect - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors - Deep Emerald */
    --primary: #1E5631;
    --primary-light: #2E7D49;
    --primary-dark: #0F3820;
    --primary-gradient: linear-gradient(135deg, #1E5631 0%, #2E7D49 50%, #3A9655 100%);
    
    /* Accent Colors - Warm Gold & Burnt Orange */
    --accent: #C9A863;
    --accent-light: #E8B176;
    --accent-dark: #C15536;
    
    /* Neutral Colors - Ivory/Cream Background */
    --white: #FFFFFF;
    --off-white: #FFFBF0;
    --cream: #F9F7F4;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F4;
    --gray-200: #E8EAED;
    --gray-300: #DADCE0;
    --gray-400: #BDC1C6;
    --gray-500: #9AA0A6;
    --gray-600: #80868B;
    --gray-700: #5F6368;
    --gray-800: #3C4043;
    --gray-900: #202124;
    --black: #0A0A0A;
    
    /* Semantic Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 8px 30px rgba(30, 86, 49, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* 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-body);
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.3px;
    color: var(--gray-800);
    background: var(--off-white);
    min-height: 100vh;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.8px;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

h1 { 
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -1px;
}
h2 { 
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.8px;
}
h3 { 
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
}
h4 { 
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 600;
}

p {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
    letter-spacing: 0.3px;
    font-weight: 400;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4A7C59 0%, #5A8E6B 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
    font-weight: bold;
}

.logo:hover .logo-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.35);
}

.logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #4A7C59;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #4A7C59 0%, #2D5A3D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text span {
    color: #4A7C59;
    -webkit-text-fill-color: #4A7C59;
    font-weight: 900;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    margin: 0 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition-fast);
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    color: var(--gray-900);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.cart-btn.active {
    background: rgba(0, 0, 0, 0.08);
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #E8773F;
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(232, 119, 63, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--gray-800);
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
        transform-origin: center;
    }

/* Mobile header adjustments */
@media (max-width: 768px) {
    .header-content {
        gap: 0;
        justify-content: flex-end;
    }
    
    .header-content .logo {
        flex: 1;
        margin-right: auto;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-200);
        padding: 16px;
        margin: 0;
        display: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 8px;
        font-size: 15px;
    }
    
    .cart-btn {
        width: 36px;
        height: 36px;
    }
    
    .cart-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-btn {
        display: flex;
        margin-left: 4px;
        background: transparent;
        border: 1.5px solid var(--primary);
        padding: 8px 10px;
        border-radius: var(--radius-lg);
        cursor: pointer;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--primary);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--primary);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 800px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay--primary {
    background: rgba(13, 51, 17, 0.48);
}

.hero-overlay--gradient {
    background: linear-gradient(
        to right,
        rgba(13, 51, 17, 0.65) 0%,
        rgba(13, 51, 17, 0.58) 15%,
        rgba(13, 51, 17, 0.48) 35%,
        rgba(13, 51, 17, 0.35) 60%,
        rgba(13, 51, 17, 0.22) 85%,
        rgba(13, 51, 17, 0.15) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: var(--space-2xl);
}

.hero-text {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: white;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    font-weight: 700;
    min-height: 8rem;
    width: 100%;
    overflow: visible;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
}

.hero-title .highlight {
    color: #FFD54F;
    position: relative;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
    font-weight: 900;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.35) 0%, rgba(255, 193, 7, 0.15) 100%);
    z-index: -1;
    border-radius: 2px;
}

/* Rotating Text Animation */
.rotating-text {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    min-height: 10rem;
    overflow: hidden;
    padding: 0;
}

.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: block;
    }
}

.rotating-text-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    pointer-events: none;
}

.rotating-text-item.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(30, 86, 49, 0.15);
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    gap: var(--space-md);
}

.stat-card {
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 86, 49, 0.12);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 86, 49, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--gray-900);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}

.btn-ghost:hover {
    background: var(--gray-100);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* Section */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(74, 124, 89, 0.12);
    color: #4A7C59;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.section-title {
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A7C59;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 1.5px;
    word-spacing: 8px;
    text-shadow: 0 2px 8px rgba(74, 124, 89, 0.15);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Restaurant Cards */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-xl);
}

.restaurant-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(30, 86, 49, 0.12);
    border-color: rgba(30, 86, 49, 0.2);
}

.restaurant-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.08);
}

.restaurant-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.2);
}

.restaurant-rating {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.restaurant-rating svg {
    color: var(--accent);
}

.restaurant-tag {
    position: absolute;
    top: var(--space-md);
    right: 70px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb300 100%);
    color: var(--gray-900);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.restaurant-content {
    padding: var(--space-lg);
}

.restaurant-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 8px;
    transition: all var(--transition-fast);
}

.restaurant-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 193, 7, 0.3) 100%);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.restaurant-card:hover .restaurant-name {
    letter-spacing: 0px;
}

.restaurant-card:hover .restaurant-name::after {
    width: 80px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.restaurant-description {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.restaurant-categories {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.restaurant-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 13px;
    color: var(--gray-500);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.restaurant-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

/* Menu Section Title */
.menu-section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 193, 7, 0.3) 100%);
    border-radius: 2px;
}

/* Food Search Bar */
.food-search-wrapper {
    margin-bottom: var(--space-2xl);
    position: relative;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.03) 0%, rgba(255, 193, 7, 0.02) 100%);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(27, 94, 32, 0.08);
}

.food-search-container {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0 var(--space-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.08);
    overflow: hidden;
}

/* Premium focus state with animated border effect */
.food-search-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width var(--transition-base);
    z-index: 1;
}

.food-search-container:focus-within::before {
    width: 100%;
}

.food-search-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(27, 94, 32, 0.2);
}

.food-search-icon {
    color: var(--gray-500);
    flex-shrink: 0;
    margin-right: var(--space-md);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
}

.food-search-container:focus-within .food-search-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.food-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 16px 0;
    font-family: var(--font-body);
    color: var(--gray-800);
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.food-search-input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.food-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.08), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(27, 94, 32, 0.12);
    cursor: pointer;
    padding: 8px;
    margin-left: var(--space-sm);
    color: var(--gray-500);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.food-search-clear:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.food-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--space-lg);
    right: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(27, 94, 32, 0.15);
    animation: slideDown var(--transition-base) ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.food-search-result-item {
    padding: 12px var(--space-lg);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.food-search-result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.food-search-result-item:hover::before {
    opacity: 1;
}

.food-search-result-item:last-child {
    border-bottom: none;
}

.food-search-result-item:hover {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(255, 193, 7, 0.03));
}

.food-search-result-image {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.food-search-result-item:hover .food-search-result-image {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.15);
}

.food-search-result-content {
    flex: 1;
    min-width: 0;
}

.food-search-result-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.food-search-result-info {
    font-size: 12px;
    color: var(--gray-600);
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

/* Food Cards */
.foods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.food-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    cursor: pointer;
}

.food-card:hover {
    box-shadow: 0 12px 28px rgba(30, 86, 49, 0.1);
    transform: translateY(-4px);
    border-color: rgba(30, 86, 49, 0.2);
}

.food-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.food-card:hover .food-image img {
    transform: scale(1.05);
}

.food-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 6px 12px;
    background: rgba(30, 86, 49, 0.85);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.food-tag {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb300 100%);
    color: var(--gray-900);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.food-content {
    padding: var(--space-md);
}

.food-name {
    font-size: 1.1rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    transition: all var(--transition-fast);
}

.food-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 193, 7, 0.3) 100%);
    border-radius: 1px;
    transition: all var(--transition-base);
}

.food-card:hover .food-name {
    letter-spacing: 0px;
}

.food-card:hover .food-name::after {
    width: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}

.food-description {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.food-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.food-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.food-price small {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.add-to-cart-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Food Details Modal */
.food-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.food-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.food-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.food-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-900);
    z-index: 1;
}

.food-modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.food-modal-close-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-500);
    z-index: 1;
    padding: 0;
}

.food-modal-close-icon:hover {
    color: var(--gray-900);
    transform: rotate(90deg);
}

.food-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.food-modal-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
}

.food-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-modal-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.modal-food-name {
    font-size: 1.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    order: 2;
}

.modal-food-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    order: 3;
}

.modal-info-tag {
    padding: 6px 12px;
    background: rgba(30, 86, 49, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-food-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: auto;
}

.modal-food-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin: 0;
    order: 4;
}

.modal-divider {
    height: 1px;
    background: var(--gray-200);
    margin: var(--space-md) 0;
    order: 5;
}

.modal-quantity-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    order: 6;
}

.quantity-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 4px;
    width: fit-content;
}

.quantity-decrease,
.quantity-increase {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-decrease:hover,
.quantity-increase:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.quantity-input {
    width: 50px;
    height: 36px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.quantity-input:focus {
    outline: none;
}

.modal-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    order: 1;
    margin-bottom: var(--space-md);
    width: 100%;
}

.modal-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.modal-add-to-cart:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Modal */
@media (max-width: 640px) {
    .food-modal-body {
        grid-template-columns: 1fr;
        padding: var(--space-md);
    }
    
    .food-modal-image {
        height: 240px;
    }
    
    .modal-food-name {
        font-size: 1.5rem;
    }

    .modal-add-to-cart {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Restaurants Section */
.restaurants-section {
    margin-top: var(--space-4xl);
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, #F9F7F4 0%, #FFFFFF 100%);
}

.restaurants-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xxl);
}

.restaurants-filters {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-xxl);
    scroll-behavior: smooth;
}

.restaurants-filters::-webkit-scrollbar {
    height: 4px;
}

.restaurants-filters::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: var(--radius-full);
}

.restaurants-filters::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

.filter-btn {
    white-space: nowrap;
    padding: 10px 24px;
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.2);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

/* Skeleton Loader */
.skeleton-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    animation: shimmer 2s infinite;
}

.skeleton-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-content {
    padding: var(--space-lg);
}

.skeleton-title {
    height: 20px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    animation: loading 1.5s infinite;
}

.skeleton-text {
    height: 14px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    animation: loading 1.5s infinite;
}

.skeleton-text:last-child {
    margin-bottom: 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.restaurants-footer {
    display: flex;
    justify-content: center;
    margin-top: var(--space-xxl);
}

.explore-all-btn {
    padding: 14px 42px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.2);
}

.explore-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 86, 49, 0.3);
}

.explore-all-btn:active {
    transform: translateY(0);
}

/* Restaurants Footer */
.restaurants-footer {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: 56px 48px;
    margin-top: 32px;
    background: linear-gradient(135deg, var(--white) 0%, #F9F7F4 100%);
    border: 1px solid rgba(30, 86, 49, 0.12);
    border-radius: 32px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.restaurants-footer:hover {
    border-color: rgba(30, 86, 49, 0.2);
    box-shadow: 0 20px 60px rgba(30, 86, 49, 0.08);
}

.footer-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xxl);
    align-items: center;
    z-index: 2;
    position: relative;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-text .footer-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.footer-stats {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(30, 86, 49, 0.05);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
}

.footer-stat .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.footer-stat .stat-text {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.footer-btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.2);
}

.footer-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 86, 49, 0.3);
}

.footer-btn--primary:active {
    transform: translateY(0);
}

.footer-btn--secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.08);
}

.footer-btn--secondary:hover {
    background: rgba(30, 86, 49, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.12);
}

.footer-btn--secondary:active {
    transform: translateY(0);
}

.footer-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.accent-circle {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.accent-circle--1 {
    width: 280px;
    height: 280px;
    background: var(--primary);
    animation: float 8s ease-in-out infinite;
}

.accent-circle--2 {
    width: 180px;
    height: 180px;
    background: var(--accent);
    animation: float 6s ease-in-out infinite reverse;
}

.accent-icon {
    font-size: 80px;
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .restaurants-footer {
        padding: 48px 36px;
        gap: var(--space-lg);
        border-radius: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-accent {
        width: 200px;
        height: 200px;
        opacity: 0.05;
    }

    .accent-circle--1 {
        width: 200px;
        height: 200px;
    }

    .accent-circle--2 {
        width: 120px;
        height: 120px;
    }

    .accent-icon {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .restaurants-footer {
        padding: 32px 24px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-actions {
        flex-direction: column;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-text .footer-title {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .footer-stats {
        gap: var(--space-md);
    }

    .footer-accent {
        position: relative;
        width: 150px;
        height: 150px;
        opacity: 0.05;
        margin-top: var(--space-lg);
    }

    .menu-section-title {
        font-size: 2rem;
        margin-bottom: var(--space-xl);
    }

    .menu-section-title::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .restaurants-footer {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .footer-text .footer-title {
        font-size: 1.25rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .footer-stat {
        padding: 10px 12px;
    }

    .footer-stat .stat-value {
        font-size: 1rem;
    }

    .footer-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .accent-icon {
        font-size: 40px;
    }

    .menu-section-title {
        font-size: 1.75rem;
        margin-bottom: var(--space-lg);
    }

    .menu-section-title::after {
        width: 40px;
        bottom: -6px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: var(--primary-gradient);
    padding: 100px 0;
    overflow: hidden;
}

.cta-accent-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-accent-shape {
    position: absolute;
    opacity: 0.08;
    border-radius: 50%;
}

.cta-accent-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
    background: var(--white);
    animation: float 8s ease-in-out infinite;
}

.cta-accent-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

.badge-icon {
    font-size: 14px;
}

.badge-text {
    letter-spacing: 0.5px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    animation: slideDown 0.8s ease-out 0.1s backwards;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    animation: slideDown 0.8s ease-out 0.2s backwards;
}

.cta-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    margin: 32px auto;
    animation: scaleWidth 0.8s ease-out 0.3s backwards;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn--primary {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #1B5E20;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.25);
}

.cta-btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.35);
}

.cta-btn--primary:active {
    transform: translateY(-2px);
}

.cta-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.cta-btn--secondary:active {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition-base);
}

.cta-btn--primary:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-value {
    font-size: 18px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleWidth {
    from {
        width: 0;
    }
    to {
        width: 40px;
    }
}

/* CTA Section Responsive */
@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-trust {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .cta-actions {
        margin-bottom: 32px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .cta-trust {
        gap: 20px;
        padding: 20px;
    }
    
    .trust-value {
        font-size: 16px;
    }
    
    .trust-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }
    
    .cta-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .cta-divider {
        margin: 24px auto;
    }
    
    .cta-actions {
        margin-bottom: 24px;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 14px;
        gap: 8px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .cta-trust {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }
    
    .trust-divider {
        width: 1px;
        height: 30px;
    }
    
    .trust-value {
        font-size: 14px;
    }
    
    .trust-label {
        font-size: 10px;
    }
    
    .cta-accent-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -30px;
    }
    
    .cta-accent-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }
}

/* Cart Page */
.cart-page-container {
    padding: 32px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8faf9 0%, var(--off-white) 100%);
}

.cart-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

.page-header {
    grid-column: 1 / -1;
    margin-bottom: 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.08) 0%, rgba(90, 142, 107, 0.04) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(74, 124, 89, 0.1);
    box-shadow: 0 2px 12px rgba(74, 124, 89, 0.08);
}

.page-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #4A7C59;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(74, 124, 89, 0.1);
}

.cart-item-count {
    color: #666;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cart-page-items {
    grid-column: 1;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-empty-page {
    text-align: center;
    padding: 60px 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-empty-page svg {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    color: var(--gray-300);
}

.cart-empty-page h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gray-800);
    font-weight: 600;
}

.cart-empty-page p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.cart-page-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    border-left: 4px solid var(--primary);
}

.cart-page-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cart-page-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.cart-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page-item-content {
    min-width: 0;
}

.cart-page-item-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-page-item-restaurant {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.cart-page-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.cart-page-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cart-page-item-total {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    white-space: nowrap;
    min-width: 120px;
    text-align: right;
}

.cart-page-item-delete {
    color: var(--error);
    opacity: 0.7;
    transition: all 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(244, 67, 54, 0.1);
}

.cart-page-item-delete:hover {
    opacity: 1;
    background: var(--error);
    color: var(--white);
    transform: scale(1.1);
}

.cart-page-summary {
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: 120px;
}

.cart-summary-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--primary);
}

.cart-summary-card h2 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--gray-900);
    font-weight: 700;
}

.summary-content {
    margin-bottom: 24px;
}

.btn-full {
    width: 100%;
    margin-bottom: 12px;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 86, 49, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header--centered {
    text-align: center;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
    align-items: flex-start;
    position: relative;
}

.timeline-step[data-step="2"] {
    margin-left: 0;
}

.timeline-step[data-step="3"] {
    margin-left: 0;
}

.step-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(30, 86, 49, 0.2);
    transition: all var(--transition-base);
}

.step-pulse {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(30, 86, 49, 0.1);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}

.timeline-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(30, 86, 49, 0.3);
}

.step-content {
    display: flex;
    gap: var(--space-xl);
}

.step-icon-wrapper {
    flex-shrink: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 86, 49, 0.08);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-base);
}

.timeline-step:hover .step-icon {
    background: rgba(30, 86, 49, 0.12);
    transform: translateY(-4px);
}

.step-text {
    flex: 1;
    padding-top: var(--space-md);
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: #4A7C59;
    font-family: 'Playfair Display', 'Georgia', serif;
    letter-spacing: 1.2px;
    text-shadow: 0 1.5px 6px rgba(74, 124, 89, 0.12);
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-connector {
    position: absolute;
    left: 60px;
    top: 100px;
    width: 2px;
    height: calc(100% - 100px);
    transform: translateX(-50%);
    z-index: 1;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(30, 86, 49, 0.2) 100%);
    border-radius: 1px;
}

/* Process Stats */
.process-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.04) 0%, rgba(30, 86, 49, 0.02) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(30, 86, 49, 0.1);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
}

.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-divider {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-step {
        grid-template-columns: 65px 1fr;
        gap: var(--space-lg);
        margin-bottom: var(--space-2xl);
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
        box-shadow: 0 6px 16px rgba(30, 86, 49, 0.15);
    }

    .step-pulse {
        width: 56px;
        height: 56px;
    }

    @keyframes pulse-ring {
        0% {
            width: 56px;
            height: 56px;
            opacity: 1;
        }
        100% {
            width: 105px;
            height: 105px;
            opacity: 0;
        }
    }

    .step-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .step-icon svg {
        width: 26px;
        height: 26px;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .timeline-connector {
        left: 32px;
    }

    .process-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }

    .stat-divider {
        display: block;
        height: 1px;
        background: rgba(30, 86, 49, 0.2);
        margin: var(--space-sm) 0;
    }

    .how-it-works::before {
        width: 300px;
        height: 300px;
        right: -30%;
    }
}

@media (max-width: 480px) {
    .timeline-step {
        grid-template-columns: 50px 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        box-shadow: 0 4px 12px rgba(30, 86, 49, 0.15);
    }

    .step-pulse {
        width: 48px;
        height: 48px;
    }

    @keyframes pulse-ring {
        0% {
            width: 48px;
            height: 48px;
            opacity: 1;
        }
        100% {
            width: 100px;
            height: 100px;
            opacity: 0;
        }
    }

    .step-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .step-icon svg {
        width: 22px;
        height: 22px;
    }

    .step-content {
        gap: var(--space-sm);
    }

    .step-text {
        padding-top: 0;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .step-features {
        gap: 4px;
    }

    .step-features li {
        font-size: 0.8rem;
        font-weight: 400;
    }

    .feature-dot {
        width: 4px;
        height: 4px;
    }

    .timeline-connector {
        left: 24px;
    }

    .how-it-works::before {
        width: 200px;
        height: 200px;
        right: -40%;
    }
}

/* Extra small screens (360px and below) */
@media (max-width: 360px) {
    .timeline-step {
        grid-template-columns: 44px 1fr;
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(30, 86, 49, 0.1);
    }

    .step-pulse {
        width: 44px;
        height: 44px;
    }

    @keyframes pulse-ring {
        0% {
            width: 44px;
            height: 44px;
            opacity: 1;
        }
        100% {
            width: 90px;
            height: 90px;
            opacity: 0;
        }
    }

    .step-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .step-icon svg {
        width: 20px;
        height: 20px;
    }

    .step-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .step-description {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.35;
    }

    .step-features {
        gap: 3px;
    }

    .step-features li {
        font-size: 0.75rem;
    }

    .timeline-connector {
        left: 22px;
    }

    .how-it-works::before {
        width: 150px;
        height: 150px;
        right: -50%;
    }

    .process-stats {
        padding: var(--space-md);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .cart-page-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cart-page-summary {
        grid-column: 1;
        position: static;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .cart-page-container {
        padding: 20px 0;
    }
    
    .cart-page-content {
        padding: 0 16px;
        gap: 20px;
    }
    
    .page-header {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .cart-page-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .cart-page-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--gray-200);
    }
    
    .cart-page-item-total {
        order: 2;
    }
    
    .cart-page-item-delete {
        order: 3;
    }
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 4px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    color: var(--error);
    font-size: 13px;
    margin-top: var(--space-sm);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    opacity: 1;
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cart-summary {
    margin-bottom: var(--space-lg);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 14px;
    color: var(--gray-600);
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-300);
    margin-top: var(--space-md);
}

.cart-summary-row.total span:last-child {
    color: var(--primary);
}

/* Checkout Form */
.checkout-page {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
    background: var(--off-white);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-xl);
    align-items: start;
}

.checkout-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.checkout-form-title {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-label .required {
    color: var(--error);
    font-weight: 700;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: 15px;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-900);
    font-family: var(--font-body);
}

.form-input:hover {
    border-color: var(--gray-400);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.15);
    background: rgba(30, 86, 49, 0.02);
}

.form-input::placeholder {
    color: var(--gray-400);
}

textarea.form-input {
    min-height: 100px;
    resize: vertical;
    font-family: var(--font-body);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B5E20' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    color: var(--gray-800);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    border-radius: 4px;
}

.form-checkbox input[type="checkbox"]:hover {
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.15);
}

.order-summary-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.order-summary-title {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.order-summary-items {
    margin-bottom: var(--space-lg);
    max-height: 300px;
    overflow-y: auto;
}

.order-summary-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-summary-item:last-child {
    border-bottom: none;
}

.order-summary-item-name {
    font-size: 14px;
}

.order-summary-item-qty {
    color: var(--gray-500);
    font-size: 13px;
}

.order-summary-item-price {
    font-weight: 600;
    white-space: nowrap;
}

.checkout-actions {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checkout-actions .btn {
    width: 100%;
    justify-content: center;
}

.call-to-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px;
    background: var(--gray-100);
    color: var(--gray-800);
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: var(--transition-fast);
}

.call-to-order:hover {
    background: var(--gray-200);
}

/* Receipt Page */
.receipt-page {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
    background: var(--off-white);
}

.receipt-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.receipt-header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: var(--space-xl);
    text-align: center;
}

.receipt-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 40px;
}

.receipt-header h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.receipt-header p {
    color: rgba(255, 255, 255, 0.9);
}

.receipt-body {
    padding: var(--space-xl);
}

.receipt-order-number {
    text-align: center;
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.receipt-order-number label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.receipt-order-number strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: var(--space-xs);
}

.receipt-details {
    margin-bottom: var(--space-xl);
}

.receipt-detail-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.receipt-detail-row:last-child {
    border-bottom: none;
}

.receipt-detail-label {
    color: var(--gray-600);
}

.receipt-detail-value {
    font-weight: 500;
    text-align: right;
}

.receipt-items-table {
    width: 100%;
    margin-bottom: var(--space-xl);
}

.receipt-items-table th {
    text-align: left;
    padding: var(--space-sm);
    border-bottom: 2px solid var(--gray-200);
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
}

.receipt-items-table td {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--gray-100);
}

.receipt-items-table tr:last-child td {
    border-bottom: none;
}

.receipt-totals {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.receipt-totals .receipt-detail-row {
    border-bottom: none;
}

.receipt-totals .receipt-detail-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    padding-top: var(--space-md);
    border-top: 2px solid var(--gray-300);
    margin-top: var(--space-md);
}

.receipt-actions {
    display: flex;
    gap: var(--space-md);
}

.receipt-actions .btn {
    flex: 1;
}

/* Admin Styles */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: var(--off-white);
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0D3311 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: var(--space-lg);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
}

.admin-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.admin-logo-text small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-light);
    font-family: var(--font-body);
    margin-top: 2px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 12px 14px;
    border-radius: var(--radius-lg);
    color: var(--gray-300);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-nav-link.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.3);
}

.admin-nav-link.active::before {
    transform: scaleY(1);
}

.admin-nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 32px;
    background: linear-gradient(135deg, #f8faf9 0%, var(--off-white) 100%);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--white) 0%, rgba(74, 124, 89, 0.02) 100%);
    padding: 32px 36px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 124, 89, 0.08);
    gap: 20px;
}

.admin-page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D6A4F;
    letter-spacing: -0.8px;
    margin: 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(74, 124, 89, 0.02) 100%);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(74, 124, 89, 0.1);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(74, 124, 89, 0.15);
    border-color: rgba(74, 124, 89, 0.15);
}

.admin-stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.15), transparent);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.admin-stat-card:hover::after {
    opacity: 0.7;
}

.admin-stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #2D6A4F;
    letter-spacing: -1.2px;
    position: relative;
    z-index: 1;
}

.admin-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.admin-table-wrapper:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.admin-table th {
    background: linear-gradient(90deg, rgba(74, 124, 89, 0.08) 0%, rgba(90, 142, 107, 0.04) 100%);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #2D6A4F;
    font-weight: 700;
    border-bottom: 2px solid rgba(74, 124, 89, 0.15);
}

.admin-table tbody tr {
    transition: background-color 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(30, 86, 49, 0.04);
}

.admin-table-image {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 2px solid var(--gray-200);
    transition: transform 0.2s ease;
}

.admin-table tbody tr:hover .admin-table-image {
    transform: scale(1.05);
}

.admin-table-actions {
    display: flex;
    gap: 8px;
}

.admin-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.admin-action-btn.edit {
    background: rgba(30, 86, 49, 0.1);
    color: var(--primary);
    border-color: var(--primary-light);
}

.admin-action-btn.edit:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.admin-action-btn.delete {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
    border-color: rgba(244, 67, 54, 0.3);
}

.admin-action-btn.delete:hover {
    background: var(--error);
    color: var(--white);
    border-color: var(--error);
    transform: scale(1.1);
}

.admin-btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
    border-color: rgba(244, 67, 54, 0.3);
}

.admin-btn-icon:hover {
    background: var(--error);
    color: var(--white);
    border-color: var(--error);
    transform: scale(1.1);
}

.admin-btn-delete-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.admin-btn-delete-all:hover {
    background: var(--error);
    color: var(--white);
    border-color: var(--error);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Admin Section Headers */
.admin-section-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D6A4F;
    letter-spacing: -0.5px;
    margin: 0 0 20px 0;
}

.admin-section-subtitle {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 4px;
}

.admin-content-section {
    background: linear-gradient(135deg, white 0%, rgba(74, 124, 89, 0.02) 100%);
    padding: 32px 36px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
    border: 1px solid rgba(74, 124, 89, 0.08);
}

.admin-content-section + .admin-content-section {
    margin-top: 24px;
}

/* Admin Main Improvements */
.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 40px;
    background: linear-gradient(135deg, #f8faf9 0%, #f5f7f6 100%);
    min-height: 100vh;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: var(--space-lg);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-2xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--gray-100);
    background: linear-gradient(90deg, #f8faf9 0%, var(--white) 100%);
}

.modal-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 28px;
    max-height: 70vh;
    overflow-y: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-hint {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

/* Image Preview Container */
.image-preview-container {
    display: flex;
    justify-content: center;
    padding: 12px;
}

.image-preview-container img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.15);
}

/* Admin-specific button styles */
.admin-main .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 12px rgba(30, 86, 49, 0.2);
}

.admin-main .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(30, 86, 49, 0.3);
    transform: translateY(-2px);
}

.admin-main .btn-secondary {
    background: var(--gray-100);
    color: var(--gray-800);
    border-color: var(--gray-300);
}

.admin-main .btn-secondary:hover {
    background: var(--gray-200);
    border-color: var(--gray-400);
}

.admin-main .btn-ghost {
    color: var(--gray-600);
    font-weight: 500;
}

.admin-main .btn-ghost:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

/* Drag and Drop Zone */
.drag-drop-zone {
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.05) 0%, rgba(46, 125, 50, 0.03) 100%);
    position: relative;
}

.drag-drop-zone:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(30, 86, 49, 0.1) 0%, rgba(46, 125, 50, 0.08) 100%);
}

.drag-drop-zone.active {
    border-color: var(--primary);
    background: rgba(30, 86, 49, 0.08);
}

.drag-drop-zone svg {
    display: block;
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.8;
    transition: all 0.2s ease;
}

.drag-drop-zone:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.drag-drop-zone p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.drag-drop-zone p strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.category-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.category-checkbox:hover {
    border-color: var(--primary);
    background: rgba(30, 86, 49, 0.03);
}

.category-checkbox input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.category-checkbox input:checked + {
    font-weight: 600;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 28px;
    border-top: 1px solid var(--gray-100);
    background: linear-gradient(90deg, #f8faf9 0%, var(--white) 100%);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 6000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    min-width: 300px;
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast.warning {
    border-left: 4px solid var(--warning);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
}

.toast-message {
    flex: 1;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0e0f 100%);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid rgba(30, 86, 49, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-700);
}

.footer-brand-text {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: var(--space-md);
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    color: var(--gray-400);
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
}

.footer-link:hover::before {
    width: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gray-500);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 86, 49, 0.1);
    color: var(--gray-400);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    border: 1px solid rgba(30, 86, 49, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(30, 86, 49, 0.2);
}

/* File Input */
.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
}

.file-input-label:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(30, 86, 49, 0.05);
}

.file-preview {
    margin-top: var(--space-md);
}

.file-preview img {
    max-width: 200px;
    border-radius: var(--radius-md);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.badge-warning {
    background: rgba(255, 152, 0, 0.1);
    color: var(--warning);
}

.badge-error {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
}

.badge-info {
    background: rgba(33, 150, 243, 0.1);
    color: var(--info);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: 700px;
    }
    
    .hero-overlay--primary {
        background: rgba(13, 51, 17, 0.5);
    }
    
    .hero-overlay--gradient {
        background: linear-gradient(
            to bottom,
            rgba(13, 51, 17, 0.62) 0%,
            rgba(13, 51, 17, 0.55) 25%,
            rgba(13, 51, 17, 0.48) 50%,
            rgba(13, 51, 17, 0.4) 75%,
            rgba(13, 51, 17, 0.32) 100%
        );
    }
}

.checkout-grid {
    grid-template-columns: 1fr;
}

.order-summary-card {
    position: static;
}

.footer-grid {
    grid-template-columns: 1fr 1fr;
}

.admin-stats {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 64px;
        --space-3xl: 48px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        flex-direction: column;
        width: 100%;
        background: var(--white);
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        border-bottom: 1px solid var(--gray-200);
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        display: flex;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--primary);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--primary);
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .foods-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .admin-main {
        margin-left: 0;
    }

    .hero {
        min-height: 630px;
        padding: var(--space-3xl) 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
        min-height: 6rem;
    }
    
    .rotating-text {
        min-height: 6rem;
    }
    
    .hero-overlay--primary {
        background: rgba(13, 51, 17, 0.52);
    }
    
    .hero-overlay--gradient {
        background: linear-gradient(
            to bottom,
            rgba(13, 51, 17, 0.65) 0%,
            rgba(13, 51, 17, 0.58) 20%,
            rgba(13, 51, 17, 0.5) 40%,
            rgba(13, 51, 17, 0.42) 60%,
            rgba(13, 51, 17, 0.32) 80%,
            rgba(13, 51, 17, 0.25) 100%
        );
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .receipt-actions {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .admin-sidebar {
        width: 250px;
    }
    
    .admin-main {
        margin-left: 250px;
        padding: 24px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        position: fixed;
        left: -250px;
        transition: left 0.3s ease;
        z-index: 1100;
        width: 250px;
        height: 100vh;
    }
    
    .admin-sidebar.open {
        left: 0;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 20px;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .admin-stat-card {
        padding: 20px;
    }
}

/* ===================================== */
/* PRELOAD LOADER STYLES */
/* ===================================== */

.preload-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.preload-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main circular loader */
.loader-circle {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.loader-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top: 4px solid #4A7C59;
    border-right: 4px solid rgba(74, 124, 89, 0.3);
    border-radius: 50%;
    animation: spinLoader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    pointer-events: none;
}

/* Rotating animation */
@keyframes spinLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinLoaderInner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Logo inside loader - stays static */
.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 900;
    color: #4A7C59;
    text-align: center;
    z-index: 20;
    letter-spacing: 1.5px;
    font-family: var(--font-display);
    white-space: nowrap;
    width: 90%;
    max-width: 110px;
    pointer-events: none;
}

/* Loading text */
.loader-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #4A7C59;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    animation: fadeInOut 1.8s ease-in-out infinite;
    display: none;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Floating particles animation */
.loader-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4A7C59;
    border-radius: 50%;
    opacity: 0;
    display: none;
}

.loader-particle:nth-child(1) {
    animation: floatParticle 2s ease-in-out infinite;
    animation-delay: 0s;
}

.loader-particle:nth-child(2) {
    animation: floatParticle 2s ease-in-out infinite;
    animation-delay: 0.4s;
}

.loader-particle:nth-child(3) {
    animation: floatParticle 2s ease-in-out infinite;
    animation-delay: 0.8s;
}

.loader-particle:nth-child(4) {
    animation: floatParticle 2s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(40px, -40px) scale(0);
    }
}

/* Responsive loader */
@media (max-width: 768px) {
    .loader-container {
        width: 120px;
        height: 120px;
    }
    
    .loader-logo {
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 1px;
    }
        height: 12px;
    }
    
    .loader-text {
        font-size: 12px;
        bottom: -45px;
    }
}

@media (max-width: 480px) {
    .loader-container {
        width: 70px;
        height: 70px;
    }
    
    .loader-circle {
        border: 2px solid rgba(74, 124, 89, 0.1);
        border-top: 2px solid #4A7C59;
        border-right: 2px solid rgba(74, 124, 89, 0.3);
    }
    
    .loader-circle::before {
        border: 2px solid transparent;
        border-top: 2px solid #4A7C59;
        border-right: 2px solid rgba(74, 124, 89, 0.3);
    }
    }
    
    .loader-circle::after {
        width: 10px;
        height: 10px;
    }
    
    .loader-text {
        font-size: 11px;
        bottom: -40px;
    }
    
    .admin-stat-value {
        font-size: 2rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        min-height: 580px;
        padding: var(--space-2xl) 0;
    }
    
    .hero-title {
        font-size: 0.85rem;
        margin-bottom: var(--space-md);
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
        line-height: 1.3;
        letter-spacing: -0.03em;
        min-height: 5rem;
        padding: 0 5px;
    }
    
    .rotating-text {
        min-height: 7rem;
    }
    
    .rotating-text-item {
        padding: 0 var(--space-xs);
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: var(--space-md);
    }
    
    .hero-overlay--primary {
        background: rgba(13, 51, 17, 0.54);
    }
    
    .hero-overlay--gradient {
        background: linear-gradient(
            to bottom,
            rgba(13, 51, 17, 0.68) 0%,
            rgba(13, 51, 17, 0.62) 15%,
            rgba(13, 51, 17, 0.55) 30%,
            rgba(13, 51, 17, 0.48) 50%,
            rgba(13, 51, 17, 0.4) 70%,
            rgba(13, 51, 17, 0.32) 100%
        );
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .modal {
        margin: var(--space-md);
    }
    
    .admin-sidebar {
        width: 100%;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 16px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .admin-stat-card {
        padding: 16px;
        border-left: none;
        border-top: 3px solid var(--primary);
    }
    
    .admin-stat-value {
        font-size: 1.75rem;
    }
    
    .admin-page-title {
        font-size: 1.5rem;
    }
    
    .modal {
        max-width: 90vw;
    }
}

/* Restaurant Hero Section */
.restaurant-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.restaurant-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.restaurant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.restaurant-hero-overlay--dark {
    background: rgba(11, 35, 17, 0.35);
}

.restaurant-hero-overlay--gradient {
    background: linear-gradient(
        to bottom,
        rgba(11, 35, 17, 0.15) 0%,
        rgba(11, 35, 17, 0.25) 30%,
        rgba(11, 35, 17, 0.4) 70%,
        rgba(11, 35, 17, 0.55) 100%
    );
}

.restaurant-hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.restaurant-hero-content {
    position: relative;
    z-index: 5;
    padding: 0 0 48px 0;
}

.hero-info-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: flex-end;
}

.hero-main-info {
    color: white;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.meta-icon {
    font-size: 18px;
}

.meta-text {
    letter-spacing: 0.3px;
}

.meta-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    max-width: 500px;
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.address-icon {
    font-size: 16px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: white;
    transition: all var(--transition-base);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.card-value {
    font-size: 20px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 4px;
}

.card-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Restaurant Hero Responsive */
@media (max-width: 1024px) {
    .restaurant-hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-info-wrapper {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .restaurant-hero {
        height: 420px;
    }
    
    .hero-title {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .hero-meta {
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .hero-card {
        padding: 12px;
    }
    
    .card-value {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .restaurant-hero {
        height: 750px;
        justify-content: flex-start;
    }
    
    .restaurant-hero-content {
        padding: 120px 20px 60px 20px;
    }
    
    .hero-info-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        width: 100%;
    }
    
    .hero-card {
        padding: 14px;
    }
    
    .card-value {
        font-size: 14px;
    }
    
    .card-label {
        font-size: 10px;
    }
    
    .back-link {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

