/* ==========================================================================
   BASIS & ALGEMEEN
   ========================================================================== */

body {
	font-family: 'Albert Sans';
	font-size: 16px;
	color: #3a3a3a;
	font-weight: 300;
	padding-top: 185px;
	overflow-x: hidden;
}

body.woocommerce-checkout {
	padding-top: 0;
}

.mollie-gateway-icon {
	height: 28px !important;
}

body.woocommerce-order-received {
	padding-top: 185px;
}

.gt_switcher-popup span:first-of-type {
	display: none !important;
}

.gt_white_content {
	border-radius: 20px !important;
}

.gt_white_content a {
	border: 0 none !important; 
}

.mob-nav .toggle-submenu {
    color: inherit;
    text-decoration: none;
    border: none;
    background: none;
}

.swatch::before {
	content: unset !important;
}

.featured-body ul.swatch {
    display: grid;
    grid-template-columns: repeat(7, 22px);
    gap: 15px;
    padding: 4px 4px 4px 24px !important; /* 24px = 20px label + 4px voor de ring, !important overschrijft inline style */
}
.mob-nav .toggle-submenu[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mob-nav .toggle-submenu i {
    transition: transform 0.2s ease;
}

/* Focus States */
input:focus,
.btn:focus,
.form-control:focus,
.accordion-button:focus {
	outline: none;
	box-shadow: none !important;
}

a.glink img {
	height: 15px !important;
}
/*
a.glink {
	display: block !important;
	line-height: 1 !important;
}*/

/* Links */
a {
	text-decoration: none;
	color: #b01f25;
}

.text-dark,
.action-buttons a {
	color: #3a3a3a !important;
}

/* Headings */
h1 {
	color: #1d204c;
}

h3 {
	color: #1D204C;
}

.description-container h2 {
	font-size: 1.3rem;
}

.description-container h3 {
	font-size: 1.1rem;
}

.content img {
	max-width: 100%;
  	height: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	border-radius: 20px;
}

.btn span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: .5s;
}

.btn .bi {
	transition: .5s;
}

.btn:hover .bi {
	padding-left: 5px;
}

.btn-primary {
	background-color: #01982b;
	border-radius: 20px;
	color: #fff;
	height: 45px;
	border-color: #01982b;
	font-weight: 500;
	padding-left: 25px;
	padding-right: 25px;
}

.btn-primary:hover {
	background-color: #B01F25;
	border-color: #B01F25;
}

.btn-danger {
	background-color: #b01f25;
	border-color: #b01f25;
}

.btn-warning {
	background-color: #1d204c;
	border-color: #1d204c;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	border: 0 none;
}

/* Button Items */
.button-item {
	background-color: #F2F2F2;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
}

.button-item:hover {
	background-color: #cfcfcf;
}

.button-item.red {
	background-color: #B01F25;
}

.button-item.red:hover {
	background-color: #8a161b;
}

.button-item.green {
	background-color: #01982b;
}

.button-item.green:hover {
	background-color: #B01F25;
}

/* ==========================================================================
   PRODUCT IMAGE CONTAINER
   ========================================================================== */

.product-image-container {
	position: relative;
	overflow: hidden;
	background-color: #f5f5f5;
	aspect-ratio: 1 / 1; /* Zorgt voor vierkante containers */
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image-container .card-img-top,
.product-image-container img {
	width: 100%;
	height: 100%;
	object-fit: contain; /* Toont volledige afbeelding zonder croppen */
	mix-blend-mode: multiply;
	padding: 1rem;
}

.product-image-container .card-img-top:not(.secondary-image) {
	transition: opacity 0.3s ease;
}

.product-image-container .secondary-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.3s ease;
	mix-blend-mode: multiply;
	object-fit: contain;
	padding: 1rem;
}

/* Bij hover: secundaire wordt zichtbaar, primaire verdwijnt */
@media (hover: hover) and (pointer: fine) {
    .product-image-container:hover .card-img-top:not(.secondary-image) {
        opacity: 0;
    }
    
    .product-image-container:hover .secondary-image {
        opacity: 1;
    }
}

/* Voor touch devices: zorg dat secondary image altijd verborgen blijft */
@media (hover: none) and (pointer: coarse) {
    .product-image-container .secondary-image {
        opacity: 0 !important;
    }
    
    .product-image-container .card-img-top:not(.secondary-image) {
        opacity: 1 !important;
    }
}

/* ==========================================================================
   CART FORM - QUANTITY & ADD TO CART BUTTON ALIGNMENT
   ========================================================================== */

.woocommerce-cart div.product form.cart {
    display: flex;
    align-items: stretch;
    gap: 15px;
    width: 100%;
}

.woocommerce div.product form.cart .quantity {
    flex: 0 0 auto;
    margin: 0;
}

.woocommerce div.product form.cart .quantity select.qty {
    height: 45px;
    min-width: 80px;
    border-radius: 20px;
    border: 0 none;
    background-color: #fff;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1;
    margin: 0;
    height: 45px;
    width: 100%;
}

/* Voor variabele producten met variatie selectie */
.woocommerce div.product form.cart .variations_button {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-top: 1rem;
    width: 100%;
}

.woocommerce div.product form.cart .variations_button .quantity {
    flex: 0 0 auto;
    margin: 0;
}

.woocommerce div.product form.cart .variations_button .single_add_to_cart_button {
    flex: 1;
    margin: 0;
    height: 45px;
    width: 100%;
}

/* Zorg dat de wrapper geen extra padding/margin heeft */
.woocommerce div.product div.summary .wrap {
    padding: 20px;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 15px;
    width: 100%;
}

.woocommerce-variation-add-to-cart .quantity {
    margin-right: 0 !important;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .woocommerce div.product form.cart {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
    
    .woocommerce div.product form.cart .quantity {
        flex: 0 0 auto;
    }
    
    .woocommerce div.product form.cart .quantity select.qty {
        min-width: 70px;
        padding: 0 10px;
    }
    
    .woocommerce div.product form.cart .single_add_to_cart_button {
        flex: 1;
        font-size: 13px;
        width: 100%;
    }
    
    .woocommerce div.product form.cart .variations_button {
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }
}

/* ==========================================================================
   WOOCOMMERCE BUTTONS
   ========================================================================== */

.woocommerce div.product form.cart .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
button#place_order,
.add_to_cart_button {
	background-color: #01982b;
	border-radius: 20px;
	color: #fff;
	height: 45px;
}

.add_to_cart_button {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 2.8;
	font-weight: bold;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
button#place_order:hover,
.add_to_cart_button:hover {
	background-color: #b01f25;
}

.add_to_cart_button:hover {
	color: #fff;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin-bottom: 0;
	padding: .618em 1em;
	font-size: 18px;
	color: #fff;
}

.button.wc-backward {
	background-color: rgba(243,244,244,1) !important;
	padding: 11px 30px 0 30px !important;
	color: #000 !important;
}

.button.wc-backward:hover {
	background-color: #b01f25 !important;
	color: #fff !important;
}

.button.wc-forward {
	background-color: #01982b !important;
	padding: 11px 30px 0 30px !important;
	color: #fff !important;
	font-size: 14px !important;
	height: 45px !important;
	line-height: unset !important;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	float: none;
	width: 100%;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
	border-radius: 20px;
	height: 40px;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button {
	background-color: rgba(243,244,244,1);
	padding: .618em 2em !important;
	border: 0 none;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover {
	background-color: #000;
	color: #fff;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
   
/* FacetWP Pager Container */
.facetwp-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 5px;
}

.facetwp-page {
  	padding: 11px 4px !important;
}

/* Individual Page Links - FIXED vertical alignment */
.facetwp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0; /* Remove padding that can cause alignment issues */
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 1; /* Force line-height to 1 for perfect centering */
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center; /* Extra insurance for centering */
}

/* Hover Effect */
.facetwp-page:hover {
    background: #f8f9fa;
    border-color: #b01f25;
    color: #b01f25;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Active Page */
.facetwp-page.active {
    background: #b01f25;
    border-color: #b01f25;
    color: white;
    font-weight: 600;
}

.facetwp-page.active:hover {
    background: #b01f25;
    border-color: #b01f25;
    transform: none;
}

/* First/Last Pages */
.facetwp-page.first,
.facetwp-page.last {
    font-weight: 600;
}

/* Previous/Next Arrows */
.facetwp-page.prev,
.facetwp-page.next {
    font-weight: bold;
    min-width: 45px;
}

.facetwp-page.prev:hover,
.facetwp-page.next:hover {
    background: #b01f25;
    color: white;
}

/* Dots */
.facetwp-page.dots {
    border: none;
    background: transparent;
    cursor: default;
    color: #666;
    font-weight: bold;
}

.facetwp-page.dots:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .facetwp-pager {
        gap: 3px;
        margin: 20px 0;
    }
    
    .facetwp-page {
        min-width: 35px;
        height: 35px;
        font-size: 13px;
    }
    
    .facetwp-page.prev,
    .facetwp-page.next {
        min-width: 40px;
    }
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control {
	border-radius: 20px;
	border: 0 none;
}

.woocommerce form .form-row input.input-text,
.select2-container--default .select2-selection--single {
	border-radius: 20px;
	border: 1px solid #f3f4f4;
	height: 40px;
	padding: 0 15px !important;
}

.woocommerce form .form-row textarea {
	border-radius: 20px;
	border: 0 none;
	padding: 15px !important;
}

.woocommerce form .form-row label {
	margin-bottom: 5px;
	font-weight: bold;
}

.wpcf7-form label {
	margin-bottom: 10px;
}

.wpcf7-select {
	border: 0 none;
}

.wpcf7-list-item {
	margin-left: 0;
}

#order_comments {
	height: 200px;
}

/* Checkout Form Fields */
#billing_postcode_field,
#billing_city_field {
	display: inline-block;
	width: 48%;
	margin-right: 2%;
}

#billing_email_field,
#billing_phone_field {
	width: 100% !important;
}

#billing_city_field,
#billing_email_field {
	margin-right: 0;
}

.checkout input,
.checkout .select2-container--default .select2-selection--single {
	background-color: #f3f4f4;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-top: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 5px;
	right: 5px;
}

small.form-row {
	display: none;
}

/* ==========================================================================
   WOOCOMMERCE ALGEMEEN
   ========================================================================== */

.woocommerce-variation-price {
	margin-bottom: 1rem;
}

.product-quantity {
	color: #01982b;
}

.woocommerce-info::before {
	content: unset;
}

.woocommerce-info {
	padding-left: 20px;
	padding-right: 20px;
	border-top: 0 none;
	margin-bottom: 0;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	color: #000;
	border: 0 none;
	border-radius: 20px;
	background-color: rgba(243,244,244,1);
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message {
	margin-bottom: 0;
	margin-top: 15px;
}

#yith-wcwl-popup-message,
.yith-wcwl-popup-message,
.woocommerce-message.yith-wcwl-message {
	display: none !important;
}

.woocommerce-customer-details {
	display: none !important;
}

.woocommerce-order-details {
	margin-top: 2em;
	margin-bottom: 0;
}

/* ==========================================================================
   PRODUCT BADGES & INDICATORS
   ========================================================================== */

.product-quantity-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #b01f25;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	line-height: 1;
	margin-right: 6px;
}

.woocommerce span.onsale {
	border-radius: 20px;
	position: absolute;
	top: 20px;
	left: 36%;
	z-index: 99;
	background-color: #FFCC5A;
	color: #fff;
	font-weight: normal;
	font-size: 16px;
	padding: .5rem 1.5rem !important;
	line-height: normal;
	min-height: unset;
	min-width: unset;
}

.action-flag {
	border-radius: 20px;
	  position: absolute;
	  top: 10px;
	  left: 10px;
	  z-index: 998;
	  background-color: #FFCC5A;
	  color: #fff;
	  font-size: 14px;
}

/* Status Bullets */
.green-bullit::before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 3px;
	right: 0;
	background-color: #008C1F;
	border-radius: 50px;
	animation: bullit-out 2s ease-in-out infinite forwards;
}

.green-bullit::after {
	content: "";
	background: transparent;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	right: -3px;
	border: 1px solid #008C1F;
	border-radius: 100%;
	animation: bullit 2s ease-in-out infinite forwards;
}

.green-bullit.opening::before {
	top: 8px;
}

.green-bullit.opening::after {
	top: 5px;
}

.red-bullit::before {
	position: absolute;
	content: "";
	width: 8px;
	height: 8px;
	top: 3px;
	right: 0;
	background-color: #b01f25;
	border-radius: 50px;
}

.red-bullit.opening::before {
	top: 8px;
}

.red-bullit.opening::after {
	top: 5px;
}

@keyframes bullit {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(0);
		opacity: 0;
	}
}

@keyframes bullit-out {
	0% {
		transform: scale(0.4);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.4);
	}
}

/* ==========================================================================
   PRODUCT DETAILS & VARIATIONS
   ========================================================================== */

.woocommerce div.product .product_title {
	font-size: 1.5rem;
	color: #000;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
	color: #000;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
}

.woocommerce div.product form.cart {
	margin-bottom: 0;
}

table.variations {
	border-collapse: separate;
	border-spacing: 0 15px;
}

.woocommerce div.product div.summary .wrap,
.cart-collaterals {
	background-color: rgba(243,244,244,1);
	padding: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	position: relative;
}

.woocommerce-product-details__short-description {
	margin-bottom: 1.5rem !important;
}

.woocommerce-product-details__short-description p {
	margin-bottom: 0;
}

.woocommerce div.product div.summary select {
	border-radius: 20px;
	background-color: #fff !important;
	border: 0 none;
	padding-left: 20px;
	height: 40px;
	width: 100%;
}

.reset_variations {
	display: none !important;
}

.woocommerce-variation-add-to-cart {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.woocommerce-variation-add-to-cart .quantity {
	margin-right: auto;
}

.woocommerce .quantity .qty {
	width: 5em;
	height: 40px;
	margin-right: 10px;
	border-radius: 20px;
	border: 0 none;
	background-color: #fff !important;
	border-right: 16px solid transparent;
}

.woocommerce-cart-form .quantity .qty {
	border: 2px solid rgba(243,244,244,1);
}

.custom-content-after-summary {
	float: right;
	width: 48%;
	clear: none;
}

/* ==========================================================================
   WISHLIST
   ========================================================================== */

table.wishlist_table thead th,
table.wishlist_table tbody td {
	background-color: transparent;
	border: 0 none;
	font-size: 16px;
}

.woocommerce table.shop_table.wishlist_table tr td {
	border-color: #f3f4f4;
}

.woocommerce .wishlist-title {
	margin-bottom: 1.5rem !important;
}

.summary .yith-wcwl-wishlistaddedbrowse,
.summary .yith-wcwl-wishlistaddedbrowse .feedback {
	display: unset;
	flex-direction: unset;
	align-items: unset;
}

.featured-item .yith-wcwl-wishlistaddedbrowse {
	align-items: end;
}

.featured-item .yith-wcwl-wishlistaddedbrowse a {
	display: none;
}

.featured-item .yith-wcwl-wishlistaddedbrowse .feedback {
	font-size: 0;
}

.summary .yith-wcwl-add-to-wishlist.exists {
	margin-top: 20px;
}

.summary .yith-wcwl-add-to-wishlist:not(.exists) {
	position: absolute;
	top: 20px;
	right: 20px;
	margin-top: 0;
}

.single_add_to_wishlist .bi {
	background-color: #f3f4f4;
	color: #1d204c;
	padding: 12px 12px 10px 12px;
	border-radius: 50%;
}

.summary .single_add_to_wishlist .bi {
	padding: 8px 8px 6px 8px !important;
}

.single_add_to_wishlist .bi:hover {
	background-color: #cfcfcf;
}

.yith-wcwl-add-to-wishlist.exists svg.yith-wcwl-icon-svg {
	color: var(--added-to-wishlist-icon-color, #01982b);
}

/* ==========================================================================
   CART & CHECKOUT
   ========================================================================== */

.checkout-product {
	display: flex;
	align-items: flex-start;
}

.checkout-product .product-thumb {
	flex: 0 0 auto;
	margin-right: 10px;
}

.checkout-product .product-thumb img {
	width: 40px;
	height: auto;
	border-radius: 4px;
}

.checkout-product .product-info {
	flex: 1;
}

#custom-coupon-wrapper {
	background-color: #fff;
	margin-top: 0;
	margin-bottom: 20px;
}

#custom-coupon-wrapper input {
	border: 0 none;
	border-radius: 20px;
	padding-left: 15px !important;
}

.woocommerce-cart table.cart img {
	width: 100px;
	border-radius: 10px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	border-radius: 20px;
}

.woocommerce-page table.cart td.actions .input-text {
	width: 100%;
}

.woocommerce-cart-form table.shop_table td {
	padding: 18px 12px;
}

.woocommerce table.shop_table td.actions {
	padding-right: 0;
}

.woocommerce a.remove {
	color: #000 !important;
	background-color: rgba(243,244,244,1);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border: 0 none;
	padding: 0;
	margin: 0;
}

.woocommerce-checkout h3 {
	color: #000;
	font-size: 20px;
}

h3#ship-to-different-address {
	font-size: 16px;
	color: #3a3a3a;
	font-weight: 300;
	margin-top: 8px;
}

.woocommerce-terms-and-conditions-wrapper .form-row label {
	line-height: normal !important;
	font-weight: 300 !important;
	color: #3a3a3a !important;
}

.woocommerce form .form-row .input-checkbox {
	margin-right: 3px;
}

.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-checkbox-text,
.delivery-info {
	font-size: .92em;
}

/* ==========================================================================
   PAYMENT
   ========================================================================== */

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background-color: transparent;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	color: #3a3a3a !important;
	background-color: #fff;
	margin-bottom: 0;
	border-radius: 20px;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	border: 1em solid #fff;
	border-top-color: #fff;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
}

.wc_payment_method,
.payment_box {
	margin-bottom: 5px !important;
}

.payment_methods label {
	font-weight: bold;
}

.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	border-bottom: 0;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding-left: 0;
	padding-right: 0;
}

ul.payment,
ul.usp {
	list-style-type: none;
	padding: 0;
}

ul.payment li {
	float: left;
	margin-right: 10px;
}

/* ==========================================================================
   SHOP TABLES
   ========================================================================== */

.woocommerce table.shop_table {
	border: 0 none;
}

.woocommerce table.shop_table td {
	border-top: 1px solid rgba(243,244,244,1);
}

.woocommerce table.shop_table td.product-name {
	font-weight: bold;
}

.table > :not(caption) > * > * {
	box-shadow: none;
	border: 0 none;
	background-color: transparent;
	padding-left: 0;
	padding-right: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce-cart-form bdi,
#order_review bdi,
.woocommerce table.shop_table tfoot th,
.tax-total bdi,
.cart-subtotal bdi,
.woocommerce ul#shipping_method li label {
	font-weight: normal;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	border-color: rgba(243,244,244,1);
}

.cart_totals table.shop_table th {
	padding-left: 0;
}

.cart_totals h2 {
	font-size: 20px;
}

#order_review .cart_item td:nth-child(2),
#order_review th:nth-child(2),
#order_review tfoot tr td:nth-child(2) {
	padding-left: 20px;
}

.woocommerce table.shop_attributes {
	margin-bottom: 0;
}

.woocommerce table.shop_attributes td {
	font-style: normal;
}

.tax-total,
.includes_tax {
	display: none;
}

p.woocommerce-shipping-destination {
	display: none;
}

.woocommerce ul#shipping_method li {
	margin-bottom: 10px;
}

label[for*="_free_shipping"] {
	color: #01982b;
}

/* ==========================================================================
   ACCORDIONS
   ========================================================================== */

.accordion-item {
	border: 0 none;
	margin-bottom: 10px;
	background-color: #f3f4f4;
	border-radius: 20px !important;
}

.accordion-body,
.accordion-button {
	background-color: #f3f4f4;
	border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
	color: #000;
	font-weight: bold;
	background-color: transparent;
	box-shadow: none;
}

.accordion-button:after {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/* Accordion Tabs (Product) */
#accordionTabs .accordion-item {
	background-color: rgba(243,244,244,1);
	border-radius: 20px;
	padding: 20px;
}

#accordionTabs .accordion-button,
#accordionTabs table.shop_attributes th,
#accordionTabs table.shop_attributes td {
	background-color: transparent;
}

#accordionTabs .accordion-body,
#accordionTabs .accordion-button {
	padding: 0;
}

#accordionTabs .accordion-button {
	color: #000 !important;
	font-weight: 500;
	font-size: 1.5rem;
}

#accordionTabs h3 strong {
	font-weight: normal;
	font-size: 1.2rem;
	color: #000;
}

.description-container .accordion-body p:last-of-type {
	margin-bottom: 0;
}

.description-container .accordion-collapse {
	margin-top: 10px;
}

.woocommerce div.product .woocommerce-tabs .panel {
	margin-bottom: 0;
}

ul.wc-tabs {
	display: none;
}

/* Accordion Filter (Sidebar) */
#accordionFilter .accordion-body,
#accordionFilter .accordion-button {
	padding: 0;
}

#accordionFilter .accordion-button {
	font-weight: bold;
	font-size: 18px;
	color: #000 !important;
}

#accordionFilter .accordion-button:not(.collapsed) {
	color: #000;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
}

#accordionFilter .accordion-button:after {
	background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

#accordionFilter .accordion-item {
	border: 0 none;
	border-radius: 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #f2f2f2;
	padding: 15px;
}

#accordionFilter .accordion-header {
	margin-bottom: 5px;
}

#accordionFilter .accordion-body {
	margin-top: 15px;
}

#accordionFilter h3 {
	color: #1d204c;
	font-size: 18px;
	font-weight: 400;
}

#accordionFilter a {
	color: #B01F25;
}

#accordionFilter a:hover {
	color: #000;
}

/* FAQ Accordion */
#faq .accordion-item {
	background: rgb(255, 255, 255);
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px 0;
	border-width: 0 !important;
	margin-bottom: 20px;
}

#faq .accordion-button {
	border-width: 0 !important;
	border-radius: 10px !important;
}

#faq .accordion-button:not(.collapsed) {
	color: #fff;
	background-color: #1d204c;
	border-color: #1d204c;
	box-shadow: none !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

#faq .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.card {
	border: 0 none;
	background-color: transparent;
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.05);
}

.card:hover img {
	opacity: 0.8;
}

.card-body {
	background-color: #fff;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.card-img,
.card-img-top {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.card-title {
	color: #211C4D;
}

.equal-height-card {
	height: 100% !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
	z-index: 999 !important;
}

header.fixed-top {
	background-color: #fff;
}

header .container {
	transition: padding 0.3s ease;
}

header.scrolled {
	box-shadow: 0 25px 20px -20px rgba(0,0,0,0.25);
}

header.scrolled .container {
	padding-bottom: 0.3rem !important;
	padding-top: 0.3rem !important;
}

header .logo {
	transition: height 0.4s ease 0s;
}

.mob-nav a {
	font-size: 18px;
}

/* Mega Menu */
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
	transition: padding 0.3s ease;
}

header.scrolled #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
	padding: 0 !important;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
	font-family: "bootstrap-icons";
	content: '\F229' !important;
	font-size: 10px;
}

#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-megamenu > ul.mega-sub-menu {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 0 !important;
	z-index: 999999;
	margin-top: 0 !important;
}

.mega-sub-menu {
	margin-top: 20px !important;
}

/* ==========================================================================
   FEATURED ITEMS / PRODUCTS
   ========================================================================== */

.featured-items {
	margin-left: -10px;
}

.featured-items .swiper-wrapper {
	padding-bottom: 40px;
	padding-left: 10px;
	display: flex;
	align-items: stretch;
}

.featured-items .swiper-slide {
	height: auto;
}

.featured-items .featured-item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.featured-items .featured-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.featured-items .featured-content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.featured-item {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1);
	overflow: hidden;
}

.featured-item:hover {
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, .2);
}

.featured-header {
	position: relative;
	width: 100%;
	display: block;
	background-color: #f1f1f1;
}

.featured-header > a {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	display: block;
}

.featured-header a {
	position: relative;
	display: block;
}

.featured-header a > img {
	display: block;
	width: 100%;
}

.featured-header a > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	mix-blend-mode: multiply;
}

.featured-header a > img:nth-child(1) {
	transition: all 0.3s ease;
}

/* Multi Image Hover Effect */
.multi-image .featured-header a > img.secondary-image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.multi-image .featured-header a > img:first-child {
	transition: opacity 0.3s ease;
}

.multi-image .featured-header a:hover > img:first-child {
	opacity: 0;
}

.multi-image .featured-header a:hover > img.secondary-image {
	opacity: 1;
}

.featured-body h2 {
	color: #1D204C;
	font-size: 18px;
	font-weight: 500;
}

.featured-content {
	min-height: 100px;
	padding: 20px;
}

.featured-content del bdi {
	color: #767676;
}

.featured-body ins {
	background-color: #B01F25;
	text-decoration: none;
	border-radius: 5px;
	color: #fff;
	padding: 3px 10px;
}

.featured-delivery {
	color: #40b445;
	font-size: 12px;
	font-weight: 400;
}

.featured-delivery.wordt_verwacht {
	color: Orange;
}

/* ==========================================================================
   SWIPER / CAROUSEL
   ========================================================================== */

.swiper-container,
.swiper-container2 {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.swiper-container .swiper-slide {
	height: auto;
}

.aboutus .swiper-wrapper {
	display: flex;
	transition-timing-function: linear;
}

.aboutus .swiper-slide {
	width: auto;
	flex-shrink: 0;
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
	border-color: #0000;
	border-radius: 50%;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
	height: 40px !important;
	width: 40px !important;
	top: 40% !important;
	background-color: #fff;
	color: #b01e24 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 14px !important;
	color: #B01F25 !important;
}

.swiper-button-prev {
	left: 20px !important;
}

.swiper-button-next {
	right: 20px !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal,
.swiper-viewed-scrollbar.swiper-scrollbar-horizontal {
	position: relative;
	left: unset;
	bottom: unset;
	width: 110%;
	margin-top: 20px;
}

.swiper-scrollbar-drag {
	background-color: #434343 !important;
}

.swiper-productimages .swiper-wrapper {
	align-items: center;
}

/* Product Modal Swiper */
.swiper-productmodal .swiper-wrapper .swiper-slide {
	height: 65vh;
}

.swiper-productmodal .swiper-wrapper .swiper-slide .image-thumb {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.swiper-productmodal .swiper-wrapper .swiper-slide img {
	border: none;
	max-height: 100%;
	max-width: 100%;
	outline: none;
	text-indent: -99999px;
}

.swiper-modalthumbs .image-thumb img,
.swiper-productthumbs .image-thumb img {
	border-radius: 20px;
}

.swiper-productthumbs .swiper-slide:nth-child(5) .product-thumb-indicator {
	display: block;
}

/* Carousel */
#carouselAutoplaying .content {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

#carouselAutoplaying p {
	margin-bottom: 0;
}

#carouselAutoplaying .carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d204c'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#carouselAutoplaying .carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d204c'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#carouselAutoplaying .carousel-control-next {
	right: -40px;
}

#carouselAutoplaying .carousel-control-prev {
	left: -40px;
}

/* ==========================================================================
   IMAGE & GALLERY
   ========================================================================== */

.image-thumb {
	border-radius: 20px;
	border: 1px solid transparent;
}

.image-thumb.active {
	border: 1px solid #B01F25;
}

.gallery-image {
	border-radius: 20px;
}

.widget_media_image img {
	border-radius: 20px;
}

img.cat-product-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	object-fit: cover;
	mix-blend-mode: multiply;
	display: block;
	border-radius: 10px;
}

.team img.cat-product-image {
	border-radius: 0;
}

.product-thumb-indicator {
	background-color: #00000010;
	color: #fff;
	display: none;
	font-size: 1.4rem;
	font-weight: 700;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	border-radius: 20px;
	border: 0 none;
}

.object-center {
	object-position: center;
}

.object-cover {
	object-fit: cover;
}

.aspect-square {
	aspect-ratio: 1/1;
}

.img-wrap {
	position: relative;
	margin-top: -30px;
}

.img-wrap img {
	position: absolute;
	top: -118px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 150%;
}

/* ==========================================================================
   LISTS & CATEGORIES
   ========================================================================== */

ul.product-categories,
ul.product-categories ul.children,
ul.content-menu {
	list-style-type: none;
}

ul.product-categories li.current-cat-parent,
ul.product-categories li.current-cat-parent ul li,
ul.product-categories li.current-cat.cat-parent,
ul.product-categories li.current-cat.cat-parent ul li {
	display: block;
}

ul.product-categories li.current-cat a,
ul.product-categories li.current-cat-parent a {
	font-weight: bold;
	margin-bottom: 5px;
	display: inline-block;
}

ul.product-categories li::before {
	content: '\F584';
	font-family: "bootstrap-icons";
	font-size: 14px;
	margin-right: 10px;
	display: inline-block !important;
	color: #ddd;
}

ul.product-categories li.active::before,
ul.product-categories li:hover::before {
	font-family: "bootstrap-icons";
	content: '\F26D' !important;
}

ul.product-categories li.active a {
	font-weight: bold;
}

ul.product-categories ul {
	padding-left: 0;
	list-style-type: none;
}

ul.content-menu li::before,
.site-footer ul:not(.payment) li::before {
	content: '\F285';
	font-family: "bootstrap-icons";
	font-size: 14px;
	margin-right: 10px;
	display: inline-block !important;
	color: #ddd;
}

.readall-wrapper ul {
	list-style-type: none;
	padding-left: 10px;
}

.readall-wrapper ul li::before {
	margin-right: 10px;
	content: '\F138';
	font-family: "bootstrap-icons";
	color: #B01F25;
	font-size: 14px;
}

.description-container ul {
	padding-left: 30px;
}

.site-footer ul,
.facetwp-selections ul {
	list-style-type: none;
	padding-left: 0;
}

/* ==========================================================================
   SWATCHES & VARIATIONS
   ========================================================================== */

ul.swatch,
ul.swatch-afm {
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	gap: 15px;
}

ul.swatch-afm li {
	padding: 3px 10px;
	border-radius: 3px;
	background-color: #f3f4f4;
}

.single-product ul.swatch-afm li {
	background-color: #fff !important;
}

ul.swatch-afm li:hover,
ul.swatch-afm li.active {
	background-color: #B01F25 !important;
	color: #fff;
}

ul.swatch-afm li:hover a,
ul.swatch-afm li.active a {
	color: #fff;
}

ul.swatch-afm li a {
	color: #000;
}

.archive ul.swatch-afm li a {
	font-size: 12px;
}

.swatch li {
	position: relative;
	width: 22px;
	height: 22px;
	border-radius: 50%;
}

.swatch li a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.swatch li::before {
	content: "" !important;
	display: block !important;
	position: absolute !important;
	width: calc(100% + 8px) !important;
	height: calc(100% + 8px) !important;
	border: 1px solid #333 !important;
	border-radius: 50% !important;
	top: -4px !important;
	left: -4px !important;
}

.swatch li.selected::before,
.swatch li:hover::before {
	border: 1px solid #b01f25 !important;
}

/* ==========================================================================
   FACET WP
   ========================================================================== */

.facetwp-selections .selections-label {
	font-weight: bold;
}

.facetwp-selections ul {
	margin-top: 0.5rem;
}

.facetwp-selections ul li {
	padding: 10px;
	background-color: #1d204c;
	color: #fff;
	border-radius: 10px;
}

.facetwp-selections .facetwp-selection-value {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293z'/%3E%3C/svg%3E") !important;
	padding-right: 23px !important;
	background-size: 16px 16px !important;
}

.facetwp-checkbox .facetwp-display-value:hover {
	color: #B01F25;
}

/* ==========================================================================
   SEARCH
   ========================================================================== */

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	background-color: transparent;
	border: 2px solid #F2F2F2;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:hover {
	background-color: #f2f2f2;
}

.dgwt-wcas-search-input:focus {
	border-color: #1d204c !important;
}

.dgwt-wcas-search-input::placeholder {
	font-size: 14px;
}

/* ==========================================================================
   BREADCRUMBS & ARCHIVE
   ========================================================================== */

.woocommerce-breadcrumb a,
.woocommerce-breadcrumb {
	color: #000 !important;
	font-size: .92em;
}

.woocommerce-breadcrumb span:last-child {
	font-weight: 500;
}

.woocommerce .woocommerce-result-count {
	margin-bottom: 0 !important;
	margin-top: 10px;
}

.archive .term-description {
	margin-top: 20px;
}

.archive .term-description h2 {
	font-weight: 500;
	font-size: 20px;
}

.archive .term-description h3 {
	font-weight: 500;
	font-size: 16px;
}

/* ==========================================================================
   MODALS & OFFCANVAS
   ========================================================================== */

.modal-content {
	border-radius: 20px;
}

.modal-title {
	font-size: 32px;
}

.modal-xxl .modal-content {
	margin-top: 100px;
}

.modal-xxl.modal-dialog {
	max-width: 2000px !important;
}

#infoModal {
	background-color: #211C4D;
}

#offcanvasRight {
	margin-top: 165px;
}

.showmodal {
	cursor: pointer;
}

/* ==========================================================================
   TEAM CARDS
   ========================================================================== */

.team .card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	aspect-ratio: 1/1;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: calc(100% + 7rem) 130%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.team .card .card-body .content {
	position: relative;
	overflow: hidden;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.team .card .card-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgba(0,0,0,0);
	z-index: -1;
}

.team .product-slide .block-image {
	border-radius: 10px;
	background-color: rgba(243,244,244,1);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.bg-gray-100 {
	background-color: rgba(243,244,244,1);
}

.bg-warning {
	background-color: #FFCC5A !important;
}

.dropdown-toggle,
.flex-center {
	display: flex;
	align-items: center;
}

.dropdown-toggle::after {
	border: 0 none;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.center-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bi.middle {
	vertical-align: middle;
}

.goto {
	color: #b01f25;
	cursor: pointer;
}

.shortcode-container {
	background-color: rgb(243, 244, 244);
	padding: 20px;
	border-radius: 20px;
}

/* ==========================================================================
   HERO & SERVICE
   ========================================================================== */

.hero {
	height: 40vh;
	padding: 50px 0 225px 0;
	position: relative;
}

.service-center h3 {
	font-size: 1.3rem;
}

.service-center {
	color: #1D204C;
}

.service-center a {
	text-decoration: underline;
	color: #1D204C;
}

.service-item {
	position: relative;
	flex-grow: 0;
	flex-shrink: 1;
	height: 367.5px;
	overflow: hidden;
	border-radius: 10px;
}

.service-item .block-content {
	position: absolute;
	top: 309px;
	min-height: 325px;
	transition: all 0.5s ease;
	background-color: #FFCC5A !important;
}

.service-item .block-content h3 {
	color: #1D204C;
	text-align: center;
	font-size: 20px;
}

.product-item {
	overflow: hidden;
	border-radius: 10px;
}

.product-item .block-content {
	transition: all 0.5s ease;
	z-index: 9999999;
}

.product-item .block-content h3 {
	color: #211C4D;
	font-size: 16px;
}

.product-slide .block-image {
	position: relative;
	width: 100%;
	display: block;
	background-color: transparent;
}

.product-slide .block-image img:hover {
	opacity: 0.8;
}

.product-slide .image-link {
	width: 100%;
	padding-bottom: 100%;
	position: relative;
	display: block;
}

/* ==========================================================================
   USP BAR & EXTRAS
   ========================================================================== */

.usp-bar {
	font-size: 14px;
}

.usp-bar a {
	color: #3a3a3a;
}

.usp-bar strong,
.usp-bar .bi {
	color: #008C1F;
}

.usp-bar .bi {
	font-size: 22px;
}

.readall-button {
	text-align: left !important;
	border: 0 none !important;
	background: none !important;
	font-weight: bold;
	color: #b01f25;
	float: left;
}

.readall-button:hover {
	color: #1d204c !important;
	background: none !important;
}

.arrow-animation {
	display: inline-block;
	position: relative;
	animation: slideDown 1.5s ease-in-out infinite;
	overflow: hidden;
	font-size: 18px;
	color: green;
	font-weight: bold;
}

@keyframes slideUp {
	0% {
		clip-path: inset(0 0 0 0);
	}
	100% {
		clip-path: inset(100% 0 0 0);
	}
}

@keyframes slideDown {
	0% {
		clip-path: inset(100% 0 0 0);
	}
	100% {
		clip-path: inset(0 0 0 0);
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer h3 {
	font-size: 1.3rem;
}

.site-footer a {
	color: #b01f25;
}

.site-footer ul li a:hover {
	color: #333;
}

.footer-4 a {
	color: #b01f25;
}

/* ==========================================================================
   WHATSAPP & FIXED ELEMENTS
   ========================================================================== */

.whatsapp-icon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	z-index: 1000;
	background-color: #25d366;
	border-radius: 20px;
	text-align: center;
	padding-top: 3px;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, .1);
}

.whatsapp-icon:hover {
	background-color: #075e54;
}

.whatsapp-icon .bi {
	color: #fff;
	font-size: 22px;
}

/* ==========================================================================
   TOAST & TOOLTIPS
   ========================================================================== */

.toast {
	border-radius: 20px;
	border-color: #f2f2f2;
	font-size: 16px;
}

.toast-header {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	padding: 15px 1.5rem;
}

.tooltip-inner {
	text-align: left;
	background-color: #8a161b;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
	border-right-color: #8a161b;
}

/* ==========================================================================
   DROPDOWN
   ========================================================================== */

.dropdown-menu a {
	color: #3a3a3a;
}

/* ==========================================================================
   WOOCOMMERCE CART COLLATERALS
   ========================================================================== */

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

/* ==========================================================================
   WEEKAANBIEDINGEN - EQUAL HEIGHT CARDS (.popular block)
   ========================================================================== */

.popular.container-fluid .popular-block {
	padding: 20px;
	border-radius: 20px;
}

.popular.container-fluid .productSwiper .swiper-wrapper {
	align-items: stretch !important;
	display: flex !important;
}

.popular.container-fluid .productSwiper .swiper-slide {
	height: auto !important;
	display: flex !important;
	flex-direction: column;
}

.popular.container-fluid .productSwiper .swiper-slide > .featured-item,
.popular.container-fluid .productSwiper .swiper-slide > .equal-height-card {
	height: 100% !important;
	min-height: 100% !important;
	display: flex !important;
	flex-direction: column !important;
}

.popular.container-fluid .productSwiper .featured-body {
	flex: 1 1 auto !important;
	display: flex !important;
	flex-direction: column !important;
}

.popular.container-fluid .productSwiper .featured-content {
	flex: 1 1 auto !important;
	display: flex !important;
	flex-direction: column !important;
}

.popular.container-fluid .productSwiper .featured-content .mt-auto,
.popular.container-fluid .productSwiper .featured-body .mt-auto {
	margin-top: auto !important;
}

/* Also apply to subcategorySwiper */
.subcagegorySwiper .swiper-wrapper {
	align-items: stretch;
}

.subcagegorySwiper .swiper-slide {
	height: auto;
}

.subcagegorySwiper .swiper-slide .block-image {
	height: 100%;
	display: flex;
	flex-direction: column;
}