.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.burger-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.menu-item h3 {
    color: #000000;
    margin-bottom: 12px;
    font-size: 1.4em;
    font-weight: 600;
}

.menu-item p {
    margin: 10px 0;
    color: #000000;
    line-height: 1.4;
    font-size: 0.95em;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff0000;
}

.item-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.add-to-cart,
.add-to-favorites {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.add-to-cart {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.6);
}

.favorite-heart {
    font-size: 28px;
    color: #bbb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.favorite-heart:hover {
    color: #ff0000;
    transform: scale(1.3);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.favorite-heart.active {
    color: #ff0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 1);
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

.customize-burger {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.customize-burger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.6);
}