/* Custom Catalog UI Styles */
.catalog-container {
    font-family: Arial, sans-serif;
    background: #fdfbf7;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 15px;
}
.catalog-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.catalog-search {
    flex: 2;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.catalog-filter, .catalog-sort {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
}
.brand-group {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.brand-header {
    padding: 15px 10px;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.brand-header:hover {
    background: #f9f9f9;
}
.brand-items {
    display: none;
    padding: 10px;
    background: #fff;
}
.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}
.product-label {
    flex-grow: 1;
    font-size: 14px;
}
.product-price {
    font-weight: bold;
    color: #555;
}
.qty-container {
    display: flex;
    align-items: center;
    gap: 5px;
}
.qty-input {
    width: 60px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.catalog-footer {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ccc;
}
.hide-ls-default .answer-container {
    display: none !important;
}