/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Light Theme (Default) */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D4A574;
    --accent-color: #F5E6D3;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-main: #FFFFFF;
    --border-color: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --gradient-primary: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 69, 19, 0.5), rgba(212, 165, 116, 0.5));
    --hero-text-color: #FFFFFF;
}

/* Dark Theme with Glassmorphism */
[data-theme="dark"] {
    --primary-color: #D4A574;
    --secondary-color: #F5E6D3;
    --accent-color: rgba(58, 46, 31, 0.6);
    --text-dark: #FFFFFF;
    --text-light: #E0E0E0;
    --white: rgba(30, 30, 30, 0.8);
    --bg-light: rgba(40, 40, 40, 0.7);
    --bg-main: #1A1A1A;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-hover: rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #D4A574 0%, #F5E6D3 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(40, 32, 24, 0.6));
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --hero-text-color: #FFFFFF;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Hide mobile menu close button on desktop */
.mobile-menu-close {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.theme-toggle {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
}

/* Desktop theme toggle - only visible on desktop */
.desktop-theme-toggle {
    display: flex;
}

/* Mobile theme toggle - hidden on desktop */
.mobile-theme-toggle {
    display: none;
}

[data-theme="dark"] .theme-toggle {
    background: rgba(40, 40, 40, 0.9);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(20deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px var(--shadow);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .btn-primary {
    background: var(--gradient-primary);
    color: #1A1A1A;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
    filter: brightness(1.1);
}

[data-theme="dark"] .btn-primary:hover {
    filter: brightness(1.15);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

/* btn-outline in regular sections (not hero) */
.best-sellers .btn-outline,
section:not(.hero) .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.best-sellers .btn-outline:hover,
section:not(.hero) .btn-outline:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    transform: translateY(-2px);
}

[data-theme="dark"] .best-sellers .btn-outline,
[data-theme="dark"] section:not(.hero) .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

[data-theme="dark"] .best-sellers .btn-outline:hover,
[data-theme="dark"] section:not(.hero) .btn-outline:hover {
    background: var(--primary-color);
    color: #1A1A1A;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

/* Hero Section */
.hero {
    background-image: url('Gillys Cafe_hero_01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--hero-text-color);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--hero-text-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--hero-text-color);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #FFFFFF;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Section Styles */
section {
    padding: 5rem 0;
    transition: background-color 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Breakfast Extras Header */
.breakfast-extras-header {
    margin-top: 3rem;
}

.extra-egg-note {
    margin-top: 0.5rem !important;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

[data-theme="dark"] .section-header h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.reservation .section-header h2 {
    color: var(--primary-color);
}

[data-theme="dark"] .reservation .section-header h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 12px rgba(212, 165, 116, 0.4);
}

.section-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

[data-theme="dark"] .section-header p {
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .about {
    background: var(--bg-main);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

.about-content {
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

[data-theme="dark"] .about-content p {
    color: var(--text-light);
}

/* Senior Discount Banner */
.senior-discount-banner {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.senior-discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.discount-content {
    position: relative;
    z-index: 1;
}

.discount-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.discount-text {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.discount-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

[data-theme="dark"] .senior-discount-banner {
    background: var(--gradient-primary);
    box-shadow: 0 8px 35px rgba(212, 165, 116, 0.4);
}

[data-theme="dark"] .discount-highlight {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Locations Section */
.locations {
    background: var(--white);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .locations {
    background: var(--bg-main);
}

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

.location-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .location-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

[data-theme="dark"] .location-card:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .location-card h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.hours {
    margin-bottom: 2rem;
}

.hours p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

[data-theme="dark"] .hours p {
    color: var(--text-light);
}

.location-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Best Sellers Section */
.best-sellers {
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .best-sellers {
    background: var(--bg-main);
}

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

.menu-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .menu-item {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

[data-theme="dark"] .menu-item:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.menu-image {
    width: 100%;
    height: 200px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.placeholder-image {
    font-size: 4rem;
}

.menu-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 1rem 1.5rem 0.5rem;
}

.menu-item p {
    color: var(--text-light);
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.menu-item .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 1.5rem 1.5rem;
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

/* Menu Section */
.menu-section {
    background: var(--white);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .menu-section {
    background: var(--bg-main);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Menu Navigation Tabs */
.menu-nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 0 1rem;
}

.menu-nav-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.menu-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.menu-nav-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

[data-theme="dark"] .menu-nav-btn {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .menu-nav-btn:hover {
    background: var(--primary-color);
    color: #1A1A1A;
}

[data-theme="dark"] .menu-nav-btn.active {
    background: var(--gradient-primary);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

/* Kids Menu Button - Special Styling */
.menu-nav-btn-kids {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    border-color: transparent;
    color: white !important;
    position: relative;
    animation: bounce 2s infinite;
}

.menu-nav-btn-kids:hover {
    background: linear-gradient(135deg, #FF8FB3 0%, #FFC470 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.menu-nav-btn-kids.active {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    color: white !important;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

[data-theme="dark"] .menu-nav-btn-kids {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    color: white !important;
}

[data-theme="dark"] .menu-nav-btn-kids:hover {
    background: linear-gradient(135deg, #FF8FB3 0%, #FFC470 100%);
}

[data-theme="dark"] .menu-nav-btn-kids.active {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    color: white !important;
}

.menu-items-container {
    margin-top: 0;
}

/* Menu Section Content - Hidden by default */
.menu-section-content {
    display: none;
}

.menu-section-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.menu-section-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Menu Section Headers */
.menu-section-header {
    grid-column: 1 / -1;
    margin: 4rem 0 2rem;
    text-align: center;
}

.menu-section-header:first-child {
    margin-top: 0;
}

.menu-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

[data-theme="dark"] .menu-section-header h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.3);
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

[data-theme="dark"] .section-divider {
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.4);
}

.menu-item-card {
    background: var(--bg-light);
    padding: 0;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .menu-item-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-item-card:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 12px 35px var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

[data-theme="dark"] .menu-item-card:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    border-left-color: var(--secondary-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.05);
}

.coffee-image {
    background: linear-gradient(135deg, #6F4E37 0%, #8B4513 100%);
    color: var(--white);
}

.coffee-image i {
    font-size: 4rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.menu-item-card:hover .coffee-image i {
    transform: scale(1.1);
    opacity: 1;
}

.drink-image {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: var(--white);
}

.drink-image i {
    font-size: 4rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.menu-item-card:hover .drink-image i {
    transform: scale(1.1);
    opacity: 1;
}

.menu-item-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 1rem 1.5rem 0.5rem;
}

[data-theme="dark"] .menu-item-card h3 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Modern, clear description styling */
.menu-item-card p {
    color: var(--text-light);
    margin: 0.75rem 1.5rem 1rem;
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
    line-height: 1.8;
    letter-spacing: 0.015em;
    font-weight: 400;
    word-wrap: break-word;
    hyphens: auto;
    background: rgba(139, 69, 19, 0.03);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

[data-theme="dark"] .menu-item-card p {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(212, 165, 116, 0.05);
}

.menu-item-card:hover p {
    background: rgba(139, 69, 19, 0.06);
    border-left-color: var(--primary-color);
    transform: translateX(2px);
}

[data-theme="dark"] .menu-item-card:hover p {
    background: rgba(212, 165, 116, 0.08);
    border-left-color: var(--primary-color);
}

.menu-item-card .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0 1.5rem 1.5rem;
}

.menu-item-card .price-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.menu-item-card .price-options .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0;
    display: block;
}

[data-theme="dark"] .menu-item-card .price-options .price {
    color: var(--primary-color);
    text-shadow: 0 1px 3px rgba(212, 165, 116, 0.3);
}

.menu-item-card.hidden {
    display: none;
}

/* Kids Menu Special Styling */
.kids-menu-section {
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.3) 0%, rgba(255, 228, 196, 0.3) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
}

[data-theme="dark"] .kids-menu-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 179, 71, 0.1) 100%);
}

.kids-menu-header h2 {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    animation: rainbow 3s ease infinite;
}

@keyframes rainbow {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.kids-category-header {
    margin: 3rem 0 1.5rem;
    text-align: center;
}

.kids-category-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #FF6B9D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.kids-category-header h3::before,
.kids-category-header h3::after {
    content: '⭐';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: twinkle 1.5s ease-in-out infinite;
}

.kids-category-header h3::before {
    left: 0;
}

.kids-category-header h3::after {
    right: 0;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}

[data-theme="dark"] .kids-category-header h3 {
    color: #FFB347;
}

.kids-menu-card {
    border: 3px solid #FF6B9D;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kids-menu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.kids-menu-card:hover::before {
    animation: shine 0.5s ease;
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.kids-menu-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFB347;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.kids-menu-card h3 {
    color: #FF6B9D;
    font-weight: 700;
}

.kids-menu-card .price {
    color: #FF6B9D;
    font-weight: 700;
    font-size: 1.4rem;
}

[data-theme="dark"] .kids-menu-card {
    border-color: #FFB347;
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.3);
}

[data-theme="dark"] .kids-menu-card:hover {
    border-color: #FF6B9D;
    box-shadow: 0 10px 30px rgba(255, 179, 71, 0.5);
}

[data-theme="dark"] .kids-menu-card h3 {
    color: #FFB347;
}

[data-theme="dark"] .kids-menu-card .price {
    color: #FFB347;
}

/* Allergy Disclaimer */
.allergy-disclaimer {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

[data-theme="dark"] .allergy-disclaimer {
    background: rgba(212, 165, 116, 0.1);
    border-left-color: var(--primary-color);
}

.disclaimer-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

[data-theme="dark"] .disclaimer-text {
    color: rgba(255, 255, 255, 0.9);
}

.disclaimer-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.dietary-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.dietary-legend span {
    padding: 0.5rem 1rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

[data-theme="dark"] .dietary-legend span {
    background: rgba(212, 165, 116, 0.15);
    border-color: rgba(212, 165, 116, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.dietary-legend strong {
    color: var(--primary-color);
    font-weight: 700;
}

[data-theme="dark"] .dietary-legend strong {
    color: var(--primary-color);
}

/* Footer Allergy Note */
.footer-allergy-note {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-allergy-note p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

[data-theme="dark"] .footer-allergy-note {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-allergy-note p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-allergy-note strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.dietary-legend-footer {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.8;
}

[data-theme="dark"] .dietary-legend-footer {
    color: rgba(255, 255, 255, 0.7);
}

.dietary-legend-footer span {
    margin: 0 0.25rem;
}

.dietary-legend-footer strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .testimonials {
    background: var(--bg-main);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .testimonial-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

[data-theme="dark"] .testimonial-card:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Reservation Section */
.reservation {
    background: var(--bg-light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .reservation {
    background: var(--bg-main);
}

.reservation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reservation-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .reservation-card {
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.reservation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

[data-theme="dark"] .reservation-card:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.reservation-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .reservation-icon {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

.reservation-card:hover .reservation-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

[data-theme="dark"] .reservation-card:hover .reservation-icon {
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.6);
}

.reservation-icon i {
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.reservation-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

[data-theme="dark"] .reservation-card h3 {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.reservation-card p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 500;
}

[data-theme="dark"] .reservation-card p {
    color: var(--text-light);
}

.reservation-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.reservation-card a:hover {
    color: #6B3410;
    background: rgba(139, 69, 19, 0.1);
    text-decoration: none;
    transform: scale(1.05);
}

[data-theme="dark"] .reservation-card a {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

[data-theme="dark"] .reservation-card a:hover {
    color: var(--secondary-color);
    background: rgba(212, 165, 116, 0.2);
    text-shadow: 0 2px 12px rgba(212, 165, 116, 0.6);
}

.reservation-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.75rem;
    opacity: 0.9;
}

[data-theme="dark"] .reservation-note {
    color: var(--text-light);
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: var(--white);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .contact {
    background: var(--bg-main);
}


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

.contact-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .contact-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

[data-theme="dark"] .contact-card:hover {
    background: rgba(45, 45, 45, 0.7);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #6B3410;
    text-decoration: underline;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.map-container {
    margin-top: 3rem;
    text-align: center;
}

.map-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .location-info {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.location-info p:last-child {
    margin-bottom: 0;
}

.location-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

[data-theme="dark"] .location-info p {
    color: var(--text-light);
}

[data-theme="dark"] .location-info i,
[data-theme="dark"] .location-info strong {
    color: var(--primary-color);
    text-shadow: 0 1px 3px rgba(212, 165, 116, 0.3);
}

.map-note {
    margin-top: 1rem;
    color: var(--text-light);
}

.map-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.map-note a:hover {
    color: #6B3410;
    text-decoration: underline;
}

.map-note i {
    font-size: 0.9rem;
}

.opening-hours {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .opening-hours {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.opening-hours h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.opening-hours p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .footer {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.chatbot-toggle:hover {
    background: #6B3410;
    transform: scale(1.1);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.order-modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal.active .order-modal-content {
    transform: scale(1);
}

[data-theme="dark"] .order-modal-content {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.order-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.order-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

[data-theme="dark"] .order-modal-content h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.order-modal-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.order-option {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.order-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.order-option.uber-eats:hover {
    background: #06C167;
    color: var(--white);
    border-color: #06C167;
}

.order-option.doordash:hover {
    background: #FF3008;
    color: var(--white);
    border-color: #FF3008;
}

[data-theme="dark"] .order-option {
    background: rgba(40, 40, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

[data-theme="dark"] .order-option:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.order-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.order-option.uber-eats:hover .order-icon {
    background: rgba(255, 255, 255, 0.2);
}

.order-option.doordash:hover .order-icon {
    background: rgba(255, 255, 255, 0.2);
}

.order-option h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.order-option:hover h3 {
    color: var(--white);
}

.order-option p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

.order-option:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 600px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .chatbot-container {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.chatbot-container.active {
    display: flex !important;
}

/* Ensure chatbot is hidden by default */
.chatbot-container:not(.active) {
    display: none !important;
}

.chatbot-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002;
    cursor: default;
}

[data-theme="dark"] .chatbot-header {
    background: rgba(139, 69, 19, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chatbot-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
    touch-action: manipulation;
    z-index: 1002;
    position: relative;
    min-width: 48px;
    min-height: 48px;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.chatbot-close:hover,
.chatbot-close:active {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

[data-theme="dark"] .chatbot-messages {
    background: rgba(25, 25, 25, 0.5);
}

.chatbot-message {
    display: flex;
    margin-bottom: 0.5rem;
}

.chatbot-message.user-message {
    justify-content: flex-end;
}

.chatbot-message.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    word-wrap: break-word;
}

.user-message .message-content {
    background: var(--primary-color);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.bot-message .message-content {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 5px;
}

[data-theme="dark"] .bot-message .message-content {
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

.message-content p {
    margin: 0.25rem 0;
    line-height: 1.5;
}

.message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
}

.message-content li {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.chatbot-input-container {
    display: flex;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .chatbot-input-container {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#chatbotInput {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

#chatbotInput:focus {
    border-color: var(--primary-color);
}

#chatbotSend {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

#chatbotSend:hover {
    background: #6B3410;
}

#chatbotSend:disabled {
    background: var(--text-light);
    cursor: not-allowed;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }

    [data-theme="dark"] .nav-menu {
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
        padding: 0.5rem 1rem;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
    }

    /* Mobile Menu Close Button - Show only on mobile */
    .mobile-menu-close {
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    [data-theme="dark"] .mobile-menu-close {
        border-bottom-color: rgba(255, 255, 255, 0.15);
    }

    .mobile-close-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        background: transparent;
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        margin: 0 auto;
        max-width: 200px;
    }

    .mobile-close-btn i {
        font-size: 1.2rem;
    }

    .mobile-close-btn:hover,
    .mobile-close-btn:active {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    }

    [data-theme="dark"] .mobile-close-btn {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    [data-theme="dark"] .mobile-close-btn:hover,
    [data-theme="dark"] .mobile-close-btn:active {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
    }

    /* Hide desktop theme toggle on mobile */
    .desktop-theme-toggle {
        display: none !important;
    }

    /* Show mobile theme toggle on mobile */
    .mobile-theme-toggle {
        display: block;
        margin-top: 1.5rem;
        padding: 1rem;
        padding-top: 1.5rem;
        border-top: 2px solid var(--border-color);
        list-style: none;
    }

    [data-theme="dark"] .mobile-theme-toggle {
        border-top-color: rgba(255, 255, 255, 0.15);
    }

    .theme-toggle.mobile {
        width: 100%;
        height: auto;
        min-height: 52px;
        border-radius: 12px;
        padding: 0.875rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.875rem;
        font-size: 1.05rem;
        background: var(--primary-color);
        color: var(--white);
        border: 2px solid var(--primary-color);
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
        transition: all 0.3s ease;
    }

    .theme-toggle.mobile span {
        font-weight: 600;
        font-size: 1.05rem;
    }

    .theme-toggle.mobile i {
        font-size: 1.2rem;
    }

    .theme-toggle.mobile:hover,
    .theme-toggle.mobile:active {
        background: #6B3410;
        border-color: #6B3410;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(139, 69, 19, 0.4);
    }

    [data-theme="dark"] .theme-toggle.mobile {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    }

    [data-theme="dark"] .theme-toggle.mobile:hover,
    [data-theme="dark"] .theme-toggle.mobile:active {
        background: #B8945F;
        border-color: #B8945F;
        box-shadow: 0 6px 16px rgba(212, 165, 116, 0.5);
    }

    .nav-actions {
        position: fixed;
        left: -100%;
        top: auto;
        bottom: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1.5rem 1rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
        gap: 1rem;
        z-index: 999;
        box-shadow: 0 -4px 20px var(--shadow);
        max-height: 60vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    [data-theme="dark"] .nav-actions {
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    .nav-actions.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Fix hero image on mobile */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 500px;
        image-rendering: -webkit-optimize-contrast;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .hero::before {
        opacity: 0.4;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .menu-grid,
    .menu-section-header {
        margin: 3rem 0 1.5rem;
    }

    .menu-section-header h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }


    .menu-items-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .hero-buttons,
    .location-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        width: 100%;
        min-height: 48px;
        margin: 0;
    }

    .nav-actions .btn-primary,
    .nav-actions .btn-secondary {
        width: calc(100% - 2rem);
        max-width: 100%;
    }

    .theme-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    [data-theme="dark"] .theme-toggle {
        background: rgba(40, 40, 40, 0.9);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    }

    /* Better mobile spacing */
    .container {
        padding: 0 20px;
    }

    section {
        padding: 3.5rem 0;
    }

    .menu-filters {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        min-height: 40px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    /* Fix hero image on small mobile */
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        min-height: 450px;
        image-rendering: -webkit-optimize-contrast;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }

    .hero::before {
        opacity: 0.35;
        background: linear-gradient(135deg, rgba(139, 69, 19, 0.3), rgba(212, 165, 116, 0.3));
    }

    [data-theme="dark"] .hero::before {
        opacity: 0.4;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(40, 32, 24, 0.5));
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .senior-discount-banner {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .discount-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }

    .discount-text {
        font-size: 1.1rem;
    }

    .discount-highlight {
        font-size: 1.4rem;
    }

    .menu-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Mobile Chatbot Styles */
    .chatbot-container {
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
        position: fixed;
        display: flex;
        flex-direction: column;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .order-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .order-modal-content h2 {
        font-size: 1.5rem;
    }

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

    .order-option {
        padding: 1.5rem 1rem;
    }

    .order-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .order-option h3 {
        font-size: 1.3rem;
    }

    .chatbot-toggle {
        bottom: 10px;
        right: 10px;
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        min-width: 56px;
        min-height: 56px;
        z-index: 1000;
    }

    .chatbot-header {
        padding: 1rem;
        position: relative;
        z-index: 1002;
        flex-shrink: 0;
        min-height: 60px;
    }

    .chatbot-close {
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        font-size: 1.6rem;
        background: rgba(255, 255, 255, 0.4);
        border: 3px solid rgba(255, 255, 255, 0.6);
        z-index: 1002;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .chatbot-close:active {
        background: rgba(255, 255, 255, 0.6);
        transform: scale(0.9);
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    .chatbot-info h3 {
        font-size: 1rem;
    }

    .chatbot-info p {
        font-size: 0.8rem;
    }

    .chatbot-messages {
        padding: 1rem;
        padding-bottom: 1rem;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
    }

    .chatbot-input-container {
        padding: 1rem;
        position: sticky;
        bottom: 0;
        background: var(--white);
        z-index: 5;
        flex-shrink: 0;
        border-top: 1px solid var(--border-color);
    }

    [data-theme="dark"] .chatbot-input-container {
        background: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
    }

    #chatbotInput {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
    }

    #chatbotSend {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    /* Improve mobile touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .theme-toggle {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    [data-theme="dark"] .theme-toggle {
        background: rgba(40, 40, 40, 0.9);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    }

    /* About Section - Mobile */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1; /* Show image first on mobile */
    }

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

    /* Better mobile spacing */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .menu-item-card,
    .location-card,
    .testimonial-card,
    .contact-card,
    .reservation-card {
        margin-bottom: 1.5rem;
    }

    /* Improve mobile menu grid */
    .menu-grid,
    .menu-items-container {
        gap: 1.5rem;
    }

    .testimonials-grid,
    .contact-grid,
    .reservation-content {
        gap: 1.5rem;
    }
}

/* Mobile Chatbot Styles for Tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .chatbot-container {
        width: calc(100% - 40px);
        height: calc(100vh - 120px);
        bottom: 90px;
        right: 20px;
        left: 20px;
        max-width: 100%;
        position: fixed;
    }

    .chatbot-toggle {
        bottom: 15px;
        right: 15px;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }

    .chatbot-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .chatbot-messages {
        padding: 1rem;
    }

    .message-content {
        max-width: 85%;
    }

    #chatbotInput {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

