.product-category {
    margin-bottom: 20px;
}
.category-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.category-icon {
    margin-right: 10px;
}
.product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 240px;
    overflow-y: auto;
}
.product-option {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.product-option.selected {
    border-color: #007bff;
    background-color: #e7f3ff;
}
.product-name {
    font-weight: 500;
}
.product-price {
    color: #555;
}
.search-bar {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
