/* สไตล์สำหรับเมนูที่ไม่มีรูป (แบบลิสต์) */
.menu-item-list {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 10px;
    transition: 0.3s;
}

.menu-item-list:hover {
    transform: translateX(10px);
    background: #fff5eb;
}

.menu-item-list .item-name {
    font-weight: 400;
    color: var(--dark-color);
}

.menu-item-list .item-price {
    color: var(--accent-color);
    font-weight: 600;
}

/* ปรับ Grid ให้รองรับทั้ง Card และ List */
.menu-category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}