.elementor-154 .elementor-element.elementor-element-ca91766{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-154 .elementor-element.elementor-element-be94770 .elementor-heading-title{color:#000000;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for shortcode, class: .elementor-element-8a7aa2e *//* Voorkom lege grid-items door WooCommerce pseudo elementen */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* WooCommerce productgrid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
}

/* Productkaart */
.woocommerce ul.products li.product {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #ffffff;
    box-sizing: border-box;
}

/* Productafbeeldingen */
.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Producttitels */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #111111 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    min-height: 52px;
    margin-bottom: 10px;
    text-align: center;
}

/* Productprijzen */
.woocommerce ul.products li.product .price {
    color: #111111 !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    min-height: 28px;
    margin-bottom: 18px;
    text-align: center;
}

/* WooCommerce knoppen */
.woocommerce ul.products li.product .button {
    background-color: #ffa000 !important;
    border-color: #ffa000 !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-top: auto !important;
    align-self: center;
    padding: 12px 18px;
}

/* Hover effect */
.woocommerce ul.products li.product .button:hover {
    background-color: #e69100 !important;
    border-color: #e69100 !important;
    color: #ffffff !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel */
@media (max-width: 767px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(1, 1fr);
    }
}/* End custom CSS */