@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root{
	--bg:#f7f3ef;          /* warm, zacht */
	--fg:#2b241f;          /* donkerbruin/grijs */
	--card:#ffffff;        /* panel/kaart */
	--accent:#b86435;      /* terracotta */
	--accent-strong:#984c23; /* donkerder accent */
	--muted:#756860;       /* secundaire tekst */
	--line:#e8ddd3;        /* subtiele lijnen */
	--ok:#2f8f46;          /* groen voor bevestiging */
	--warn:#b15a17;        /* warm oranje/amber */
	--font:'Inter',sans-serif;
}
/* Basis: modern classless layout */
html{box-sizing:border-box;scroll-behavior:smooth;scroll-padding-top:240px;}
*,*::before,*::after{box-sizing:inherit}
body{margin:0;background:var(--bg);color:var(--fg);font:16px/1.6 var(--font);};
img{max-width:100%;height:auto;border:0}
a{color:var(--accent);text-decoration:none}
a:hover,a:focus{color:var(--accent-strong);text-decoration:underline}
h1,h2,h3,h4{line-height:1.25;margin:0 0 .5rem 0}
p{margin:.5rem 0 1rem}
ul,ol{padding-left:1.25rem}
* {font-family:var(--font);}
code,kbd,pre{font-family:ui-monospace,SFMono-Regular,Consolas,Monaco,monospace}

/* Layout containers */
header,main,footer{max-width:1100px;margin:auto;padding:0 1rem}
section{margin:2.5rem 0;padding:1.25rem;background:var(--card);border:1px solid var(--line);border-radius:14px}

/* Header / nav */
nav{position:sticky;display:flex;background:rgba(247,243,239,1);top:0;gap:.75rem;padding:.5rem;border-bottom:1px solid var(--line);}
nav a{padding:.5rem .75rem;border-radius:10px;border:1px solid transparent}
nav a:hover{background:var(--card);border-color:var(--line);text-decoration:none}
header{background:linear-gradient(0deg, rgba(247,243,239,.9), rgba(247,243,239,.95));backdrop-filter:saturate(1.2) blur(6px);padding-bottom:.75rem;max-width:100%;}
header h1{font-size:1.25rem;margin:0}
header .wrapper {max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:50px 0 0 0;}
header [aria-label="Direct bestellen"],
a[aria-label="Direct bestellen"]{background:var(--accent);color:white;border-color:transparent}
a[aria-label="Direct bestellen"]:hover{background:var(--accent-strong)}

/* Hero */
section[aria-labelledby="hero-title"]{border:none;background:linear-gradient(180deg,#fff, #f3ece6);padding:2rem 1.25rem}
#hero-title{font-size:2rem;margin-bottom:.5rem}
section[aria-labelledby="hero-title"] p:first-of-type{color:var(--muted)}
section[aria-labelledby="hero-title"] p:last-of-type{display:flex;flex-wrap:wrap;gap:.5rem}
section[aria-labelledby="hero-title"] a{display:inline-block;padding:.6rem 1rem;border-radius:12px;border:1px solid var(--line);background:var(--card)}
section[aria-labelledby="hero-title"] a:nth-child(1){background:var(--card)}
section[aria-labelledby="hero-title"] a:nth-child(2){background:var(--accent);color:#fff;border-color:transparent}
section[aria-labelledby="hero-title"] a:nth-child(2):hover{background:var(--accent-strong)}

/* USP balk */
#usp-title{font-size:1.125rem}
section[aria-labelledby="usp-title"] ul{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.5rem;margin:0;padding:0;list-style:none}
section[aria-labelledby="usp-title"] li{padding:.75rem 1rem;border:1px dashed var(--line);border-radius:12px;background:#fff}

/* Assortiment navigatie */
#assortiment nav{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
#assortiment nav a{padding:.5rem .8rem;border-radius:10px;border:1px solid var(--line);background:#fff}

/* Productlijsten per categorie */
#assortiment section{background:transparent;border:none;padding:0;margin:1.5rem 0}
#assortiment article{background:#fff;border:1px solid var(--line);border-radius:12px;padding:1rem;margin:.75rem 0}
#assortiment article h4{margin:0 0 .25rem}
#assortiment article p{margin:.25rem 0}
#assortiment article a{margin-right:.5rem}

/* PDP & formulieren */
#pdp-borrelplank,#pdp-wraps{scroll-margin-top:88px}
form{display:grid;gap:.75rem;}
fieldset{border:1px solid var(--line);border-radius:12px;padding:1rem}
legend{padding:0 .25rem;color:var(--muted)}
label{font-weight:600;display:inline;}
input[type="text"],input[type="email"],input[type="tel"],input[type="number"],input[type="date"],input[type="time"],select,textarea{width:100%;padding:.6rem .7rem;border:1px solid var(--line);border-radius:10px;background:#fff}
button, .btn{display:inline-block;padding:.65rem 1rem;border-radius:12px;border:1px solid transparent;background:var(--accent);color:#fff;font-weight:600;cursor:pointer}
button:hover{background:var(--accent-strong)}
details{border:1px solid var(--line);border-radius:12px;padding:.75rem 1rem}
summary{cursor:pointer;font-weight:600}

/* Tabel winkelmand */
table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff}
thead th{background:#faf6f2;text-align:left;padding:.6rem .75rem;border-bottom:1px solid var(--line)}
tbody td{padding:.6rem .75rem;border-bottom:1px solid var(--line)}
caption{caption-side:top;text-align:left;font-weight:700;margin-bottom:.5rem}

/* Footer */
footer{margin:3rem auto 2rem;padding:1rem 0;border-top:1px solid var(--line);color:var(--muted)}
footer nav{display:flex;gap:.75rem;flex-wrap:wrap}

/* Utilities */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Responsiveness */
@media (min-width: 760px){
	header nav{justify-content:center}
	section{padding:1.5rem}
	#hero-title{font-size:2.4rem}
	section[aria-labelledby="hero-title"]{padding:2.25rem 1.5rem}
}