/* Reset and Base Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    text-shadow: none;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    height: 60px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
    transform: translateY(-1px);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    min-width: 320px;
    max-width: 400px;
    max-height: 400px;
    /* Limit height for scrolling */
    overflow-y: auto;
    /* Enable vertical scrolling */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    border-top: 3px solid #e74c3c;
}

/* Custom scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(231, 76, 60, 0.6);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(231, 76, 60, 0.8);
}

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

.dropdown-menu li {
    margin: 0;
    list-style: none;
    list-style-type: none;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Reduced gap for more compact layout */
    padding: 0.75rem 1.25rem;
    /* Reduced padding for smaller items */
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 0.9rem;
    /* Smaller font size */
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    color: #e74c3c;
    transform: translateX(8px);
    border-radius: 12px;
    margin: 0 0.5rem;
}

.dropdown-item::after {
    display: none;
}

.category-icon {
    font-size: 0.9rem;
    /* Even smaller icon size */
    width: 22px;
    /* Further reduced width */
    height: 22px;
    /* Further reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 6px;
    /* Smaller border radius */
    transition: all 0.3s ease;
}

.dropdown-item:hover .category-icon {
    background: rgba(231, 76, 60, 0.2);
    transform: scale(1.1);
}

.category-text {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.2px;
    /* Reduced letter spacing */
    font-size: 0.85rem;
    /* Smaller text size */
    line-height: 1.3;
    /* Tighter line height */
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn {
    background: transparent;
    color: #2c3e50;
    padding: 0.6rem 1.2rem;
    border: 2px solid #2c3e50;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.login-btn:hover {
    background: #2c3e50;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.book-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Responsive navigation */
@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .login-btn,
    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #e8e8e8;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-links a:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    border-radius: 12px;
}

.mobile-nav-links a:hover::before {
    left: 100%;
}

/* Mobile Categories */
.mobile-categories {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    width: 100%;
    max-width: 300px;
    max-height: 250px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-categories-title {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.6rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mobile-categories-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-categories-title:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.2));
    color: #e74c3c;
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.2);
}

.mobile-categories-title:hover::before {
    left: 100%;
}

.mobile-dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-category-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    background: white;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.mobile-category-item:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    transform: translateX(12px) translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
    border-radius: 12px;
}

.mobile-category-item:hover::before {
    left: 100%;
}

.mobile-category-item .category-icon {
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-category-item:hover .category-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.mobile-category-item .category-text {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    margin-top: 1rem;
}

.mobile-nav-buttons .login-btn {
    background: transparent;
    color: #2c3e50;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e74c3c;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.1);
}

.mobile-nav-buttons .login-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
}

.mobile-nav-buttons .book-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.mobile-nav-buttons .book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .specials-grid,
    .recommendations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .specials-grid,
    .recommendations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 80%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .filter-section {
        margin: 1rem;
        padding: 1.5rem;
    }

    .filter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .filter-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-reset,
    .btn-search {
        width: 100%;
        padding: 1rem;
    }

    .specials-grid,
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        margin-bottom: 2rem;
    }

    .special-card,
    .recommendation-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .filter-toggle-btn {
        width: 95%;
        margin-bottom: 1rem;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .filter-section {
        margin: 0.5rem;
        padding: 1rem;
    }

    .filter-header h3 {
        font-size: 1.1rem;
    }

    .filter-header p {
        font-size: 0.8rem;
    }

    .filter-grid {
        gap: 0.75rem;
    }

    .filter-select,
    .filter-input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .filter-actions {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .btn-reset,
    .btn-search {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        width: 95%;
        padding: 0;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .special-card,
    .recommendation-card {
        margin: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-section {
        margin: 0.5rem;
        padding: 1rem;
    }

    .filter-header h3 {
        font-size: 1.3rem;
    }

    .filter-header p {
        font-size: 0.9rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .nav {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 0 0.5rem;
    }

    .specials-grid,
    .recommendations-grid {
        padding: 0 0.5rem;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .specials-grid,
    .recommendations-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
}

/* Large screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }

    .specials-grid,
    .recommendations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 3rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url(../images/OIP\ \(2\).webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(231, 76, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(241, 196, 15, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-10px, -10px) rotate(1deg);
    }

    66% {
        transform: translate(10px, -5px) rotate(-1deg);
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1.5s ease-out;
    max-width: 90%;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff, #f8f8f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Main Content */
.main-content {
    margin-top: 0;
    padding-bottom: 2rem;
}

/* Page Layout Improvements */
.section {
    margin-bottom: 3rem;
}

.section-title {
    text-align: right;
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 2rem;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

.section-subtitle {
    text-align: right;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 2.5rem;
    padding-right: 2rem;
}

/* Section Styles */
.specials-section,
.recommendations-section {
    padding: 5rem 0;
    position: relative;
}

.specials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.recommendations-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000000;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

/* Specials Grid */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.special-card:nth-child(2) {
    animation-delay: 0.2s;
}

.special-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.special-card .card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pasta-bg {
    background-image: url(../images/OIP\ \(3\).webp);
}

.salmon-bg {
    background-image: url(../images/food-6650288_1280.jpg);
}

.burger-bg {
    background-image: url(../images/OIP\ \(4\).webp);
}

.special-card .card-content {
    padding: 0.75rem;
}

.special-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.special-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.special-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
}

/* Recommendations Grid - Smaller Cards */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.recommendation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.recommendation-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 231, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.recommendation-card:hover .card-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    font-size: 0.85rem;
}

.view-dish-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.recommendation-card:hover .add-to-cart-btn {
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.recommendation-card .card-content {
    padding: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.card-title {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.card-category {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.card-description {
    color: #e74c3c;
    margin: 0.5rem 0;
    line-height: 1.4;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

.card-meta {
    margin: 0.5rem 0;
}

.listing-date {
    font-size: 0.75rem;
    color: #999;
}

.recommendation-card .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating .stars {
    color: #f39c12;
    font-size: 0.9rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Enhanced Filter Section Styles */
.filter-toggle-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    backdrop-filter: blur(5px);
}

.filter-toggle-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Search Mode Toggle Styles */
.search-mode-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mode-btn {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.mode-btn.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.mode-btn:hover:not(.active) {
    background: #e9ecef;
    color: #495057;
}

/* Basic Search Styles */
.basic-search {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    max-width: 700px;
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}

.basic-search-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Basic Search: bottom actions container (visible across views) */
.basic-search-actions {
    display: block;
    margin-top: 0.5rem;
}

.basic-search-actions .basic-search-btn {
    width: 100%;
    justify-content: center;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.basic-search-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.2rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.basic-search-input:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.basic-search-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    white-space: nowrap;
}

.basic-search-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.quick-filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0.5rem;
}

.quick-filter-btn {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.quick-filter-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.quick-filter-btn.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Responsive Design for Basic Search */
@media (max-width: 768px) {
    .basic-search {
        margin: 0.5rem;
        width: calc(100% - 1rem);
        padding: 1rem;
    }

    .search-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .basic-search-input {
        min-width: unset;
        width: 100%;
    }

    .basic-search-btn {
        width: 100%;
        justify-content: center;
    }

    /* Mobile: show bottom button, hide inline button */
    .basic-search-actions {
        display: block;
    }

    .basic-search-form .search-input-group .basic-search-btn {
        display: none;
    }

    .quick-filters {
        gap: 0.5rem;
        padding: 0;
    }

    .quick-filter-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        text-align: center;
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .basic-search {
        margin: 0.25rem;
        width: calc(100% - 0.5rem);
        padding: 0.75rem;
    }

    .quick-filter-btn {
        min-width: 100%;
        margin-bottom: 0.25rem;
    }

    .quick-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Advanced Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 1rem auto 0;
    max-width: 600px;
    width: 90%;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.filter-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.filter-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.filter-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.filter-header p {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin: 0;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.4rem;
}

.filter-select,
.filter-input {
    padding: 0.6rem 0.8rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: #2c3e50;
}

/* Make category dropdown scrollable */
.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Style for dropdown options */
.filter-select option {
    padding: 8px 12px;
    font-size: 0.85rem;
}

/* Make dropdown scrollable by limiting visible options */
.filter-select {
    max-height: 200px;
    overflow-y: auto;
}

/* Alternative approach: Use size attribute for specific category dropdown */
#category {
    size: 1;
    /* Default closed state */
}

#category:focus,
#category[size="8"] {
    size: 8;
    /* Show 8 options when focused/opened */
    position: absolute;
    z-index: 1000;
    background: white;
    border: 2px solid #e74c3c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
}

.filter-select:hover,
.filter-input:hover {
    border-color: #3498db;
}

.filter-select:focus,
.filter-input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.filter-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.btn-reset,
.btn-search {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-reset {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.btn-reset:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.btn-search {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
}

.btn-search:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .filter-toggle-btn {
        width: calc(100% - 2rem);
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0 1rem 1rem 1rem;
    }

    .filter-section {
        margin: 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
        width: calc(100% - 2rem);
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-select,
    .filter-input {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .filter-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .btn-reset,
    .btn-search {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 90%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Additional Mobile Responsive Improvements */
@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.75rem;
    }

    .filter-toggle-btn {
        width: calc(100% - 1.5rem);
        margin: 0 0.75rem 1rem 0.75rem;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .filter-section {
        margin: 0.75rem;
        padding: 1.25rem;
        max-width: calc(100% - 1.5rem);
        width: calc(100% - 1.5rem);
        border-radius: 12px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .filter-header h3 {
        font-size: 1.2rem;
    }

    .filter-header p {
        font-size: 0.8rem;
    }

    .filter-select,
    .filter-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .btn-reset,
    .btn-search {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-content {
        padding: 0 0.5rem;
    }

    .filter-toggle-btn {
        width: calc(100% - 1rem);
        margin: 0 0.5rem 1rem 0.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .filter-section {
        margin: 0.5rem;
        padding: 1rem;
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
        border-radius: 10px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .filter-header h3 {
        font-size: 1.1rem;
    }

    .filter-select,
    .filter-input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .btn-reset,
    .btn-search {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.section-subtitle {
    text-align: center;
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.special-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    position: relative;
    height: 120px;
    overflow: hidden;
}

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

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #adb5bd;
}

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

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.special-card:hover .special-overlay {
    opacity: 1;
}

.quick-add-btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    font-size: 0.9rem;
}

.special-card:hover .quick-add-btn {
    transform: translateY(0);
}

.quick-add-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.special-card .card-content {
    padding: 1.5rem;
}

.special-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.business-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dish-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
}

.special-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-badge.new {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.special-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.special-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.special-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
}

.category-tag {
    background: #f8f9fa;
    color: #495057;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.added-date {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Live UI Animations and Effects */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.8), 0 0 30px rgba(231, 76, 60, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes liveDot {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes priceGlow {
    0% {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    }

    100% {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    }
}

/* Specials Carousel Styles */
.specials-slider-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.specials-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 1rem 4rem;
    will-change: transform;
    justify-content: flex-start;
    align-items: center;
}

.slider-card {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Ensure slider containers have proper positioning */
.specials-slider-container,
.food-store-slider-container {
    position: relative;
    overflow: visible;
}

/* Slider Navigation Above Cards - Always Visible */
.slider-nav-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-nav-top .slider-nav {
    position: static;
    transform: none;
    margin: 0;
}

.slider-nav-top .slider-nav:hover {
    transform: scale(1.1);
}

/* Hide side navigation buttons */
.specials-slider-container>.slider-nav,
.food-store-slider-container>.slider-nav {
    display: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: #e74c3c;
    transform: scale(1.2);
}

/* Daily Specials Section */
.daily-specials-section {
    padding: 3rem 0;
    background: white;
}

/* Category Slider Container for Specials */
.daily-specials-section .category-slider-container {
    position: relative;
    margin-top: 2rem;
}

/* Desktop Slider Navigation for Specials */
.daily-specials-section .slider-nav-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.daily-specials-section .slider-nav-controls .slider-nav-btn {
    pointer-events: all;
}

.daily-specials-section .slider-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.daily-specials-section .slider-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Specials Slider */
#specialsSlider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 4rem;
    scroll-behavior: smooth;
    justify-content: flex-start;
}

/* Hide scrollbar */
#specialsSlider::-webkit-scrollbar {
    display: none;
}

#specialsSlider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* View More Button for Specials */
.daily-specials-section .view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.special-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Small Card Styles */
.small-card {
    max-width: 280px;
}

.small-card .card-image-wrapper {
    height: 140px;
}

.small-card .card-info {
    padding: 1rem;
}

.small-card .dish-title {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.small-card .price {
    font-size: 1.2rem;
}

.small-card .add-to-cart-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

/* Mobile Slider Navigation */
.mobile-slider-nav {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c3e50;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Food Listings Section */
.listings-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.listings-slider-container {
    position: relative;
    margin-top: 2rem;
}

/* Desktop Slider Navigation */
.slider-nav-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.slider-nav-controls .slider-nav-btn {
    pointer-events: all;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Listings Slider */
.listings-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 4rem;
    scroll-behavior: smooth;
    justify-content: flex-start;
}

/* Hide scrollbar */
.listings-slider::-webkit-scrollbar {
    display: none;
}

.listings-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.view-more-btn span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.view-more-btn:hover span {
    transform: translateX(3px);
}

/* Small Listing Cards */
.listing-card.small-card {
    flex: 0 0 250px;
    width: 250px;
    max-width: 250px;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.listing-card.small-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.listing-card.small-card .card-image-wrapper {
    height: 140px;
    position: relative;
    overflow: hidden;
}

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

.listing-card.small-card:hover .card-image {
    transform: scale(1.05);
}

.listing-card.small-card .card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa0a6;
    font-size: 2rem;
}

.listing-card.small-card .card-info {
    padding: 1rem;
}

.listing-card.small-card .restaurant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.listing-card.small-card .restaurant-name {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listing-card.small-card .category-badge {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
}

.listing-card.small-card .dish-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    line-height: 1.2;
}

.listing-card.small-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-card.small-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
}

.listing-card.small-card .add-to-cart-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.listing-card.small-card .add-to-cart-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Listing Card Styles */
.listing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid #e2e8f0;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9aa0a6;
    font-size: 3rem;
}

.card-image-placeholder p {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.listing-card:hover .card-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-view-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.05);
}

.card-info {
    padding: 1.5rem;
}

.restaurant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.restaurant-name {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.dish-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.dish-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
}

.add-to-cart-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.add-to-cart-btn:hover {
    background: #000000;
    transform: scale(1.1);
}

/* No Listings Message */
.no-listings-message {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-listings-message h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.no-listings-message p {
    color: #666;
    margin-bottom: 2rem;
}

.btn-view-menu {
    background: #e74c3c;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-menu:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3rem;
    grid-column: 1 / -1;
}

.load-more-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Restaurant Header Styles */
.restaurant-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #e74c3c;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.restaurant-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.restaurant-info {
    flex: 1;
}

.restaurant-name {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.25rem 0;
}

.restaurant-badge {
    font-size: 0.75rem;
    color: #e74c3c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.dish-title {
    font-size: 1.2rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.dish-description {
    color: #e74c3c;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 500;
}

.special-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 8px;
    border-left: 3px solid #f39c12;
}

.special-icon {
    font-size: 1rem;
    color: #f39c12;
}

.special-text {
    font-size: 0.85rem;
    color: #856404;
    font-weight: 600;
}

/* Food Store Slider Styles */
.food-store-slider-container {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
    overflow: visible;
    padding: 0 60px;
}

.food-store-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    padding: 1rem 4rem;
    will-change: transform;
    justify-content: flex-start;
}

.food-store-slider-container .slider-card {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
}

.food-store-slider-container .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
}

.food-store-slider-container .slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.food-store-slider-container .prev-btn {
    left: -25px;
}

.food-store-slider-container .next-btn {
    right: -25px;
}

.food-store-slider-container .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.food-store-slider-container .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.food-store-slider-container .slider-dot.active,
.food-store-slider-container .slider-dot:hover {
    background: #e74c3c;
    transform: scale(1.2);
}

/* Responsive Food Store Carousel */
@media (max-width: 1200px) {
    .food-store-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 900px) {
    .food-store-slider-container {
        padding: 0 40px;
    }

    .food-store-slider-container .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .food-store-slider-container {
        padding: 0 30px;
    }

    .food-store-slider-container .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .food-store-slider-container .prev-btn {
        left: -20px;
    }

    .food-store-slider-container .next-btn {
        right: -20px;
    }

    .food-store-slider-container .slider-dots {
        margin-top: 1.5rem;
    }

    .food-store-slider-container .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .food-store-slider-container {
        padding: 0 20px;
    }

    .food-store-slider-container .prev-btn {
        left: -15px;
    }

    .food-store-slider-container .next-btn {
        right: -15px;
    }
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .specials-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 900px) {
    .specials-slider-container {
        padding: 0 40px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .specials-slider-container {
        padding: 0 30px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: -20px;
    }

    .next-btn {
        right: -20px;
    }

    .restaurant-header {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .restaurant-name {
        font-size: 0.9rem;
    }

    .dish-title {
        font-size: 1.1rem;
    }

    .slider-dots {
        margin-top: 1.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {

    /* Daily Specials Mobile Slider */
    .daily-specials-section {
        padding: 1.5rem 0;
    }

    .daily-specials-section .category-slider-container {
        margin-top: 1rem;
    }

    .daily-specials-section .slider-nav-controls {
        display: none;
    }

    #specialsSlider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding: 0 1rem;
        scroll-behavior: smooth;
    }

    .daily-specials-section .listing-card {
        flex: 0 0 calc(45% - 0.375rem);
        scroll-snap-align: start;
        max-width: none;
        min-height: 280px;
    }

    .daily-specials-section .listing-card .card-image-container {
        height: 140px;
    }

    .daily-specials-section .listing-card .card-content {
        padding: 1rem;
    }

    .daily-specials-section .listing-card .card-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .daily-specials-section .listing-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
    }

    .daily-specials-section .listing-card .price {
        font-size: 1.1rem;
    }

    .daily-specials-section .quick-add-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .daily-specials-section .mobile-slider-nav {
        display: flex;
    }

    /* Hide scrollbar */
    #specialsSlider::-webkit-scrollbar {
        display: none;
    }

    #specialsSlider {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Listings section responsive */
    .listings-section {
        padding: 2rem 0;
    }

    /* Hide desktop navigation on mobile */
    .slider-nav-controls {
        display: none;
    }

    /* Show mobile navigation */
    .mobile-slider-nav {
        display: flex;
    }

    /* Mobile slider - 2 cards per row */
    .listings-slider {
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .listing-card.small-card {
        flex: 0 0 calc(47% - 0.375rem);
        width: calc(47% - 0.375rem);
        max-width: none;
        min-height: 220px;
    }

    .listing-card.small-card .card-image-wrapper {
        height: 100px;
    }

    .listing-card.small-card .card-info {
        padding: 0.6rem;
    }

    .listing-card.small-card .restaurant-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 0.4rem;
    }

    .listing-card.small-card .restaurant-name {
        font-size: 0.75rem;
    }

    .listing-card.small-card .category-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }

    .listing-card.small-card .dish-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .listing-card.small-card .price {
        font-size: 1rem;
    }

    .listing-card.small-card .add-to-cart-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    /* Better typography on mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Categories grid responsive */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        min-height: 120px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .category-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .category-content p {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 1024px) {

    /* Tablet screens */
    .listings-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Extra small screens */
    .listings-section {
        padding: 1rem 0;
    }

    .listings-grid {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .listing-card {
        margin: 0 0.25rem;
        border-radius: 10px;
    }

    .card-image-wrapper {
        height: 140px;
    }

    .card-info {
        padding: 0.6rem;
    }

    .restaurant-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        margin-bottom: 0.4rem;
    }

    .restaurant-name {
        font-size: 0.75rem;
    }

    .category-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }

    .dish-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .dish-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 1;
    }

    .price {
        font-size: 1.1rem;
    }

    .add-to-cart-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    /* Special cards for extra small screens */
    .special-card {
        flex: 0 0 calc(48% - 0.25rem);
        min-height: 260px;
    }

    .special-card .card-image-container {
        height: 120px;
    }

    .special-card .card-content {
        padding: 0.8rem;
    }

    .special-card .card-header h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .special-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .special-card .price {
        font-size: 1rem;
    }

    .quick-add-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Category cards for extra small screens */
    .category-card {
        padding: 0.6rem;
        min-height: 100px;
    }

    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .category-content h3 {
        font-size: 0.8rem;
        margin-bottom: 0.1rem;
    }

    .category-content p {
        font-size: 0.7rem;
    }

    /* Listing cards for extra small screens */
    .listing-card.small-card {
        flex: 0 0 calc(48% - 0.25rem);
        width: calc(48% - 0.25rem);
        min-height: 200px;
    }

    .listing-card.small-card .card-image-wrapper {
        height: 90px;
    }

    .listing-card.small-card .card-info {
        padding: 0.5rem;
    }

    .listing-card.small-card .restaurant-name {
        font-size: 0.7rem;
    }

    .listing-card.small-card .category-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.3rem;
    }

    .listing-card.small-card .dish-title {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .listing-card.small-card .price {
        font-size: 0.9rem;
    }

    .listing-card.small-card .add-to-cart-btn {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
}

.hero-title {
    font-size: 2rem;
}

.container {
    padding: 0 0.5rem;
}

.no-listings-message {
    padding: 2rem 1rem;
}

.empty-icon {
    font-size: 3rem;
}




/* Expected empty selection - no code to fix */

/* Browsed Categories Section */
.browsed-categories-section {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    width: 180px;
    height: 140px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    flex: 0 0 calc(20% - 1.2rem);
}

.category-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #dee2e6;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #495057;
}

.category-card:hover .category-icon {
    transform: scale(1.05);
    background: #e9ecef;
}

.category-content {
    text-align: center;
}

.category-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Staggered Animation Delays */
.category-card:nth-child(1) {
    transition-delay: 0.1s;
}

.category-card:nth-child(2) {
    transition-delay: 0.2s;
}

.category-card:nth-child(3) {
    transition-delay: 0.3s;
}

.category-card:nth-child(4) {
    transition-delay: 0.4s;
}

.category-card:nth-child(5) {
    transition-delay: 0.5s;
}

.category-card:nth-child(6) {
    transition-delay: 0.6s;
}

.category-card:nth-child(7) {
    transition-delay: 0.7s;
}

.category-card:nth-child(8) {
    transition-delay: 0.8s;
}

.no-categories {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .categories-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .category-card {
        width: 120px;
        height: 120px;
    }

    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }

    .category-content h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 1rem;
    }

    .category-card {
        width: 100px;
        height: 100px;
    }

    .category-icon {
        font-size: 1.8rem;
    }

    .category-content h3 {
        font-size: 0.7rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    color: white;
    margin-top: 4rem;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(231, 76, 60, 0.4);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ecf0f1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.quick-link-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.quick-link-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.1));
}

.quick-link-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.quick-link-content p {
    font-size: 0.95rem;
    margin: 0;
    color: #e8e8e8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.quick-link-card.breakfast:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
}

.quick-link-card.lunch:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
}

.quick-link-card.desserts:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
}

.quick-link-card.beverages:hover {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(3, 169, 244, 0.2));
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ecf0f1;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #e74c3c;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .quick-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-link-card {
        padding: 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.5rem;
    }

    .quick-link-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .quick-link-icon {
        font-size: 2rem;
    }
}

.special-card.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

.special-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

.card-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #e74c3c 100%);
}

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

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #e74c3c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-image-placeholder p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.special-card:hover .special-overlay {
    opacity: 1;
    pointer-events: auto;
}

.quick-add-btn {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.special-card:hover .quick-add-btn {
    transform: translateY(0);
}

.quick-add-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

/* Fix for overlay staying visible when hovering over button */
.special-overlay:hover {
    opacity: 1;
}

.quick-add-btn:hover~.special-overlay,
.special-overlay:has(.quick-add-btn:hover) {
    opacity: 1;
}

.btn-icon {
    font-size: 1.2rem;
}

.special-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 3s infinite;
    z-index: 2;
}

.badge-text {
    position: relative;
    z-index: 1;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0.6;
    z-index: 0;
}

/* Card Content Styling */
.card-content {
    padding: 2rem;
}

.card-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.special-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e74c3c;
    position: relative;
}

.animate-price {
    animation: priceGlow 3s infinite;
}

.category-tag {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #dee2e6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes priceGlow {
    0% {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    }

    50% {
        text-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    }

    100% {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .special-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .card-content {
        padding: 1.5rem;
    }

    .quick-add-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Live background effects */
body {
    background: linear-gradient(-45deg, #f8f9fa, #ffffff, #f1f3f4, #e9ecef);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.business-logo-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #718096;
}

.business-logo-small img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.special-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.price-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.special-price {
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.1rem;
}

.original-price {
    color: #a0aec0;
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Category Dishes Sections */
.category-dishes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.category-dishes-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.category-dishes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="%23000" opacity="0.01"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.category-slider-container {
    position: relative;
    margin-top: 40px;
}

.category-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 4rem;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

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

.category-slider:active {
    cursor: grabbing;
}

.category-card {
    flex: 0 0 260px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card .card-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.category-card .card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 3rem;
}

.category-card .card-info {
    padding: 20px;
}

.category-card .restaurant-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.category-card .restaurant-name {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.category-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breakfast-section .category-badge {
    background: linear-gradient(135deg, #ffa726, #ff9800);
}

.lunch-section .category-badge {
    background: linear-gradient(135deg, #42a5f5, #2196f3);
}

.dinner-section .category-badge {
    background: linear-gradient(135deg, #ab47bc, #9c27b0);
}

.dessert-section .category-badge {
    background: linear-gradient(135deg, #ec407a, #e91e63);
}

.category-card .dish-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.category-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #27ae60;
}

.category-card .add-to-cart-btn {
    background: #111111;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.category-card .add-to-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Slider Navigation Controls */
.slider-nav-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    font-size: 1.5rem;
    color: #333;
}

.slider-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn.prev-btn {
    left: -25px;
}

.slider-nav-btn.next-btn {
    right: -25px;
}

/* Mobile Slider Navigation */
.mobile-slider-nav {
    display: none;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-slider-nav .slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    color: #333;
}

.mobile-slider-nav .slider-btn:hover {
    background: white;
    border-color: #667eea;
    color: #667eea;
    transform: scale(1.05);
}

/* No dishes message */
.no-dishes-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-dishes-message .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-dishes-message h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.no-dishes-message p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Category Slider Responsive Design */
@media (max-width: 768px) {
    .category-dishes-section {
        padding: 60px 0;
    }

    .slider-nav-controls {
        display: none;
    }

    .mobile-slider-nav {
        display: flex;
    }

    .category-card {
        flex: 0 0 240px;
    }

    .category-slider {
        padding: 10px 0 20px 0;
    }
}

@media (max-width: 480px) {
    .category-card {
        flex: 0 0 220px;
    }

    .category-card .card-image-wrapper {
        height: 160px;
    }

    .category-card .card-info {
        padding: 15px;
    }

    .category-card .dish-title {
        font-size: 1rem;
    }
}