@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');
* {
	margin: 0;
	box-sizing: border-box;
	padding: 0;
}
body {
	font-family: 'Roboto';
	margin-top: 30px;
	background-color: #f9f9f9;
	margin-bottom: 50px;
	overflow-x: hidden;
}

.text-intro {
	background-color: #fbfbfb;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}
.text-button {
	background-color:#ffea00;
	border-radius:7px;
	border:1px solid #ffea00;
	display:inline-block;
	color:#3b3b3b;
	font-size:17px;
	font-weight:bold;
	padding:10px 31px;
	margin: 20px 20px 17px 0px;
	text-decoration:none;
}

.textpaginacontainer {
width:100%;
display: flex;
flex-wrap: wrap;
}
.textpaginaleft {
flex: 1;
min-width: 10rem;
}
.textpaginaright {
flex: 1;
min-width: 100%;
}

button.toggle-options {
	background-color: #ededed;
	border: none;
	padding: 9px;
	border-radius: 10px;
}

.text-button:hover {
	background-color:#f5e100;
}
.text-button:active {
	position:relative;
	top:1px;
}


.zoekvak {
	position: relative;
}
.zoekvak input {
	border: none;
}
.zoekvak div {
	background-color: #FFEE4F;
	background-image: url('/img/arrow.svg');
	background-size: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	width: 46px;
	border-radius: 0 26px 26px 0;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
}
#sidebar,.login-overlay,#sidebarnav {
	position: fixed;
	z-index: 99999999;
	background-color: rgba(255,255,255,.95);
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
	border-radius: 20px 0 0 20px;
	top: 20px;
	right: -30%;
	height: 90vh;
	width: 30%;
	padding: 30px;
	transition: .5s;
}
#sidebarnav {
	overflow-y:scroll;
}
#sidebar.active,.login-overlay.active,#sidebarnav.active {
	right: 0;	
}
#sidebar div.cartrow {
	padding: 10px 0;
	width: 100%;
	border-top: 1px solid #CCC;
}
#sidebar div.cartrow div.remove-from-cart {
	font-size: 20px;
	display: inline-block;
	vertical-align: top;
}
#sidebar div.cartrow div.prodinfo {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	vertical-align: top;
	width: 80%;
}
#sidebar div.cartrow div.prodinfo div.prodpic {
	width: 50px;
	float: left;
	margin-right: 5px;
}
#sidebar div.cartrow div.prodinfo div.prodpic img {
	border-radius: 5px;
}
#sidebar div.cartrow div.prodinfo div.prodname {
	padding-top: 2px;
	font-weight: bold;
}
#sidebar div.cartrow div.prodprice {
	display: inline-block;
	text-align: right;
	float: right;
	vertical-align: top;
}
.closecart,.closenav {
	position: absolute;
	font-weight: bold;
	font-size: 30px;
	color: #A4A5A0;
	top: 20px;
	right: 20px;
	transition: .5s;
}
.closecart:hover,.closenav:hover {
	color: #F3E11D;
}
#logobar {
	text-align: center;
}
#logobar img {
	height: 220px;
}
#logobar.logobarprod img {
	height: 140px;
}
h2 {
	margin-bottom: 20px;
}
.middle {
	width: 90%;
	margin: 0 auto;
}
.keuzes {
	display: flex;
	flex-wrap: wrap;
}
.fw {
	width: 100%;
}
.keuze {
	width: 30%;
	margin-bottom: 10px;
	flex-grow: 1;
	background-color: #FFF;
	border-radius: 15px;
	margin-right: 10px;
	padding: 5px 10px;
}
.keuze h3 {
	margin: 10px 0;
}
.keuze ul {
	list-style-type: none;
}
.keuze ul li {
	margin-bottom: 5px;
}
.keuze ul li a {
	padding: 10px;
	text-align: center;
	background-color: #F0F0F0;
	display: block;
	color: #333;
	text-decoration: none;
}
.keuze ul li a:hover,.thelist a.active {
	background-color: #FFEE4F;
}
.keuze textarea {
	width: 100%;
	padding: 10px;
	height: 200px;
}

#searchprod {
	padding: 10px;
	width: 100%;
}
#letters {
	width: 100%;
	text-align: center;
	padding: 10px 0;
}
.stickler {
	position: sticky;
	top: 0;
	background-color: #f4f4f4;
	border-radius: 0 0 10px 10px;
	z-index: 999;
	padding-bottom: 20px;
}

#letters a {
	color: #333;
	text-decoration: none;
}
.shadow {
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}
.loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -75px;
	margin-top: -75px;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: linear-gradient(#FFED00, #333, #000);
	animation: animate 1.2s linear infinite;
}

@keyframes animate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.loader span {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(#FFED00, #333, #000);
}

.loader span:nth-child(1) {
	filter: blur(5px);
}

.loader span:nth-child(2) {
	filter: blur(10px);
}

.loader span:nth-child(3) {
	filter: blur(25px);
}

.loader span:nth-child(4) {
	filter: blur(50px);
}

.loader:after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background: #f1f1f1;
	border: solid white 10px;
	border-radius: 50%;
}
div#overlay {
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,.6);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#logowe {
	display: flex;
	flex-wrap: wrap;
}
#logowe .logo {
	text-align: center;
}
#logowe .logo img {
	max-width: 80%;
}
#logowe .logo,#logowe .icons {
	width: 15%;
}
.search {
	padding-top: 50px;
	width: 88%;
	position: relative;
	display: inline-block;
}
.prodhead .icons {
	width: 11%;
	vertical-align: top;
	padding-top: 50px;
	display: inline-block;
	text-align: right;
}
#cart {
	position: absolute;
	box-sizing: border-box;
	width: 14%;
	right: 10px;
	top: 210px;
	border-radius: 10px;
	background-color: #FFF;
	padding: 0;
}
#cart img {
	width: 100%;
	border-radius: 10px 10px 0 0;
}
#cart .cartcontent {
	padding: 20px;
	font-size: 14px;
}
#cart.stick {
	position: fixed;
	top: 10px;
}
#cart h4 {
	font-size: 20px;
}
#cart .btn {
	display: block;
	text-align: center;
	background-color: #CCC;
	padding: 10px;
	margin-bottom: 2px;
}
#cart .btn.yellow {
	background-color: #FFEE4F;
}
#logowe .icons {
	padding: 55px 0 0 20px;
}
.icons ul {
	list-style-type: none;
}
.icons ul li {
	display: inline-block;
	margin-right: 10px;
}
.icons ul li img {
	height: 30px;
	max-width: 30px;
}
#zoekdingen a {
	color: #333;
}
.hidden {
	display: none;
}
.populate {
	display: none;
}
div.dropdown {
	display: inline-block;
	position: relative;
	border: 1px solid #CCC;
	border-radius: 10px;
	padding: 10px;
}
div.populate {
	position: absolute;
	top: 40px;
	left: 0;
	background-color: rgba(255,255,255,.8);
	padding: 10px;
	border: 1px solid #CCC;
	border-radius: 10px;
}
div.populate ul {
	height: 120px;
	overflow: scroll;
}

/* dirk */

.info-row {
display: flex;
margin-bottom: 10px;
flex-grow: 1;
background-color: #FFF;
border-radius: 15px;
margin-right: 10px;
padding: 10px 10px;

}

.info-column {
flex: 50%;
margin-right: 10px;
padding: 10px 10px;
}

h1 {
	margin-bottom: 12px;
	font-size: 23px;
	background-image: linear-gradient(87deg, #f4de0a 45%, #ffee4f 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: rgba(0, 0, 0, 0);

}

h3 {
	margin-bottom: 12px;
	margin-top: 17px;
	font-size: 17px;
}

.info-column ul {
line-height: 185%;
margin-top: 10px;
margin-bottom: 10px;
}

.info-column table {
	width: 100%;
}

li::marker {
color: grey;
}

p {
	line-height: 160%;
}

.info-column p {
	margin-top: 14px;
}

th, td {
	padding: 0.75rem;
	vertical-align: top;
	border-bottom: 1px solid #dee2e6;
	text-align: left;
}

.info-column a {
	color: grey;
	text-decoration: none;
}

div#thisprice {
	font-size: 2.1em;
	margin: 10px 0px;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	background:#f2f5f7;
	padding:30px;
}
.page {
	
	margin:0 auto;
	display:flex;
	gap:24px;
}
.config-col { flex:2;min-width: 0; }
.cart-col {
	flex: 1;
	min-width: 0;
	width: 100%;
}
.summary-col { 
	flex:1;
	position: sticky;
	top: 130px; 
	align-self: flex-start;
	height: fit-content;
}

.card {
	background:#fff;
	padding:20px 22px;
	border-radius:10px;
	box-shadow:0 2px 8px rgba(0,0,0,0.05);
	margin-bottom:20px;
}
.row {
	width: 100%;
}

h1 { margin:0 0 4px; }
h2 { margin:0 0 12px; font-size:18px; }
h3 { margin:0 0 8px; font-size:14px; text-transform:uppercase; letter-spacing:.03em; color:#666; }

.cart-grid {
	display:grid;
	grid-template-columns:repeat(3, minmax(0,1fr));
	gap:18px 24px;
	width: 100%;
}
.cart-grid input,.card input {
	padding: 5px;
	border: 1px solid #CCC;
	border-radius: 5px;
	margin-bottom: 2px;
	width: 100%;	
}
.checkout-right input[type="checkbox"]{
	width: auto;
}
.checkout-right input {
	margin-bottom: 2px!important;	
}
.button {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: none;
}
.address-form {
	border: 1px solid #CCC;
	width: 300px;
	padding: 10px;
	border-radius: 5px;
}
.address-form input {
	width: 100%;
	padding: 5px;
}
.cart-grid input.postcode,.address-form input.postcode,.checkout-right input.postcode {
	width: 70%;
}
.cart-grid input.huisnr,.address-form input.huisnr,.checkout-right input.huisnr {
	width: 30%;
}
.properties-grid {
	display:grid;
	grid-template-columns:repeat(3, minmax(0,1fr));
	gap:18px 24px;
}
.property-block {
	border-radius:8px;
	background:#f8fafc;
	padding:10px 12px;
	position:relative;
}
.options-list {
	margin-top:6px;
	display:flex;
	flex-direction:column;
	gap:6px;
}

.option-btn {
	border-radius:6px;
	border:1px solid #ccd3da;
	background:#fff;
	font-size:13px;
	padding:6px 8px;
	cursor:pointer;
	display:flex;
	justify-content:space-between;
	align-items:center;
	transition:all .12s ease;
	position:relative;
}
.option-btn.selected {
	background:#4e8598;
	color:#fff;
	border-color:#4e8598;
}
.option-btn.disabled {
	background:#e6eaee;
	color:#999;
	/*cursor:not-allowed;*/
	pointer-events: auto;
}

.opt-label { font-weight:500; }

.opt-diff {
	font-size:12px;
	opacity:0.85;
	margin-left:8px;
	white-space:nowrap;
}

.conflict-info {
	display:none;
	position:absolute;
	right:4px;
	top:4px;
	color:#c00;
	font-weight:bold;
	font-size:14px;
	cursor:help;
}
.option-btn.disabled:hover .conflict-info {
	display:block;
}
.conflict-tooltip {
	display:none;
	position:absolute;
	z-index:1000;
	background:#fff;
	border:1px solid #c00;
	padding:8px 10px;
	font-size:12px;
	color:#c00;
	border-radius:6px;
	white-space:pre-line;
	width:220px;
	top:26px;
	right:0;
}
.option-btn.disabled:hover .conflict-tooltip {
	display:block;
}

.big-price {
	font-size:30px;
	font-weight:700;
	margin-bottom:4px;
}
.small-text { font-size:13px; color:#777; }
.error-text {
	font-size:12px;
	color:#c00;
	white-space:pre-wrap;
	margin-top:8px;
}

ul#selection-list {
	padding-left:18px;
	margin:0;
	font-size:13px;
}
ul#selection-list li { margin-bottom:4px; }
.opt-diff.loading,.urgency-diff.loading, {
	color: transparent;
	position: relative;
}

.opt-diff.loading::after,.urgency-diff.loading::after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 2px solid #ccd3da;
	border-top-color: #4e8598;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}
/* SHIPPING – alleen binnen config-col */
.config-col .shipping-card {
	margin-top: 16px;
	max-width: 100%!important;
}

.config-col .shipping-days {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 6px;
	margin-bottom: 12px;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

.config-col .shipping-day {
	flex: 0 0 auto;
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	background: #f7f7f7;
	cursor: pointer;
	font-size: 13px;
}

.config-col .shipping-day.selected {
	background: #000;
	color: #fff;
	border-color: #000;
}

.config-col .shipping-options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.config-col .shipping-row {
	border: 1px solid #ddd;
	padding: 8px 10px;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.config-col .shipping-row.selected {
	border-color: #000;
	background: #f0f0f0;
}

.config-col .ship-meta {
	font-size: 12px;
	color: #666;
}

.config-col .ship-price {
	font-weight: bold;
	white-space: nowrap;
}
.rel {
	position: relative;
	height: 100px;
}
.button {
display: block;
background-color: #FF9900;
width: 300px;
height: 50px;
line-height: 50px;
margin: auto;
color: #fff;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
cursor: pointer;
overflow: hidden;
border-radius: 5px;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button.ww {
	background-color: #F3E11D;
	text-align: center;
	text-decoration: none;
	color: #333;
}
.button span,
.button .icon {
display: block;
height: 100%;
text-align: center;
position: absolute;
top: 0;
}
.button span {
width: 72%;
line-height: inherit;
font-size: 16px;
text-transform: uppercase;
left: 0;
transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button span:after {
content: "";
background-color: rgba(0,0,0,.2);
width: 2px;
height: 70%;
position: absolute;
top: 15%;
right: -1px;
}
.button .icon {
width: 28%;
right: 0;
transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button .icon .fa {
font-size: 30px;
vertical-align: middle;
transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
}
.button .icon .fa-basket-shopping {
height: 36px;
}
.button .icon .fa-check {
display: none;
}
.button.success span, .button:hover span {
left: -72%;
opacity: 0;
}
.button.success .icon, .button:hover .icon {
width: 100%;
}
.button.success .icon .fa, .button:hover .icon .fa {
font-size: 35px;
}
.button.success {
background-color: #27ae60;
}
.button.success .icon .fa-basket-shopping {
display: none;
}
.button.success .icon .fa-check {
display: inline-block;
}
.button:hover {
opacity: 0.9;
}
.button:hover .icon .fa-remove {
height: 46px;
}
.button:active {
opacity: 1;
}
.delivery-urgency {
	margin-bottom: 12px;
}

.urgency-options {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.urgency-option {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	background: #fff;
}

.urgency-option.selected {
	background: #4e8598;
	color: #fff;
	border-color: #4e8598;
}

#searchprod {
	padding: 16px;
	width: 100%;
	border-radius: 26px;
	border: none;
}

input#custom-amount-input {
	width: 100%;
	height: 40px;
	padding: 8pt;
	border-radius: 20px;
	border: solid;
	border-width: 1px;
	border-color: lightgrey;
}

.option-btn.selected {
	background: #000000;
	color: #fff;
	border-color: #000000;
}

.option-btn {
	border-radius: 20px;
	border: 1px solid #ccd3da;
	background: #fff;
	font-size: 13px;
	padding: 10px 11px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all .12s ease;
	position: relative;
}

.options-list {
	margin-top: 6px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	/* padding: 12px; */
}

.urgency-option {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 26px;
	cursor: pointer;
	font-size: 14px;
	background: #fff;
}

.urgency-option.selected {
	background: #000;
	color: #fff;
	border-color: #000;
}

.button {
	display: block;
	background-color: #ffec01;
	width: 100%;
	height: 50px;
	line-height: 50px;
	margin: auto;
	color: #000000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
	border-radius: 26px;
}
.section-title {
display: flex;
font-size: 20px;
margin: 10px 0;
align-items: center;
justify-content: center;
gap: 24px;               /* ruimte tussen tekst en lijnen */
color: #333;
}

/* gedeelde styles voor beide lijnen */
.section-title::before,
.section-title::after {
content: "";
flex: 1;                 /* lijnen vullen de beschikbare ruimte */
height: 2px;
}

/* linker lijn: donkergrijs → wit (richting tekst) */
.section-title::before {
background: linear-gradient(
	to left,
	#666,
	#f4f4f4
);
}

/* rechter lijn: wit → donkergrijs (van tekst af) */
.section-title::after {
background: linear-gradient(
	to right,
	#666,
	#f4f4f4
);
}
.product-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

/* Responsive breekpunten */
@media (max-width: 1024px) {
.product-grid,.cart-grid {
	grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 768px) {
.product-grid,.cart-grid {
	grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.product-grid,.cart-grid {
	grid-template-columns: 1fr;
}
}

/* Product card */
.product-card {
text-align: center;
}

.product-card h3 {
margin-top: 12px;
min-height: 3em;
font-size: 16px;
text-transform: none;
}

/* Image container */
.image-wrapper {
position: relative;
width: 100%;
padding-top: 75%;
overflow: hidden;
background: #f2f5f7;
}

.image-wrapper:hover {
	opacity: 0.5;
	transition: .5s ease;
}

/* Image */
.image-wrapper img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
opacity: 0;
transition: opacity .4s ease;
}

/* Shimmer effect */
.shimmer::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
	100deg,
	#e5e5e5 40%,
	#f5f5f5 50%,
	#e5e5e5 60%
);
animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

.image-wrapper {
  contain: content;
}


/* Loaded state */
.image-wrapper.loaded::before {
display: none;
}

.image-wrapper.loaded img {
opacity: 1;
}
.image-wrapper.is-error img {
object-fit: contain;
padding: 24px;
background: #f3f3f3;
}
#logowe, .topper {
	display: inline-block;
	vertical-align: top;
}
#logowe .logo {
	width: 100%;
}
#logowe {
	width: 20%;
	height: 200px;
}
.topper {
	width: 100%;
}
.col {
	width: 49.5%;
	vertical-align: top;
	display: inline-block;
}
.col textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #CCC;
	border-radius: 5px;
}
.sm {
	display: none;
}
.col.prijscol {
	width: 100%;
}
/* Overlay */
/*.login-overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.5);
opacity: 0;
visibility: hidden;
transition: opacity .3s ease;
z-index: 9999;
}*/

/* Panel die inschuift van rechts */
/*.login-panel {
position: fixed;
top: 0;
right: -350px;
width: 350px;
height: 100%;
background: white;
padding: 30px;
box-shadow: -10px 0 30px rgba(0,0,0,0.2);
transition: right .4s ease;
}*/

/* Open states */
/*.login-overlay.open {
opacity: 1;
visibility: visible;
}

.login-overlay.open .login-panel {
right: 0;
}*/

/* Knoppen */
.login-trigger {
cursor: pointer;
padding: 10px 20px;
background: #0078d4;
color: white;
border: none;
border-radius: 4px;
}
.btn-login {
width: 100%;
padding: 12px;
background: #0078d4;
border: none;
color: white;
margin-top: 10px;
cursor: pointer;
}
.close-btn {
font-size: 24px;
float: right;
cursor: pointer;
}
#loginForm label {
	width: 30%;
	display: inline-block;
}
#loginForm input {
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #CCC;
	display: inline-block;
}
.login-message {
margin-bottom: 15px;
padding: 10px;
border-radius: 4px;
font-size: 14px;
display: none;
}

.login-message.visible {
display: block;
}

.login-message.error {
background: #ffe5e5;
color: #b30000;
}

.login-message.success {
background: #e6ffed;
color: #1a7f37;
}
/* standaard: alleen summary zichtbaar */
.property-block .option-btn[data-in-summary="0"] {
  display: none;
}

/* als property open is → toon alles, MAAR behoud flex */
.property-block.show-all .option-btn[data-in-summary="0"] {
  display: flex;
}


/* geselecteerde optie altijd zichtbaar */
.property-block .option-btn.selected {
display: flex !important;
}


#errorModal .close {
	position: absolute;
	right: 12px;
	top: 10px;
	cursor: pointer;
	font-size: 20px;
}

#errorModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6);
	display: none;
	z-index: 9999;
}

#errorModal .modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 20px;
	min-width: 300px;
	border-radius: 6px;
}
.conflict-modal { position: fixed; inset: 0; z-index: 999999; }
.conflict-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.conflict-modal__panel {
position: relative;
width: min(640px, calc(100% - 24px));
margin: 10vh auto 0;
background: #fff;
border-radius: 12px;
padding: 18px;
box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.conflict-modal__body { margin: 12px 0 16px; white-space: pre-line; }
.conflict-modal__actions { display: flex; gap: 10px; justify-content: flex-end; }

details {
  border-bottom: 1px solid #e5e5e5;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;

  color: #000;
  transition: color 0.3s ease;
}

summary::-webkit-details-marker {
  display: none;
}

/* Pijltje */
.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;

  transform: rotate(45deg);
  transition:
	transform 0.3s ease,
	border-color 0.3s ease;
}

/* Actieve (open) state */
details[open] summary {
  color: #fddd04;
}

details[open] .arrow {
  transform: rotate(-135deg);
  border-color: #fddd04;
}


.content {
  padding: 0 0 20px 22px;
  color: #666;
  line-height: 1.6;
}

.normaltekst,.accordion {
	padding: 20px;
	margin-bottom: 20px;
	background-color: #FFF;
	border-radius: 20px;
}


.blog-overview {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: Arial, sans-serif;
}

.blog-card {
  display: grid;
  grid-template-columns: 90px 240px 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
}

/* Kalendertje */
.blog-date {
  width: 70px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
}

.blog-date .month {
  background: #c94b4b;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 0;
  letter-spacing: 1px;
  width: 100%;
  display: block;
}

.blog-date .day {
  background: #fff;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 0;
  color: #333;
  width: 100%;
  display: block;
}

/* Thumbnail */
.blog-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

/* Tekst */
.blog-text h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.blog-text p {
  margin: 0 0 12px;
  color: #666;
  line-height: 1.6;
}

.read-more {
  color: #fddd04;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.blog-detail {
  font-family: Arial, sans-serif;
}

.blog-hero {
  position: relative;
  border-radius: 20px;
}

.blog-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.blog-hero-content {
  margin: 0 auto;
  position: relative;
  margin-top: -80px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 0 20px;
}

.blog-date.large {
  width: 90px;
}

.blog-date.large .day {
  font-size: 36px;
}

.hero-text h1 {
  margin: 0 0 8px;
  font-size: 32px;
}

.hero-text .meta {
  color: #666;
  font-size: 14px;
}

.blog-body {
  margin: 60px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

div#contact > div {
	display: inline-block;
	width: 49.5%;
	vertical-align: top;
}
div#contact input[type="text"],.contactform input[type="text"]{
	width: 90%;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #CCC;
	margin-bottom: 2px;
}
div#contact textarea,.contactform textarea {
	width: 90%;
	height: 100px;
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid #CCC;
}
div#contact input[type="submit"],.contactform input[type="submit"]{
	background-color: #ED262B;
	border: none;
	padding: 10px 20px;
	color: #FFF;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 300;
}
div#contact input[type="submit"]:hover,.contactform input[type="submit"]:hover {
	background-color: #333;
}
.payment-methods {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.payment-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border-radius: 12px;
	border: 1.5px solid #e5e7eb;
	background: #fff;
	cursor: pointer;
	transition: border-color .2s, box-shadow .2s;
}

.payment-card img {
	height: 28px;
}

.payment-card span {
	font-size: 15px;
	font-weight: 500;
	color: #111827;
}

.payment-card:hover {
	border-color: #9ca3af;
}

.payment-card.active {
	border-color: #111827;
	box-shadow: 0 0 0 1px #111827;
}

@media (max-width: 768px) {
	.payment-methods {
		grid-template-columns: 1fr;
	}
}

.pf-portfolio {
	display: flex;
	gap: 30px;
}

/* Linkerkolom */
.pf-filters {
	width: 25%;
	padding: 20px;
	border-right: 1px solid #ddd;
}

.pf-filters-title {
	margin-bottom: 15px;
}

.pf-filter-label {
	display: block;
	margin-bottom: 10px;
	cursor: pointer;
}

/* Rechterkolom */
.pf-items {
	width: 75%;
}

.pf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 25px;
}

/* Cards */
.pf-card {
	background: #FFF;
	border-radius: 12px;
	padding: 15px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 0 0 rgba(0,0,0,0);
}
.pf-card a {
	color: #333;	
}
.pf-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 0 20px rgba(0, 150, 255, 0.6);
}

.pf-card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
}

.pf-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pf-card-title {
	margin-top: 10px;
	font-size: 14px;
	color: #333;
}

/* Paginering */
.pf-pagination {
	margin-top: 30px;
	text-align: center;
}

.pf-page {
	display: inline-block;
	padding: 8px 12px;
	margin: 0 4px;
	border-radius: 6px;
	text-decoration: none;
	background: #eee;
	color: #333;
}

.pf-page.pf-active {
	background: #333;
	color: #fff;
}


@media screen and (min-width: 200px) and (max-width: 1000px){
	#silktide-cookie-icon {
		display: none!important;
	}
	.card.prijscard {
		margin-bottom: 0;
		-webkit-box-shadow:0px 0px 40px 45px rgba(51,51,51,0.9);
		-moz-box-shadow: 0px 0px 40px 45px rgba(51,51,51,0.9);
		box-shadow: 0px 0px 40px 25px rgba(51,51,51,0.4);
	}
	#letters {
		font-size: 10px;
		letter-spacing: -.6px;
	}
	.sm {
		display: inline-block;
	}
	.hm {
		display: none;
	}
	.col.prijscol {
		width: 100%;
	}
	.andereprijsdingen {
		width: 49%;
		display: inline-block;
	}
	.prijsbutton {
		display: inline-block;
		width: 200px;
	}
	.col.prijscol.sm .prodimg {
		height: 120px;
	}
	body {
		padding: 10px;
	}
	#sidebar,.login-overlay,#sidebarnav {
		position: fixed;
		z-index: 99999999;
		background-color: rgba(255,255,255,.95);
		box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
		border-radius: 20px 0 0 20px;
		top: 20px;
		right: -80%;
		height: 90vh;
		width: 80%;
		padding: 30px;
		transition: .5s;
	}
	.middle {
		width: 100%;
		margin: 0 auto;
	}
	.properties-grid {
		display:grid;
		grid-template-columns:repeat(1, minmax(0,1fr));
		zoom: .8;
		gap:18px 24px;
	}
	#logowe .logo {
		width: 100%;
	}
	.stickler .search {
		width: 90%;
		display: inline-block;
	}
	.stickler .icons {
		width: 5%;
		zoom: .5;
		display: inline-block;
	}
	.button {
		zoom: .8;
		width: auto;
	}
	.summary-col {
		position: fixed;
		bottom: 0;
		left: 0;
		top: auto;
		width: 100%;
	}
	.summary-col > div {
		zoom: .8;
		display: none;
	}
	.summary-col > div:first-child {
		display: block;
	}
	.col {
		width: 100%;	
	}
	.blog-text {
		width: 100%;
	}
	.blog-card {
		grid-template-columns: auto!important;
		grid-template-rows: 90px 240px 3fr!important;
	}
	div#contact > div {
		width: 100%;
	}
	.stickler {
		padding-bottom: 0;
		margin: 0;
		width: 100%!important;
	}
}
/* =========================
   TABLET (≤ 1024px)
========================= */
@media (max-width: 1024px) {

	.pf-portfolio {
		gap: 20px;
	}

	.pf-filters {
		width: 30%;
	}

	.pf-items {
		width: 70%;
	}

	.pf-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	}
}

/* =========================
   MOBILE (≤ 768px)
========================= */
@media (max-width: 768px) {

	.pf-portfolio {
		flex-direction: column;
	}

	.pf-filters {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ddd;
		padding-bottom: 15px;
	}

	.pf-items {
		width: 100%;
	}

	.pf-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.pf-card {
		padding: 12px;
	}

	.pf-card-title {
		font-size: 13px;
	}
}

/* =========================
   SMALL MOBILE (≤ 480px)
========================= */
@media (max-width: 480px) {

	.pf-grid {
		grid-template-columns: 1fr;
	}

	.pf-filters-title {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.pf-filters {
		padding-top: 10px;
	}

	.pf-filters.collapsed label {
		display: none;
	}

	.pf-filters-toggle {
		cursor: pointer;
	}
}


/* Pagina centreren */
.page-404 {
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

/* Het vakkie */
.box-404 {
	background: #fff;
	max-width: 520px;
	width: 100%;
	padding: 3rem 2.5rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* SVG icoon */
.box-404 .icon {
	margin-bottom: 1.5rem;
	color: #000;
}

.box-404 svg {
	max-width: 120px;
	height: auto;
}

/* Titel */
.box-404 h1 {
	font-size: 1.6rem;
	margin-bottom: 1rem;
}

/* Tekst */
.box-404 p {
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 2rem;
}

/* Button */
.box-404 .btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background: #000;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.box-404 .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.dropzone {
	display: block;
	border: 2px dashed #ccc;
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fafafa;
}

.dropzone:hover {
	border-color: #666;
	background: #f0f0f0;
}

.dropzone.dragover {
	border-color: #000;
	background: #eaeaea;
}

.dropzone-content strong {
	display: block;
	font-size: 16px;
	margin-bottom: 6px;
}

.dropzone-content span {
	font-size: 14px;
	color: #666;
}

.dropzone-content small {
	display: block;
	margin-top: 8px;
	color: #999;
}

.upload-panel {
	margin-top: 15px;
}

.url-form {
	margin-top: 15px;
	display: flex;
	gap: 8px;
}
.summary-card {
	max-width: 560px;
}

.summary-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 14px;
	color: #333;
}

.summary-row .item {
	max-width: 70%;
	line-height: 1.4;
}

.summary-row .price {
	font-weight: 600;
	white-space: nowrap;
}

.summary-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
	font-size: 22px;
	font-weight: 800;
}
.product-tags {
	margin-top: 10px;
}

.product-tag {
	display: inline-block;
	background: #f0f0f0;
	color: #333;
	padding: 4px 8px;
	margin: 3px 6px 3px 0;
	border-radius: 4px;
	font-size: 13px;
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  right: 0!important;
  bottom: 100px!important;
  zoom: .5;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}