/* Wolt-Inspired Explore Page Styles */

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

:root {
    --primary-color: #003d29;
    --primary-light: #006b4e;
    --accent-color: #00c853;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f2f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

body {
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

/* Top Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

/* Announcement Banner */
.announcement-banner {
    position: relative;
    background: var(--primary-color);
    color: #ffffff;
    padding: 16px 24px;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-banner-inner {
    width: 100%;
    max-width: 1400px;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.announcement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    opacity: 0.9;
}

.announcement-icon-img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.announcement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.announcement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.announcement-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.announcement-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.announcement-message {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
}

.announcement-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    transition: opacity 0.2s ease;
    display: none;
}

.announcement-link:hover {
    opacity: 0.8;
}

.announcement-close {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.announcement-close:active {
    background: rgba(255, 255, 255, 0.2);
}

.announcement-close svg {
    width: 20px;
    height: 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.5px;
}

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

.logo-text {
    color: var(--primary-color);
}

.nav-center {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-tertiary);
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s ease;
    width: 18px;
    height: 18px;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    font-size: 15px;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.search-input::placeholder {
    color: var(--text-tertiary);
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(0, 61, 41, 0.08);
}

.search-bar:focus-within .search-icon {
    color: var(--primary-color);
}

.search-input:hover {
    border-color: var(--primary-light);
    background: var(--bg-primary);
}

.search-input[readonly] {
    cursor: pointer;
}

.advanced-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.advanced-search-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.advanced-search-btn:active {
    transform: scale(0.95);
}

.advanced-search-btn svg {
    width: 20px;
    height: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.nav-btn-secondary {
    background: transparent;
    color: var(--text-primary);
}

.nav-btn-secondary:hover {
    background: var(--bg-secondary);
}

.nav-btn-primary {
    background: var(--primary-color);
    color: white;
}

.nav-btn-primary:hover {
    background: var(--primary-light);
}

/* Enhanced Get the App Button */
.get-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 61, 41, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.get-app-btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    box-shadow: 0 4px 16px rgba(0, 61, 41, 0.3);
    transform: translateY(-1px);
}

.get-app-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 61, 41, 0.2);
}

.get-app-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.get-app-btn:hover .get-app-icon {
    transform: translateY(2px);
}

.get-app-btn span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.section-actions {
    display: flex;
    gap: 12px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.sort-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.sort-btn[aria-expanded="true"] {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.sort-btn-text {
    white-space: nowrap;
}

.sort-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sort-btn[aria-expanded="true"] .sort-arrow {
    transform: rotate(180deg);
}

.sort-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    overflow: hidden;
    margin: 0;
    padding: 4px;
}

.sort-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
    gap: 12px;
}

.sort-option:hover {
    background: var(--bg-secondary);
}

.sort-option.active {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.sort-option.active .sort-check {
    display: block;
}

.sort-check {
    display: none;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--primary-color);
    stroke-width: 2.5;
}

/* Categories Section */
.categories-section {
    margin-bottom: 48px;
}

.categories-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4px 8px;
    margin: 0 -4px;
}

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

.categories-container {
    display: flex;
    gap: 20px;
    padding: 12px 0;
}

.category-card {
    flex: 0 0 280px;
    text-decoration: none;
    color: inherit;
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    height: 320px;
    display: block;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.3), rgba(0, 61, 41, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
}

.category-card:hover::before {
    opacity: 1;
}

.category-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-tertiary);
    position: relative;
    border-radius: 20px;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.category-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 0 0 20px 20px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
}

.category-card:hover .category-gradient-overlay {
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.3) 85%, transparent 100%);
}

.category-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 20px 20px 0 0;
}

.category-card:hover .category-hover-overlay {
    opacity: 1;
    backdrop-filter: blur(1px);
}

.category-hover-content {
    text-align: center;
    color: #ffffff;
    max-width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-hover-content {
    transform: translateY(0);
}

.category-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.2px;
}

.category-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    z-index: 4;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-content-overlay {
    transform: translateY(0);
    opacity: 1;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 61, 41, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover .category-badge {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.category-card:hover .category-name {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.category-navigation {
    display: flex;
    gap: 8px;
    align-items: center;
}

.category-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.category-nav-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.category-nav-btn:active {
    transform: scale(0.95);
}

.category-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.category-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Category Hero Section - Elegant Design */
.category-hero-section {
    position: relative;
    margin-bottom: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    animation: fadeInUp 0.8s ease-out;
}

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

.category-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-hero-section:hover .category-hero-image {
    transform: scale(1.05);
}

.category-hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 80%,
        rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 40px 40px;
    color: white;
    max-width: 900px;
    animation: fadeInContent 1s ease-out 0.2s both;
}

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

.category-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.category-hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.category-hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.category-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.category-hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.3px;
}

.category-hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 700px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

/* Meals Section */
.meals-section {
    margin-top: 48px;
}

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

/* When no results are shown, make grid single column for full-width empty state */
.meals-grid:has(.no-results),
.meals-grid:has(.empty-state) {
    grid-template-columns: 1fr;
}

/* Fallback for browsers that don't support :has() */
.meals-grid.has-no-results,
.meals-grid.has-empty-state {
    grid-template-columns: 1fr;
}

/* Ensure no-results and empty-state take full width */
.meals-grid .no-results,
.meals-grid .empty-state {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
}

/* Meal Card - Wolt Style */
.meal-card-wolt {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.meal-card-wolt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 61, 41, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.meal-card-wolt:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 200, 83, 0.2);
}

.meal-card-wolt:hover::before {
    opacity: 1;
}

.meal-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.meal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.meal-card-wolt:hover .meal-image {
    transform: scale(1.08);
}

.meal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.meal-card-wolt:hover .meal-image-overlay {
    opacity: 1;
}

.meal-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 50%, #e8e8e8 100%);
    background-size: 200% 200%;
    animation: shimmer 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #999;
}

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

.meal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.instant-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #00b347 100%);
    color: white;
}

.meal-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.meal-category-badge .category-name {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 61, 41, 0.1);
    transition: all 0.2s ease;
}

.meal-card-wolt:hover .meal-category-badge .category-name {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.meal-kitchen-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.meal-card-wolt:hover .meal-kitchen-tag {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
}

.meal-content {
    padding: 18px;
}

.meal-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.meal-card-wolt:hover .meal-name {
    color: var(--primary-color);
}

.meal-description {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meal-footer {
    padding: 12px 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), transparent);
    margin-top: auto;
}

.meal-card-wolt:hover .meal-footer {
    border-top-color: rgba(0, 200, 83, 0.15);
    background: linear-gradient(to bottom, rgba(0, 200, 83, 0.02), transparent);
}

.meal-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.inner-footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.meal-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.meal-footer-item svg {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
    opacity: 0.7;
    color: currentColor;
    transition: opacity 0.2s ease;
}

.meal-footer-text {
    white-space: nowrap;
    letter-spacing: -0.1px;
}

.meal-card-wolt:hover .meal-footer-item {
    color: var(--text-primary);
}

.meal-card-wolt:hover .meal-footer-item svg {
    opacity: 0.9;
}

.meal-footer-item.meal-footer-savings {
    color: var(--accent-color);
    font-weight: 600;
}

.meal-footer-item.meal-footer-savings svg {
    opacity: 1;
    color: var(--accent-color);
}

.meal-card-wolt:hover .meal-footer-item.meal-footer-savings {
    color: #00b347;
}

.meal-card-wolt:hover .meal-footer-item.meal-footer-savings svg {
    color: #00b347;
}

.meal-info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.meal-info-item svg {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.meal-card-wolt:hover .meal-info-item {
    color: var(--text-primary);
}

.meal-card-wolt:hover .meal-info-item svg {
    opacity: 0.8;
}

.meal-info-item.meal-info-instant {
    color: var(--accent-color);
    font-weight: 600;
}

.meal-info-item.meal-info-instant svg {
    opacity: 1;
}

.meal-card-wolt:hover .meal-info-item.meal-info-instant {
    color: #00b347;
}

.meal-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meal-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.3px;
    line-height: 1;
}

.meal-calories-inline {
    font-size: 11px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 2px;
}

.meal-delivery-time {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px 10px;
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.meal-card-wolt:hover .meal-delivery-time {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.meal-calories {
    display: inline-block;
    font-size: 11px;
    color: var(--text-tertiary);
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 8px;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 120px 20px;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.empty-state p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    position: relative;
    background: #000000;
    color: #ffffff;
    margin-top: 80px;
    overflow: hidden;
    isolation: isolate;
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 61, 41, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 107, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
}

.footer-main {
    padding: 80px 0 48px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-left-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-mission {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.footer-right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.2s ease;
    line-height: 1.6;
}

.footer-nav-link:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}

.footer-contact-item:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    transform: translateX(4px);
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-contact-item span {
    letter-spacing: 0.3px;
}

.footer-app-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
}

.footer-app-downloads .app-download-btn {
    height: 56px;
    width: 100%;
    padding: 10px 14px;
    gap: 12px;
    border-radius: var(--radius-md);
}

.footer-app-downloads .app-store-icon {
    width: 28px;
    height: 28px;
}

.footer-app-downloads .app-download-label {
    font-size: 10px;
}

.footer-app-downloads .app-download-store {
    font-size: 14px;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.646);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.2s ease;
    width: 100%;
}

.app-download-btn:hover {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.app-download-btn.ios-btn {
    background: #000000;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.app-download-btn.ios-btn:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.4);
}

.app-download-btn.android-btn {
    background: #ffffff;
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

.app-download-btn.android-btn:hover {
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.2);
}

.app-store-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.app-download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.app-download-label {
    font-size: 7px;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-download-btn.ios-btn .app-download-label {
    color: rgba(255, 255, 255, 0.8);
}

.app-download-store {
    font-size: 9px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
    margin-top: 1px;
}

.app-download-btn.ios-btn .app-download-store {
    color: #ffffff;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    width: 100%;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    gap: 24px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-legal-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-legal-link:hover {
    color: #00e85f;
    text-decoration: underline;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* App Download Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--bg-tertiary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 48px 32px 32px;
    text-align: center;
}

.modal-icon {
    margin-bottom: 24px;
}

.modal-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    padding: 12px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.modal-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    width: 100%;
}

.app-download-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.app-download-btn.ios-btn:hover {
    border-color: #000;
    background: #1a1a1a;
}

.app-download-btn.android-btn:hover {
    border-color: #01875f;
    background: #f0f9f7;
}

.app-store-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.app-download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
}

.app-download-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.2;
}

.app-download-store {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.modal-footer-text {
    font-size: 14px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-center {
        max-width: 100%;
    }
    
    .search-bar {
        max-width: 100%;
    }
    
    .main-content {
        padding: 24px 16px;
    }
    
    .meals-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
        gap: 12px;
    }
    
    .nav-center {
        flex: 1;
        order: 0;
        max-width: none;
        margin: 0 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .search-bar {
        width: 100%;
        max-width: 100%;
    }
    
    .search-input {
        padding: 9px 36px 9px 36px;
        font-size: 15px;
    }
    
    .search-icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    
    .nav-right {
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .get-app-btn {
        padding: 10px;
        gap: 0;
        min-width: 44px;
        aspect-ratio: 1/1;
        justify-content: center;
    }
    
    .get-app-btn span {
        display: none;
    }
    
    .get-app-icon {
        width: 20px;
        height: 20px;
        margin: 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .announcement-banner-inner {
        padding: 0;
    }
    
    .announcement-icon {
        display: none;
    }
    
    .categories-container {
        gap: 16px;
        padding: 12px 0;
    }
    
    .category-card {
        flex: 0 0 240px;
        height: 300px;
    }
    
    .category-navigation {
        gap: 6px;
    }
    
    .category-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .category-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .category-image-wrapper {
        height: 100%;
    }
    
    .category-content-overlay {
        padding: 18px 14px 14px;
    }
    
    .category-name {
        font-size: 20px;
    }
    
    .category-badge {
        font-size: 10px;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .category-hover-overlay {
        padding: 20px;
        bottom: 90px;
    }
    
    .category-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .category-description {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .category-hero-section {
        min-height: 360px;
        margin-bottom: 48px;
    }
    
    .category-hero-content {
        padding: 36px 28px 32px;
    }
    
    .category-hero-badge {
        padding: 8px 16px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .category-hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .category-hero-title {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .category-hero-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .category-hero-description {
        font-size: 16px;
    }
    
    .meals-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .meal-image-container {
        height: 180px;
    }
    
    .meal-footer {
        padding: 10px 14px;
    }
    
    .meal-footer-info {
        gap: 8px 12px;
    }
    
    .meal-footer-item {
        font-size: 11px;
    }
    
    .meal-footer-item svg {
        width: 12px;
        height: 12px;
    }
    
    .modal-content {
        max-width: 90%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 40px 24px 24px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-description {
        font-size: 15px;
    }
    
    /* Footer Responsive */
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-main {
        padding: 56px 0 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-left-section {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-brand {
        justify-content: flex-start;
    }
    
    .footer-brand-text {
        font-size: 28px;
    }
    
    .footer-mission {
        max-width: 100%;
    }
    
    .footer-right-section {
        align-items: flex-start;
    }
    
    .footer-contact-info {
        margin-top: 24px;
        gap: 16px;
    }
    
    .footer-contact-item {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-app-downloads {
        width: 100%;
        max-width: 100%;
    }
    
    .app-download-btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
        gap: 16px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-text {
        display: none;
    }
    
    .nav-btn-secondary {
        display: none;
    }
    
    .get-app-btn {
        padding: 9px;
        min-width: 44px;
        gap: 0;
    }
    
    .get-app-btn span {
        display: none;
    }
    
    .get-app-icon {
        width: 20px;
        height: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .sort-dropdown-menu {
        right: auto;
        left: 0;
        min-width: 180px;
    }
    
    .meals-grid {
        grid-template-columns: 1fr;
    }
    
    .meal-footer {
        padding: 10px 14px;
    }
    
    .meal-footer-info {
        gap: 8px 10px;
    }
    
    .meal-footer-item {
        font-size: 10.5px;
    }
    
    .meal-footer-item svg {
        width: 11px;
        height: 11px;
    }
    
    .category-card {
        flex: 0 0 200px;
        height: 260px;
        border-radius: 16px;
    }
    
    .categories-container {
        gap: 12px;
        padding: 12px 0;
    }
    
    .category-image-wrapper {
        border-radius: 16px;
    }
    
    .category-content-overlay {
        padding: 16px 12px 12px;
    }
    
    .category-name {
        font-size: 18px;
    }
    
    .category-badge {
        font-size: 9px;
        padding: 4px 8px;
        margin-bottom: 8px;
    }
    
    .category-badge svg {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }
    
    .category-gradient-overlay {
        border-radius: 0 0 16px 16px;
    }
    
    .category-hover-overlay {
        padding: 16px;
        bottom: 80px;
    }
    
    .category-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .category-description {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }
    
    .category-hero-section {
        min-height: 300px;
        margin-bottom: 32px;
        border-radius: var(--radius-md);
    }
    
    .category-hero-content {
        padding: 28px 20px 24px;
    }
    
    .category-hero-badge {
        padding: 7px 14px;
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .category-hero-badge svg {
        width: 13px;
        height: 13px;
    }
    
    .category-hero-title {
        font-size: 32px;
        margin-bottom: 8px;
        letter-spacing: -0.8px;
    }
    
    .category-hero-subtitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .category-hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-body {
        padding: 32px 20px 20px;
    }
    
    .modal-logo {
        width: 64px;
        height: 64px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .app-download-btn {
        padding: 14px 20px;
    }
    
    .app-store-icon {
        width: 36px;
        height: 36px;
    }
    
    .app-download-store {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    
    .footer-main {
        padding: 40px 0 32px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-brand-text {
        font-size: 24px;
    }
    
    .footer-mission {
        font-size: 14px;
    }
    
    .footer-nav-link {
        font-size: 16px;
    }
    
    .footer-contact-info {
        margin-top: 20px;
        gap: 14px;
    }
    
    .footer-contact-item {
        font-size: 16px;
        padding: 8px 0;
        gap: 10px;
    }
    
    .footer-contact-item svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-app-downloads .app-download-btn {
        height: 52px;
        padding: 8px 12px;
        gap: 10px;
    }
    
    .footer-app-downloads .app-store-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-app-downloads .app-download-label {
        font-size: 9px;
    }
    
    .footer-app-downloads .app-download-store {
        font-size: 13px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-legal-link {
        font-size: 13px;
    }
    
    /* Floating Chat Button Mobile */
    .floating-chat-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 13px;
        gap: 8px;
    }
    
    .floating-chat-icon {
        width: 24px;
        height: 24px;
    }
    
    .floating-chat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Search Modal Mobile */
    .search-modal-overlay {
        padding: 20px 12px;
    }
    
    .search-modal-content {
        max-width: 100%;
        max-height: 90vh;
    }
    
    .search-modal-header {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .search-modal-logo {
        display: none !important;
    }
    
    .search-modal-body {
        padding: 20px 16px;
    }
    
    .search-modal-input {
        padding: 9px 36px 9px 36px;
        font-size: 15px;
    }
    
    .search-modal-icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    
    .search-modal-clear {
        right: 6px;
        width: 22px;
        height: 22px;
    }
    
    .search-modal-close {
        width: 32px;
        height: 32px;
    }
    
    .search-modal-close svg {
        width: 18px;
        height: 18px;
    }
    
    .search-results-scroll {
        margin: 0;
        padding: 0;
    }
    
    .search-result-card {
        flex: 0 0 calc(50% - 8px);
        min-width: 160px;
        max-width: 100%;
    }
    
    .search-result-card-image-wrapper {
        height: 140px;
    }
    
    .search-result-card-content {
        padding: 10px;
    }
    
    .search-result-card-title {
        font-size: 15px;
    }
    
    .search-result-card-subtitle {
        font-size: 12px;
    }
    
    .search-result-card-price {
        font-size: 15px;
    }
    
    .search-results-section-title {
        font-size: 18px;
    }
    
    .advanced-search-btn {
        width: 40px;
        height: 40px;
    }
    
    .advanced-search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Search History Mobile */
    .search-history-item {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .search-history-text {
        font-size: 14px;
    }
    
    .search-history-remove {
        opacity: 1;
        width: 28px;
        height: 28px;
    }
    
    .search-history-clear-btn {
        font-size: 13px;
        padding: 4px 6px;
    }
    
    /* Floating Chat Button Small Mobile */
    .floating-chat-btn {
        bottom: 16px;
        right: 16px;
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .floating-chat-icon {
        width: 20px;
        height: 20px;
    }
    
    .floating-chat-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .floating-chat-text {
        font-size: 12px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Slider App Icons (if hero slider is used) */
.app-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

/* Loading States */
.meal-card-wolt.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Search Results Highlight */
.meal-card-wolt.highlight {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 200, 83, 0.1);
}

/* Advanced Search Modal - Wolt Style */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    overflow-y: auto;
}

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

.search-modal-content {
    background: var(--bg-primary);
    width: 100%;
    /* max-width: 1400px; */
    max-height: 90vh;
    /* border-radius: var(--radius-lg); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px) scale(0.98);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
}

.search-modal-overlay.active .search-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 10;
    justify-content: space-between;
    max-width: 1352px;
    margin: auto;
    width: 100%;
}

.search-modal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.3px;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.search-modal-logo:hover {
    opacity: 0.8;
}

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

.search-modal-logo-text {
    color: var(--primary-color);
}

.search-modal-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 400px;
}

.search-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-modal-close:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.search-modal-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-width: 1352px;
    margin: 0 auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-modal-body::-webkit-scrollbar {
    display: none;
}

.search-modal-icon {
    position: absolute;
    left: 16px;
    color: var(--text-tertiary);
    pointer-events: none;
    z-index: 1;
}

.search-modal-input {
    width: 100%;
    padding: 10px 40px 10px 40px;
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    font-size: 15px;
    font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.search-modal-input::placeholder {
    color: var(--text-tertiary);
}

.search-modal-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(0, 61, 41, 0.08);
}

.search-modal-input-wrapper:focus-within .search-modal-icon {
    color: var(--primary-color);
}

.search-modal-icon {
    position: absolute;
    left: 14px;
    color: var(--text-tertiary);
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s ease;
}

.search-modal-clear {
    position: absolute;
    right: 8px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: all 0.2s ease;
    z-index: 1;
}

.search-modal-clear:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.search-results {
    flex: 1;
    min-height: 200px;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.search-results::-webkit-scrollbar {
    display: none;
}

.search-results-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
}

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

.search-results-empty-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.search-results-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.search-results-loading-icon {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.search-results-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-results-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-results-section {
    margin-bottom: 40px;
}

.search-results-section:last-child {
    margin-bottom: 0;
}

.search-results-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.search-results-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.3px;
}

.search-results-see-all {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-results-see-all:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.search-results-scroll {
    margin: 0;
    padding: 0;
}

.search-results-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
}

.search-history-clear-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    font-family: inherit;
}

.search-history-clear-btn:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

.search-results-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.search-history-list {
    gap: 12px;
}

.search-history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: fit-content;
    white-space: nowrap;
    text-align: left;
    font-family: inherit;
    position: relative;
}

.search-history-item:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.search-history-icon {
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.search-history-item:hover .search-history-icon {
    color: var(--primary-color);
}

.search-history-text {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-history-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0;
}

.search-history-item:hover .search-history-remove {
    opacity: 1;
}

.search-history-remove:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.search-history-remove:active {
    transform: scale(0.9);
}

/* Search Result Cards - Wolt Style */
.search-result-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 12px);
    min-width: 200px;
    max-width: 280px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

@media (max-width: 1200px) {
    .search-result-card {
        flex: 0 0 calc(33.333% - 11px);
    }
}

@media (max-width: 900px) {
    .search-result-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .search-result-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.search-result-card-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--bg-tertiary);
    position: relative;
}

.search-result-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .search-result-card-image {
    transform: scale(1.05);
}

.search-result-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.search-result-card-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-result-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-card-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.search-result-card-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.search-results-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-secondary);
}

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

.search-results-no-results-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.search-results-no-results-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Floating Chat Button */
.floating-chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    animation: pulse-chat 2s ease-in-out infinite;
}

.floating-chat-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.floating-chat-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes pulse-chat {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

.floating-chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.floating-chat-btn:hover .floating-chat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg) scale(1.1);
}

.floating-chat-text {
    white-space: nowrap;
    font-weight: 600;
}
