/**
 * Actiebak Container Rental - frontend stijlen.
 *
 * Modern, snel en conversiegericht. Geel = accent/CTA, blauw = merkkleur.
 * Kleuren komen uit CSS-variabelen; het child-thema injecteert deze op
 * basis van Actiebak -> Instellingen. Onderstaande waarden zijn de fallback.
 */
:root {
	--acr-primary: #eec81f;       /* geel - accent & CTA            */
	--acr-primary-dark: #d9b312;  /* geel - hover                   */
	--acr-on-primary: #19407b;    /* tekst op geel (blauw)          */
	--acr-dark: #19407b;          /* merkblauw - hero, footer, kop  */
	--acr-dark-2: #214f94;        /* blauw - accenten/hover         */
	--acr-ink: #16233a;
	--acr-text: #2c3a4f;
	--acr-muted: #687388;
	--acr-line: #e4e8ef;
	--acr-bg-soft: #f4f6fa;
	--acr-ok: #1f8a4c;
	--acr-error: #c0392b;
	--acr-radius: 14px;
	--acr-radius-sm: 10px;
	--acr-shadow: 0 10px 30px rgba(25, 64, 123, 0.10);
	--acr-shadow-lg: 0 20px 50px rgba(25, 64, 123, 0.20);
}

/* ------------------------------------------------------------------ *
 * Basis
 * ------------------------------------------------------------------ */
.acr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 22px;
}
.acr-container-narrow {
	max-width: 820px;
}
.acr-section {
	padding: 68px 0;
}
.acr-section-title {
	text-align: center;
	font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.3rem);
	line-height: 1.18;
	margin: 0 0 14px;
	color: var(--acr-dark);
	font-weight: 800;
	letter-spacing: -0.02em;
}
.acr-section-title::after {
	content: '';
	display: block;
	width: 64px;
	height: 5px;
	border-radius: 3px;
	background: var(--acr-primary);
	margin: 16px auto 26px;
}

/* ------------------------------------------------------------------ *
 * Knoppen
 * ------------------------------------------------------------------ */
.acr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border: 0;
	border-radius: var(--acr-radius-sm);
	font-weight: 800;
	font-size: 1rem;
	line-height: 1.15;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.08s ease, box-shadow 0.15s ease,
		background-color 0.15s ease;
}
.acr-btn:active {
	transform: translateY(1px);
}
.acr-btn-primary {
	background: var(--acr-primary);
	color: var(--acr-on-primary);
	box-shadow: 0 6px 16px rgba(238, 200, 31, 0.4);
}
.acr-btn-primary:hover {
	background: var(--acr-primary-dark);
	color: var(--acr-on-primary);
	box-shadow: 0 10px 22px rgba(238, 200, 31, 0.5);
}
.acr-btn-light {
	background: #fff;
	color: var(--acr-dark);
}
.acr-btn-light:hover {
	background: #f0f3f8;
}
.acr-loading {
	opacity: 0.7;
	cursor: progress;
}

/* ------------------------------------------------------------------ *
 * Hero
 * ------------------------------------------------------------------ */
.acr-hero {
	position: relative;
	background:
		radial-gradient(900px 420px at 78% -8%,
			rgba(238, 200, 31, 0.18), transparent 60%),
		linear-gradient(160deg, #1d4787 0%, var(--acr-dark) 55%, #15355f 100%);
	color: #fff;
	overflow: hidden;
}
.acr-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.06) 1.4px, transparent 1.4px);
	background-size: 26px 26px;
	pointer-events: none;
}
.acr-hero-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 76px 22px 84px;
}
.acr-hero-text {
	max-width: 680px;
}
.acr-hero-text h1 {
	color: #fff;
	font-size: clamp(2rem, 1.2rem + 3vw, 3.1rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 16px;
	font-weight: 800;
}
.acr-hero-sub {
	font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
	color: #cdd9ea;
	margin: 0 0 28px;
	max-width: 600px;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ *
 * USP-balk - gele band onder de hero
 * ------------------------------------------------------------------ */
.acr-usp-bar {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 18px 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 34px;
	justify-content: center;
	background: var(--acr-primary);
}
.acr-usp-bar li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 700;
	color: var(--acr-on-primary);
	font-size: 0.98rem;
}
.acr-usp-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--acr-dark);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	flex: 0 0 auto;
}

/* ------------------------------------------------------------------ *
 * Postcode-widget
 * ------------------------------------------------------------------ */
.acr-pc-widget {
	background: #fff;
	border-radius: var(--acr-radius);
	box-shadow: var(--acr-shadow-lg);
	padding: 26px;
	max-width: 560px;
	border-top: 5px solid var(--acr-primary);
}
.acr-pc-title {
	margin: 0 0 14px;
	color: var(--acr-dark);
	font-size: 1.2rem;
	font-weight: 800;
}
.acr-pc-form {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.acr-pc-form input[type='text'] {
	flex: 1 1 170px;
	padding: 15px 16px;
	border: 2px solid var(--acr-line);
	border-radius: var(--acr-radius-sm);
	font-size: 1.05rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--acr-ink);
	transition: border-color 0.12s ease;
}
.acr-pc-form input[type='text']::placeholder {
	color: #aab3c2;
	font-weight: 500;
}
.acr-pc-form input[type='text']:focus {
	outline: none;
	border-color: var(--acr-primary);
}
.acr-pc-form .acr-btn {
	flex: 0 0 auto;
}
.acr-pc-result {
	margin: 14px 0 0;
	min-height: 1.2em;
	font-weight: 700;
}
.acr-pc-compact {
	box-shadow: none;
	padding: 0;
	background: transparent;
	border-top: 0;
}
.acr-pc-ok {
	color: var(--acr-ok);
	font-weight: 800;
}

/* Meldingen */
.acr-msg-error {
	color: var(--acr-error);
	font-weight: 700;
}
.acr-msg-ok {
	color: var(--acr-ok);
	font-weight: 800;
}
.acr-msg-info {
	color: var(--acr-muted);
	font-weight: 600;
}
.acr-msg-link {
	color: var(--acr-dark);
	font-weight: 800;
	text-decoration: underline;
}

/* ------------------------------------------------------------------ *
 * Grids / kaarten
 * ------------------------------------------------------------------ */
.acr-grid {
	display: grid;
	gap: 24px;
}
.acr-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}
.acr-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}
.acr-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}
.acr-card {
	background: #fff;
	border: 1px solid var(--acr-line);
	border-radius: var(--acr-radius);
	padding: 26px 22px;
	box-shadow: var(--acr-shadow);
}

/* Afvaltype-kaarten */
.acr-waste-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: var(--acr-text);
	overflow: hidden;
	transition: transform 0.14s ease, box-shadow 0.14s ease,
		border-color 0.14s ease;
}
.acr-waste-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--acr-primary);
	transform: scaleX(0);
	transition: transform 0.16s ease;
}
.acr-waste-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--acr-shadow-lg);
	border-color: transparent;
}
.acr-waste-card:hover::before {
	transform: scaleX(1);
}
.acr-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--acr-bg-soft);
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom: 14px;
}
.acr-card-title {
	font-weight: 800;
	font-size: 1.12rem;
	color: var(--acr-dark);
	letter-spacing: -0.01em;
}
.acr-card-price {
	margin-top: 7px;
	color: var(--acr-text);
	font-weight: 700;
}
.acr-card-cta {
	margin-top: 16px;
	font-size: 0.92rem;
	font-weight: 800;
	color: var(--acr-dark);
}
.acr-waste-card:hover .acr-card-cta {
	color: var(--acr-primary-dark);
}

/* ------------------------------------------------------------------ *
 * Stappen "Hoe werkt het"
 * ------------------------------------------------------------------ */
.acr-steps-section {
	background: var(--acr-bg-soft);
}
.acr-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.acr-step {
	position: relative;
	text-align: center;
	background: #fff;
	border: 1px solid var(--acr-line);
	border-radius: var(--acr-radius);
	padding: 32px 22px 26px;
}
.acr-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--acr-primary);
	color: var(--acr-on-primary);
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 16px;
	box-shadow: 0 6px 14px rgba(238, 200, 31, 0.4);
}
.acr-step h3 {
	margin: 0 0 8px;
	color: var(--acr-dark);
	font-size: 1.18rem;
	font-weight: 800;
}
.acr-step p {
	color: var(--acr-muted);
	margin: 0;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ *
 * "Waarom Actiebak"
 * ------------------------------------------------------------------ */
.acr-why-item {
	background: #fff;
	border: 1px solid var(--acr-line);
	border-radius: var(--acr-radius);
	padding: 24px 22px;
	box-shadow: var(--acr-shadow);
}
.acr-why-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--acr-primary);
	color: var(--acr-on-primary);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 14px;
}
.acr-why-item h3 {
	margin: 0 0 7px;
	color: var(--acr-dark);
	font-size: 1.1rem;
	font-weight: 800;
}
.acr-why-item p {
	color: var(--acr-muted);
	margin: 0;
	line-height: 1.6;
}

/* ------------------------------------------------------------------ *
 * Prijstabel
 * ------------------------------------------------------------------ */
.acr-table-wrap {
	overflow-x: auto;
	border-radius: var(--acr-radius);
	box-shadow: var(--acr-shadow);
}
.acr-price-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	overflow: hidden;
}
.acr-price-table th,
.acr-price-table td {
	border-bottom: 1px solid var(--acr-line);
	padding: 14px 16px;
	text-align: center;
}
.acr-price-table thead th {
	background: var(--acr-dark);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.01em;
}
.acr-price-table tbody tr:nth-child(even) {
	background: var(--acr-bg-soft);
}
.acr-price-table tbody tr:hover {
	background: rgba(238, 200, 31, 0.12);
}
.acr-price-table td:first-child {
	text-align: left;
	font-weight: 700;
	color: var(--acr-dark);
}
.acr-price-note {
	text-align: center;
	color: var(--acr-muted);
	margin-bottom: 22px;
}

/* ------------------------------------------------------------------ *
 * FAQ
 * ------------------------------------------------------------------ */
.acr-faq-item {
	background: #fff;
	border: 1px solid var(--acr-line);
	border-radius: var(--acr-radius-sm);
	margin-bottom: 12px;
	padding: 2px 20px;
	transition: border-color 0.12s ease;
}
.acr-faq-item[open] {
	border-color: var(--acr-primary);
}
.acr-faq-item summary {
	cursor: pointer;
	font-weight: 800;
	color: var(--acr-dark);
	padding: 17px 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.acr-faq-item summary::-webkit-details-marker {
	display: none;
}
.acr-faq-item summary::after {
	content: '+';
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--acr-bg-soft);
	color: var(--acr-dark);
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.acr-faq-item[open] summary::after {
	content: '\2013';
	background: var(--acr-primary);
	color: var(--acr-on-primary);
}
.acr-faq-answer {
	padding: 0 0 18px;
	color: var(--acr-text);
	line-height: 1.65;
}

/* ------------------------------------------------------------------ *
 * Servicegebieden
 * ------------------------------------------------------------------ */
.acr-areas {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.acr-area-pill {
	background: #fff;
	border: 1px solid var(--acr-line);
	border-radius: 999px;
	padding: 9px 18px;
	font-weight: 700;
	color: var(--acr-dark);
}
.acr-area-pill:hover {
	border-color: var(--acr-primary);
}
.acr-areas-note {
	text-align: center;
	color: var(--acr-muted);
	margin-top: 20px;
}

/* ------------------------------------------------------------------ *
 * CTA-blok
 * ------------------------------------------------------------------ */
.acr-cta-block {
	position: relative;
	background:
		radial-gradient(700px 300px at 85% 120%,
			rgba(238, 200, 31, 0.2), transparent 60%),
		var(--acr-dark);
	color: #fff;
	text-align: center;
	padding: 60px 22px;
}
.acr-cta-block h2 {
	color: #fff;
	margin: 0 0 10px;
	font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2rem);
	font-weight: 800;
}
.acr-cta-block p {
	margin: 0 0 24px;
	font-size: 1.1rem;
	color: #cdd9ea;
}

/* ------------------------------------------------------------------ *
 * Productpagina - postcode-box + velden
 * ------------------------------------------------------------------ */
.acr-product-postcode {
	background: var(--acr-bg-soft);
	border: 1px solid var(--acr-line);
	border-left: 4px solid var(--acr-primary);
	border-radius: var(--acr-radius-sm);
	padding: 18px 20px;
	margin: 0 0 22px;
}
.acr-product-postcode .acr-pc-ok a {
	margin-left: 6px;
	font-size: 0.9rem;
	color: var(--acr-dark);
}
.acr-pc-inline.is-hidden {
	display: none;
}
.acr-pc-inline label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--acr-dark);
}
.acr-pc-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.acr-pc-row input[type='text'] {
	flex: 1 1 150px;
	padding: 12px 13px;
	border: 2px solid var(--acr-line);
	border-radius: 9px;
	text-transform: uppercase;
	font-weight: 600;
}
.acr-pc-row input[type='text']:focus {
	outline: none;
	border-color: var(--acr-primary);
}
.acr-pc-msg {
	margin: 9px 0 0;
	min-height: 1em;
}
.acr-field {
	margin: 0 0 18px;
}
.acr-field label {
	display: block;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--acr-dark);
}
.acr-field input[type='date'],
.acr-field input[type='time'],
.acr-field textarea,
.acr-field select {
	width: 100%;
	max-width: 360px;
	padding: 12px 13px;
	border: 2px solid var(--acr-line);
	border-radius: 9px;
	font-size: 1rem;
}
.acr-field input:focus,
.acr-field textarea:focus,
.acr-field select:focus {
	outline: none;
	border-color: var(--acr-primary);
}
.acr-field textarea {
	max-width: 100%;
	min-height: 92px;
}

/* ------------------------------------------------------------------ *
 * Ophaalverzoek-formulier
 * ------------------------------------------------------------------ */
.acr-pickup-form {
	max-width: 640px;
}
.acr-pickup-form .acr-field {
	margin-bottom: 18px;
}
.acr-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.acr-form-notice {
	padding: 15px 18px;
	border-radius: var(--acr-radius-sm);
	margin-bottom: 20px;
	font-weight: 700;
}
.acr-form-notice.is-ok {
	background: #e6f5ec;
	color: var(--acr-ok);
	border: 1px solid #bfe3cc;
}
.acr-form-notice.is-error {
	background: #fbe9e7;
	color: var(--acr-error);
	border: 1px solid #f1c4bf;
}

/* ------------------------------------------------------------------ *
 * Responsive
 * ------------------------------------------------------------------ */
@media (max-width: 960px) {
	.acr-cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.acr-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	.acr-steps {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 600px) {
	.acr-cols-4,
	.acr-cols-3,
	.acr-cols-2 {
		grid-template-columns: 1fr;
	}
	.acr-section {
		padding: 46px 0;
	}
	.acr-hero-inner {
		padding: 52px 22px 60px;
	}
	.acr-pc-form .acr-btn {
		flex: 1 1 100%;
	}
}
