/* Algemene configurator wrapper */
#composite-configurator {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: "museo-sans", Sans-serif;
}

/* Groepen titels */
.wooco_component_name {
    font-size: 1.4em;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* Product grid */
.wooco_component_product_selection_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Individuele productkaarten */
.wooco_component_product_selection_grid_item {
    flex: 1 1 calc(30% - 15px);
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-effect op productkaarten */
.wooco_component_product_selection_grid_item:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Overige stijlen */
.wooco_component_product_selection_grid_item_name {
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
    margin-bottom: 8px;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .cart {
        gap: 10px;
    }

    .cart .single_add_to_cart_button {
        padding: 8px 20px;
        font-size: 1em;
    }

    .cart .qty {
        width: 50px;
        font-size: 1em;
    }
}
