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

body {
    font-family: 'Noto Sans', sans-serif;
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
    user-select: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* Header Styles */
.menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.restaurant-title {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.date-display {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.menu-subtitle {
    font-style: italic;
    color: #777;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Menu Section Styles */
.menu-section {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.section-title {
    display: flex;
    align-items: center;
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-number {
    background: #f0f0f0;
    color: #666;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 1rem;
    font-weight: 500;
}

.dishes-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dish Card Styles */
.dish-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.dish-card:hover::before {
    left: 100%;
}

.dish-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.dish-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #d0d0d0;
}

.dish-info {
    flex: 1;
    padding-right: 1rem;
}

.dish-name {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.dish-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.dish-price-wrapper {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.dish-price {
    /* This class remains for targeting, but styling is moved to the wrapper */
}

/* Footer Styles */
.menu-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
}

.total-label {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.total-amount {
    font-family: 'Cal Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.menu-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .restaurant-title {
        font-size: 2rem;
    }
    
    .dish-card {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    
    .dish-info {
        padding-right: 60px; /* Space for the price */
    }
    
    .dish-price-wrapper {
        position: absolute;
        top: 1.5rem; /* Same as dish-card padding */
        right: 1.5rem; /* Same as dish-card padding */
        padding-left: 0;
        font-size: 1.1rem;
    }

    .dish-name {
        flex-grow: 0; /* Reset from previous mobile style */
    }

    .dish-description {
        flex-basis: auto; /* Reset from previous mobile style */
        margin-top: 0.5rem;
    }
    
    .total-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.3rem;
    }
    
    .dish-name {
        font-size: 1rem;
    }
    
    .dish-description {
        font-size: 0.85rem;
    }
}