/* === Moderne compacte productkaartjes === */

@media (max-width: 550px){
	div.productField > .row{
		--columns:2;
	}
}

/* Card base */
div.productField .product {
	padding: 0;
	border-radius: 12px;
	overflow: hidden;
	border: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	min-height: auto;
	transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}
div.productField .product:hover {
	box-shadow: 0 5px 18px rgba(0,0,0,0.14);
	transform: translateY(-2px);
}

/* Image box */
div.productField .product .productImageBox {
	position: relative;
	width: 100%;
	background-color: #ffffff;
}
div.productField .product .productImageBox .imageHolder {
	aspect-ratio: 1;
	margin: 40px 0 0;
	border-radius: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* Brand/heart overlay onderaan de afbeelding */
div.productField .product .productMerkBar {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 8px 8px 6px;
	background: linear-gradient(to bottom, transparent calc(100% - 50px), rgba(255,255,255,0.88) 100%);
}
div.productField .product .productMerkLogo {
	max-height: 22px;
	width: auto;
	max-width: calc(100% - 32px);
	object-fit: contain;
}
div.productField .product .productMerkBar .favorite {
	position: absolute !important;
	font-size: 20px;
	right: 8px;
	top: 11px !important;
	line-height: 1;
	color: var(--themeColorOrange, #e67e22);
}

/* Product content */
div.productField .product .productContent {
	padding: 10px 10px 10px;
	gap: 5px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
div.productField .product .productTitle {
	gap: 2px;
}
div.productField .product .productBrand {
	font-size: 14px !important;
	height: auto !important;
	line-height: 1.2;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #1a1a1a;
}
div.productField .product .productName {
	font-size: 12px !important;
	line-height: 1.3;
	color: #666;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	height: auto !important;
	white-space: normal !important;
	font-weight: 400;
}

/* Prijs rij */
div.productField .product .productPrijs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
}
div.productField .product .productPrijs-content {
	flex: 1;
}
div.productField .product .price {
	font-size: 15px !important;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
	margin: 0;
}
div.productField .product .priceOld {
	font-size: 11px !important;
	color: #aaa;
	margin: 0;
}
div.productField .product span.btw{
	display: none;
}

/* OptionHolder */
div.productField .product .optionHolder {
	padding: 6px 0;
	margin-top: 2px;
	border-radius: 5px;
}
div.productField .product .options {
	padding: 0 8px;
}
div.productField .product .options td {
	font-size: 11px;
	padding: 2px 3px;
	line-height: 1.3;
}
div.productField .product .options td:first-of-type {
	min-width: 60px;
	font-weight: 600;
}
div.productField .product .options tr {
	display: flex;
	flex-direction: column;
}
div.productField .product .options td + td {
	border-bottom: 1px solid #f0f0f0;
}

/* Arrow-knop */
div.productField .product .productPrijs .btn {
	width: 34px;
	height: 34px;
	min-width: 34px;
	padding: 0;
	border-radius: 8px;
	background-color: #1a1a1a;
	flex-shrink: 0;
}
div.productField .product .productPrijs .btn svg {
	width: 13px;
	height: 13px;
}

/* Leverklasse indicator */
div.productField .product .fastDelivery::after {
	width: 8px;
	height: 8px;
	margin-left: 5px;
	margin-top: 3px;
}

@media (min-width: 1024px) {
	div.productField .product .productBrand {
		font-size: 18px !important;
	}
	div.productField .product .productName {
		font-size: 14px !important;
	}
	div.productField .product .price {
		font-size: 18px !important;
	}
	div.productField .product .priceOld {
		font-size: 13px !important;
	}
	div.productField .product .options td {
		font-size: 13px;
	}
	div.productField .product .options td:first-of-type {
		min-width: 80px;
	}
	div.productField .product span.btw {
		display: inline;
	}
}

/* 2 kolommen op mobiel */
@media (max-width: 550px) {
	div.productField > .row {
		--columns: 2;
		gap: 8px;
	}
	div.productField .product {
		min-height: auto;
	}
}
