@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f5f0;
    color: #2d3748;
}

.hidden {
    display: none !important;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
}

.body-lock {
    overflow: hidden;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dish-card {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-tab {
    transition: all 0.3s ease;
}

.category-tab.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    transform: translateY(-2px);
}

.search-input {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.menu-header {
    background-color: var(--color-primary);
    color: white;
    padding: 2rem 0 0.5rem;
}

.category-header {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.category-header:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
}

.unavailable {
    opacity: 0.6;
    filter: grayscale(50%);
}

.unavailable::after {
    content: 'Non disponibile';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}


.cart-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 25px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    transition: all 0.3s ease;
}

.cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-modal {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.cart-content {
    background: white;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f9fafb;
}

.quantity-btn {
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    transform: scale(1.1);
}






