.elementor-kit-63{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-63 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1090px;}.e-con{--container-max-width:1090px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 1) Zorg dat elk producttegel een flexkaart is */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
	flex-wrap: wrap;
  height: 100%;
}

/* 2) Link/inhoud rekt mee tot gelijke hoogte */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 3) Afbeelding: vaste verhouding en bijsnijden */
.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;              /* kies 1/1 of wat je gebruikt in Customizer */
  object-fit: cover;
  display: block;
}

/* 4) Titelhoogte normaliseren (2 regels) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  line-height: 1.2;
  min-height: 2.4em;                /* 2 regels x 1.2 */
  display: -webkit-box;
  -webkit-line-clamp: 2;            /* afkappen na 2 regels */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 5) Prijs en knop altijd onderaan */
.woocommerce ul.products li.product .price {
  margin-top: auto;
}
.woocommerce ul.products li.product .button {
  margin-top: 0.5rem;
}

/* Fallback voor theme-specifieke wrappers */
.products .product,
.products .product .product-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Max 2 regels voor producttitel */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* aantal regels */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3em;            /* zorgt dat alle titels visueel even hoog lijken */
}
/* Alle productvakjes gelijke hoogte */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Binnenkant netjes vullen */
.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
    display: block;
}

/* Optioneel: vaste minimale hoogte voor de hele kaart */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    min-height: 320px; /* pas dit aan op je design */
}/* End custom CSS */