/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.archive.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 2.8em;
    display: flex;
    align-items: flex-start;
}
.woocommerce ul.products li.product a img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/**kleur prijs**/
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price, 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	color:green;
}
.woocommerce-result-count{
	display:none;
}
.separate-containers .site-main{
	margin-top:0;
	min-height: 100vh;
}
.separate-containers .inside-article{
	padding:0 1em;
}
.single-product .site-content {
    padding-bottom: 2em;
}

.wp-block-video video{
	width:560px;
	height:560px;
}
@media screen and (max-width:764px) {
    .wp-block-video video{
width: 100vw;
	}}

/**----------WhatsAPp-----------**/
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.2s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}
/**---------Categoriebutton op Single product page-----**/

.single-product .product_meta {
    margin-top: 2em;
}

/* Verberg het "Categorie:" label maar behoud de links */
.single-product .product_meta .posted_in {
    font-size: 0;
}

/* Button stijl */
.single-product .product_meta .posted_in a {
    display: inline-block;
    padding: 6px 16px;
    background-color: #f0f0f0;
    color: #333 !important;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem; /* categorienaam weer zichtbaar */
    margin-right: 6px;
    transition: background-color 0.2s ease;
}

/* Voeg "Bekijk meer » " toe vóór de categorienaam */
.single-product .product_meta .posted_in a::before {
    content: 'Bekijk meer → ';
}

.single-product .product_meta .posted_in a:hover {
    background-color: #e0e0e0;
}