/**
 * Dierenmeubels — hoofdstylesheet.
 * Mobile first: de basisregels gelden voor telefoons,
 * media queries voegen daarna tablet en desktop toe.
 */

/* =========================================================
   1. Ontwerptokens
   ========================================================= */

:root {
	--dm-teal: #00a29b;
	--dm-teal-dark: #00817c;
	--dm-teal-soft: #e4f4f2;
	--dm-yellow: #ffcf5c;
	--dm-yellow-soft: #fff3d6;
	--dm-sand: #e7c9a0;
	--dm-sand-soft: #f7ecdc;
	--dm-ink: #15211f;
	--dm-muted: #5d6b69;
	--dm-cream: #fffcf6;
	--dm-surface: #ffffff;
	--dm-line: #ece6da;
	--dm-danger: #c8452f;

	--dm-radius: 18px;
	--dm-radius-sm: 12px;
	--dm-radius-lg: 28px;

	--dm-shadow-sm: 0 1px 3px rgba(21, 33, 31, .06);
	--dm-shadow: 0 4px 18px rgba(21, 33, 31, .07);
	--dm-shadow-lg: 0 14px 40px rgba(21, 33, 31, .12);

	--dm-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--dm-font-head: var(--dm-font);

	--dm-gap: 16px;
	--dm-container: 1240px;
	--dm-header-h: 64px;
}

/* =========================================================
   2. Basis
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--dm-cream);
	color: var(--dm-ink);
	font-family: var(--dm-font);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body.dm-locked {
	overflow: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Elementen met het hidden-attribuut moeten verborgen blijven, ook als er
   verderop een display-regel op staat. Zonder deze regel wint een eigen
   display:flex of display:grid van de standaardregel van de browser en
   blijven het menu, de winkelwagenlade en de knop naar boven altijd staan. */
[hidden] {
	display: none !important;
}

a {
	color: var(--dm-teal-dark);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--dm-font-head);
	line-height: 1.18;
	margin: 0 0 .5em;
	font-weight: 800;
	letter-spacing: -.015em;
}

h1 { font-size: clamp(1.85rem, 5.2vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 3.6vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.4vw, 1.4rem); }

p { margin: 0 0 1em; }

ul, ol { padding-left: 1.2em; }

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--dm-teal);
	outline-offset: 2px;
	border-radius: 6px;
}

/* Alleen zichtbaar voor schermlezers. Staat ook in style.css, maar hoort
   hier zodat de opmaak niet afhangt van de laadvolgorde. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: #fff;
	border-radius: 6px;
	clip: auto !important;
	clip-path: none;
	color: var(--dm-teal-dark);
	display: block;
	font-size: .875rem;
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 14px 22px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
}

.dm-icon { flex: none; }
.dm-rot90 { transform: rotate(90deg); }
.dm-rot180 { transform: rotate(180deg); }
.dm-rot270 { transform: rotate(270deg); }

/* =========================================================
   3. Layout
   ========================================================= */

.dm-container {
	width: 100%;
	max-width: var(--dm-container);
	margin-inline: auto;
	padding-inline: 16px;
}

.dm-section {
	position: relative;
	padding-block: 28px;
}

.dm-page {
	padding-block: 20px 48px;
}

.dm-layout {
	display: grid;
	gap: 28px;
}

.dm-wave {
	position: absolute;
	left: 0;
	right: 0;
	line-height: 0;
	pointer-events: none;
}

.dm-wave svg {
	width: 100%;
	height: 44px;
	display: block;
}

.dm-wave--bottom { bottom: -1px; }
.dm-wave--top { top: -1px; transform: rotate(180deg); }

/* =========================================================
   4. Knoppen
   ========================================================= */

.dm-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--dm-teal);
	color: #fff;
	font: inherit;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.dm-btn:hover,
.dm-btn:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--dm-teal-dark);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: var(--dm-shadow);
}

.dm-btn--lg {
	padding: 15px 30px;
	font-size: 1.05rem;
}

.dm-btn--ghost {
	background: transparent;
	color: var(--dm-ink);
	border: 2px solid var(--dm-line);
}

.dm-btn--ghost:hover {
	background: var(--dm-teal-soft);
	color: var(--dm-ink);
	border-color: var(--dm-teal);
}

.dm-iconbtn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--dm-ink);
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
}

.dm-iconbtn:hover,
.dm-iconbtn:focus {
	background: var(--dm-teal-soft);
	color: var(--dm-teal-dark);
	text-decoration: none;
}

/* =========================================================
   5. Header
   ========================================================= */

.dm-topbar {
	background: var(--dm-teal);
	color: #fff;
	font-size: .74rem;
}

.dm-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 34px;
	text-align: center;
}

.dm-topbar__text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.dm-topbar__menu {
	display: none;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-topbar__menu a {
	color: #fff;
	opacity: .92;
}

.dm-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--dm-surface);
	border-bottom: 1px solid var(--dm-line);
	transition: box-shadow .2s ease;
}

.dm-header.is-stuck {
	box-shadow: var(--dm-shadow);
}

.dm-header__inner {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: var(--dm-header-h);
}

.dm-header__brand {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
}

.dm-header__brand img,
.custom-logo {
	max-height: 46px;
	width: auto;
}

.dm-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: 100%;
	color: var(--dm-ink);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: -.02em;
}

.dm-logo__text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dm-logo:hover { text-decoration: none; }

.dm-logo__mark {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--dm-teal);
	color: #fff;
}

.dm-header__search { display: none; }

.dm-header__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: none;
}

.dm-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--dm-yellow);
	color: var(--dm-ink);
	font-size: .68rem;
	font-weight: 800;
	line-height: 19px;
	text-align: center;
}

/* Zoekbalk */

.dm-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.dm-search__icon {
	position: absolute;
	left: 14px;
	display: grid;
	place-items: center;
	color: var(--dm-muted);
	pointer-events: none;
}

/* Bewust een zware selector: de algemene formulierregels verderop en die
   van WooCommerce mogen deze padding niet overschrijven, anders schuift de
   ingetypte tekst onder het vergrootglas. */
.dm-search input.dm-search__input {
	width: 100%;
	padding: 11px 16px 11px 44px;
	border: 1.5px solid var(--dm-line);
	border-radius: 999px;
	background: var(--dm-cream);
	font: inherit;
	color: var(--dm-ink);
}

.dm-search__input::placeholder { color: #93a09e; }

.dm-search__input:focus {
	border-color: var(--dm-teal);
	background: #fff;
	outline: none;
}

.dm-search__submit {
	position: absolute;
	right: 5px;
	padding: 8px 16px;
	border: 0;
	border-radius: 999px;
	background: var(--dm-teal);
	color: #fff;
	font: inherit;
	font-weight: 700;
	font-size: .88rem;
	cursor: pointer;
}

.dm-search__submit:hover { background: var(--dm-teal-dark); }

.dm-searchrow {
	padding: 10px 0 14px;
	border-top: 1px solid var(--dm-line);
	background: var(--dm-surface);
}

/* Hoofdnavigatie (desktop) */

.dm-navbar { display: none; }

.dm-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-nav > li { position: relative; }

.dm-nav > li > a {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 14px;
	border-radius: 999px;
	color: var(--dm-ink);
	font-weight: 700;
	font-size: .95rem;
}

.dm-nav > li > a:hover,
.dm-nav > li.current-menu-item > a,
.dm-nav > li.current-menu-parent > a {
	background: var(--dm-teal-soft);
	color: var(--dm-teal-dark);
	text-decoration: none;
}

.dm-nav .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 40;
	min-width: 230px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	box-shadow: var(--dm-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.dm-nav li:hover > .sub-menu,
.dm-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.dm-nav .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--dm-radius-sm);
	color: var(--dm-ink);
	font-size: .93rem;
}

.dm-nav .sub-menu a:hover {
	background: var(--dm-teal-soft);
	text-decoration: none;
}

.dm-nav .sub-menu .sub-menu {
	position: static;
	box-shadow: none;
	border: 0;
	padding: 0 0 0 12px;
	opacity: 1;
	visibility: visible;
	transform: none;
}

/* =========================================================
   6. Off-canvas, winkelwagenlade en overlay
   ========================================================= */

.dm-overlay {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(12, 30, 28, .45);
	backdrop-filter: blur(2px);
	animation: dm-fade .2s ease;
}

@keyframes dm-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.dm-offcanvas,
.dm-minicart {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 80;
	width: min(360px, 88vw);
	display: flex;
	flex-direction: column;
	background: var(--dm-surface);
	box-shadow: var(--dm-shadow-lg);
	animation: dm-slide-left .24s ease;
}

/* Menu en winkelwagen komen allebei van rechts: de knoppen staan daar ook,
   en dat is de kant waar een duim op een telefoon bij kan. */
.dm-offcanvas,
.dm-minicart {
	right: 0;
	left: auto;
	animation: dm-slide-right .24s ease;
}

@keyframes dm-slide-right {
	from { transform: translateX(100%); }
	to { transform: none; }
}

.dm-offcanvas__head,
.dm-minicart__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--dm-line);
	background: var(--dm-teal-soft);
}

.dm-offcanvas__title,
.dm-minicart__title {
	font-weight: 800;
	font-size: 1.05rem;
}

.dm-offcanvas__body,
.dm-minicart__content {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

.dm-offcanvas__menu,
.dm-offcanvas__service {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.dm-offcanvas__menu a,
.dm-offcanvas__service a {
	display: block;
	padding: 12px 4px;
	border-bottom: 1px solid var(--dm-line);
	color: var(--dm-ink);
	font-weight: 700;
}

.dm-offcanvas__service a {
	font-weight: 500;
	font-size: .92rem;
	color: var(--dm-muted);
}

.dm-offcanvas__menu .sub-menu {
	margin: 0;
	padding: 0 0 0 14px;
	list-style: none;
}

.dm-offcanvas__menu .sub-menu a {
	font-weight: 500;
	font-size: .93rem;
}

/* =========================================================
   7. Hero
   ========================================================= */

.dm-hero {
	position: relative;
	overflow: hidden;
	padding: 28px 0 56px;
	background: linear-gradient(170deg, var(--dm-teal-soft) 0%, var(--dm-cream) 78%);
}

.dm-hero__inner {
	display: grid;
	gap: 22px;
	position: relative;
	z-index: 2;
}

.dm-hero__title {
	margin: 0 0 .35em;
	color: var(--dm-ink);
}

.dm-hero__text {
	max-width: 46ch;
	font-size: 1.03rem;
	color: var(--dm-muted);
}

.dm-hero__cta { margin: 0; }

.dm-hero__media {
	position: relative;
	border-radius: var(--dm-radius-lg);
	overflow: visible;
}

.dm-hero__img {
	width: 100%;
	border-radius: var(--dm-radius-lg);
	object-fit: cover;
	aspect-ratio: 4 / 3;
	box-shadow: var(--dm-shadow);
}

.dm-hero__placeholder {
	display: grid;
	place-items: center;
	gap: 10px;
	aspect-ratio: 4 / 3;
	padding: 24px;
	border: 2px dashed var(--dm-teal);
	border-radius: var(--dm-radius-lg);
	background: rgba(255, 255, 255, .55);
	color: var(--dm-muted);
	text-align: center;
	font-size: .9rem;
}

.dm-hero__placeholder p { margin: 0; }

.dm-hero__sticker {
	position: absolute;
	top: -14px;
	right: 8px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 118px;
	height: 118px;
	padding: 12px;
	border-radius: 50%;
	background: var(--dm-yellow);
	color: var(--dm-ink);
	font-weight: 800;
	font-size: .8rem;
	line-height: 1.25;
	text-align: center;
	transform: rotate(-8deg);
	box-shadow: var(--dm-shadow);
}

.dm-hero__blob {
	position: absolute;
	border-radius: 50%;
	opacity: .5;
	z-index: 1;
}

.dm-hero__blob--1 {
	top: -70px;
	left: -60px;
	width: 220px;
	height: 220px;
	background: var(--dm-yellow-soft);
}

.dm-hero__blob--2 {
	bottom: 20px;
	right: -70px;
	width: 260px;
	height: 260px;
	background: var(--dm-sand-soft);
}

.dm-hero__paw {
	position: absolute;
	z-index: 1;
	color: var(--dm-teal);
	opacity: .22;
}

.dm-hero__paw--1 { top: 14%; right: 6%; transform: rotate(18deg); }
.dm-hero__paw--2 { bottom: 20%; left: 4%; transform: rotate(-14deg); }

/* =========================================================
   8. Categoriecirkels
   ========================================================= */

.dm-cats__heading {
	margin-bottom: 18px;
	font-size: 1.25rem;
	text-align: center;
}

.dm-cats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-cats__item {
	flex: 0 1 96px;
	min-width: 84px;
}

.dm-cats__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--dm-ink);
	text-align: center;
	font-weight: 700;
	font-size: .9rem;
}

.dm-cats__link:hover { text-decoration: none; }

.dm-cats__circle {
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: var(--dm-yellow-soft);
	overflow: hidden;
	box-shadow: 0 0 0 3px var(--dm-surface), 0 0 0 5px var(--dm-teal-soft);
	transition: transform .2s ease, box-shadow .2s ease;
}

.dm-cats__circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dm-cats__link:hover .dm-cats__circle {
	transform: translateY(-3px);
	box-shadow: 0 0 0 3px var(--dm-surface), 0 0 0 5px var(--dm-teal);
}

.dm-cats__placeholder { color: var(--dm-teal); }

.dm-cats__arrow { color: var(--dm-teal); }

/* =========================================================
   9. USP-blok
   ========================================================= */

.dm-usps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
	margin: 0;
	padding: 16px 10px;
	list-style: none;
	background: var(--dm-teal-soft);
	border-radius: var(--dm-radius);
}

.dm-usps__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 10px 6px;
	text-align: center;
}

.dm-usps__icon { color: var(--dm-teal-dark); }

.dm-usps__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dm-usps__title {
	font-weight: 800;
	font-size: .84rem;
	line-height: 1.25;
}

.dm-usps__text {
	font-size: .76rem;
	color: var(--dm-muted);
	line-height: 1.35;
}

/* =========================================================
   10. Sectiekoppen
   ========================================================= */

.dm-sectionhead {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.dm-sectionhead__title {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-size: clamp(1.15rem, 3.4vw, 1.6rem);
}

.dm-sectionhead__icon {
	display: grid;
	place-items: center;
	color: var(--dm-teal);
}

.dm-sectionhead__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex: none;
	color: var(--dm-teal-dark);
	font-weight: 700;
	font-size: .88rem;
}

/* =========================================================
   11. Productkaarten
   ========================================================= */

.woocommerce ul.products,
ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
	content: none;
}

.woocommerce ul.products li.product,
ul.products li.product {
	position: relative;
	display: flex;
	flex-direction: column;
	width: auto !important;
	margin: 0 !important;
	padding: 0;
	float: none !important;
	clear: none !important;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 162, 155, .35);
	box-shadow: var(--dm-shadow);
}

ul.products li.product > a.woocommerce-LoopProduct-link,
ul.products li.product > a.woocommerce-loop-product__link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
	text-decoration: none;
}

.dm-card__media {
	position: relative;
	background: var(--dm-cream);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.dm-card__media img,
ul.products li.product .dm-card__media img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
	padding: 8px;
	transition: transform .3s ease;
}

ul.products li.product:hover .dm-card__media img {
	transform: scale(1.04);
}

.dm-card__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 10px 12px 50px;
	flex: 1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
.dm-card__title {
	margin: 0;
	padding: 0;
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.32;
	color: var(--dm-ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dm-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dm-card__ratingcount {
	font-size: .75rem;
	color: var(--dm-muted);
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
	margin: auto 0 0;
	color: var(--dm-ink);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
}

.woocommerce ul.products li.product .price del,
ul.products li.product .price del {
	margin-right: 6px;
	color: var(--dm-muted);
	font-size: .82rem;
	font-weight: 600;
	opacity: 1;
}

.woocommerce ul.products li.product .price ins,
ul.products li.product .price ins {
	background: none;
	color: var(--dm-danger);
	text-decoration: none;
}

/* Ronde bestelknop rechtsonder */

ul.products li.product .dm-addtocart,
.woocommerce ul.products li.product a.button.dm-addtocart {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 3;
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	background: var(--dm-teal);
	color: #fff;
	box-shadow: var(--dm-shadow-sm);
}

ul.products li.product .dm-addtocart:hover {
	background: var(--dm-teal-dark);
	transform: none;
}

ul.products li.product .dm-addtocart.loading::after {
	position: static;
	margin: 0;
}

ul.products li.product .dm-addtocart.added::after {
	display: none;
}

ul.products li.product a.added_to_cart {
	position: absolute;
	right: 56px;
	bottom: 18px;
	z-index: 3;
	font-size: .76rem;
	font-weight: 700;
	color: var(--dm-teal-dark);
}

/* Labels */

.dm-badges {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	max-width: calc(100% - 16px);
}

.dm-badge {
	display: inline-block;
	padding: 4px 9px;
	border-radius: 999px;
	background: var(--dm-teal);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .01em;
	line-height: 1.4;
	white-space: nowrap;
}

.dm-badge--top {
	background: var(--dm-yellow);
	color: var(--dm-ink);
}

.dm-badge--sale { background: var(--dm-danger); }

.dm-badge--oos {
	background: #6c7a78;
	color: #fff;
}

.dm-badge--single {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
	font-size: .82rem;
	padding: 6px 12px;
}

/* Sterren */

.dm-stars {
	display: inline-flex;
	gap: 1px;
	color: #d7d2c6;
}

.dm-star.is-on { color: var(--dm-yellow); }
.dm-star svg { fill: currentColor; stroke: none; }

/* =========================================================
   12. Reviews
   ========================================================= */

.dm-section--reviews {
	padding-block: 44px;
	margin-block: 28px;
}

.dm-reviews__bg {
	background: var(--dm-teal-soft);
	padding-block: 30px;
}

.dm-reviews {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-review {
	position: relative;
	padding: 20px 18px 18px;
	background: var(--dm-surface);
	border-radius: var(--dm-radius);
	box-shadow: var(--dm-shadow-sm);
}

.dm-review__quote {
	position: absolute;
	top: 12px;
	right: 14px;
	color: var(--dm-teal-soft);
}

.dm-review__text {
	margin: 8px 0 10px;
	font-size: .95rem;
	line-height: 1.55;
}

.dm-review__text p { margin: 0; }

.dm-review__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	font-size: .82rem;
	color: var(--dm-muted);
}

.dm-review__name { font-weight: 700; color: var(--dm-ink); }

/* =========================================================
   13. Blogkaarten
   ========================================================= */

.dm-postgrid {
	display: grid;
	gap: 16px;
}

.dm-postcard {
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.dm-postcard:hover {
	transform: translateY(-3px);
	box-shadow: var(--dm-shadow);
}

.dm-postcard__link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.dm-postcard__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--dm-teal-soft);
	overflow: hidden;
}

.dm-postcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dm-postcard__placeholder {
	display: grid;
	place-items: center;
	height: 100%;
	color: var(--dm-teal);
}

.dm-postcard__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px 18px;
	flex: 1;
}

.dm-postcard__date {
	font-size: .78rem;
	color: var(--dm-muted);
}

.dm-postcard__title {
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1.3;
}

.dm-postcard__excerpt {
	font-size: .9rem;
	color: var(--dm-muted);
}

.dm-postcard__more {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: auto;
	padding-top: 8px;
	color: var(--dm-teal-dark);
	font-weight: 700;
	font-size: .88rem;
}

/* =========================================================
   14. SEO-tekst, prose en pagina's
   ========================================================= */

.dm-seotext {
	padding: 24px 20px;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
}

.dm-seotext__title { font-size: 1.3rem; }

.dm-seotext__body {
	color: var(--dm-muted);
	font-size: .95rem;
	max-width: 78ch;
}

.dm-prose {
	max-width: 74ch;
	font-size: 1.02rem;
}

.dm-prose img { border-radius: var(--dm-radius); }

.dm-prose h2 { margin-top: 1.6em; }
.dm-prose h3 { margin-top: 1.4em; }

/* Op pagina's staat de tekstkolom gecentreerd, zodat gekleurde blokken
   niet tegen de linkerrand plakken. */
.dm-single--page .dm-prose {
	margin-inline: auto;
}

/* Blokken met "brede breedte" mogen buiten de leeskolom uitlopen. */
.dm-prose > .alignwide,
.dm-prose > .alignfull {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw - 32px);
	max-width: none;
}

.dm-prose > .alignwide img,
.dm-prose > .alignfull img {
	height: auto;
}

.dm-prose blockquote {
	margin: 1.5em 0;
	padding: 14px 20px;
	border-left: 4px solid var(--dm-teal);
	background: var(--dm-teal-soft);
	border-radius: 0 var(--dm-radius-sm) var(--dm-radius-sm) 0;
}

.dm-prose table {
	width: 100%;
	border-collapse: collapse;
}

.dm-prose th,
.dm-prose td {
	padding: 10px;
	border: 1px solid var(--dm-line);
	text-align: left;
}

.dm-pagehead { margin-bottom: 22px; }
.dm-pagehead__title { margin-bottom: .25em; }
.dm-pagehead__desc { color: var(--dm-muted); }

.dm-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 14px;
	font-size: .84rem;
	color: var(--dm-muted);
}

.dm-crumbs a { color: var(--dm-muted); }
.dm-crumbs a:hover { color: var(--dm-teal-dark); }
.dm-crumbs__sep { opacity: .5; }

.dm-single__head { margin-bottom: 18px; }

.dm-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--dm-muted);
	font-size: .88rem;
}

.dm-single__media {
	margin: 0 0 24px;
}

.dm-single__media img {
	width: 100%;
	border-radius: var(--dm-radius);
}

.dm-postnav {
	display: grid;
	gap: 12px;
	margin: 32px 0;
}

.dm-postnav a {
	display: block;
	padding: 14px 18px;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	color: var(--dm-ink);
}

.dm-postnav a:hover { text-decoration: none; border-color: var(--dm-teal); }
.dm-postnav__label { display: block; font-size: .78rem; color: var(--dm-muted); }
.dm-postnav__title { font-weight: 700; }

.dm-searchresults { display: grid; gap: 12px; }

.dm-result {
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	overflow: hidden;
}

.dm-result__link {
	display: flex;
	gap: 14px;
	padding: 12px;
	color: inherit;
}

.dm-result__link:hover { text-decoration: none; }

.dm-result__media {
	flex: none;
	width: 74px;
	height: 74px;
	border-radius: var(--dm-radius-sm);
	overflow: hidden;
	background: var(--dm-cream);
}

.dm-result__media img { width: 100%; height: 100%; object-fit: cover; }
.dm-result__body { display: flex; flex-direction: column; gap: 4px; }
.dm-result__title { font-weight: 700; }
.dm-result__excerpt { font-size: .88rem; color: var(--dm-muted); }

.dm-empty {
	padding: 40px 20px;
	text-align: center;
	background: var(--dm-surface);
	border: 1px dashed var(--dm-line);
	border-radius: var(--dm-radius);
}

.dm-empty__icon { color: var(--dm-teal); display: inline-block; }

.dm-404__inner {
	max-width: 620px;
	margin-inline: auto;
	padding: 40px 20px;
	text-align: center;
}

.dm-404__paw { display: inline-block; color: var(--dm-teal); opacity: .5; }
.dm-404 .dm-search { margin: 20px 0; }

/* Paginering */

.dm-page .pagination,
.woocommerce-pagination {
	margin: 30px 0 0;
}

.nav-links,
.woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
	border: 0 !important;
}

.woocommerce-pagination ul.page-numbers li { border: 0 !important; margin: 0 !important; }

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	color: var(--dm-ink);
	font-weight: 700;
	text-decoration: none !important;
}

.page-numbers:hover,
.page-numbers.current {
	background: var(--dm-teal);
	border-color: var(--dm-teal);
	color: #fff;
}

/* =========================================================
   15. Footer
   ========================================================= */

.dm-footer { margin-top: 40px; }

.dm-footer__wave {
	position: relative;
	padding: 34px 16px 26px;
	background: var(--dm-teal);
	color: #fff;
	text-align: center;
}

.dm-footer__wave .dm-wave svg { height: 34px; }

.dm-footer__slogan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.05rem;
}

.dm-footer__main {
	padding: 30px 0 10px;
	background: var(--dm-teal);
	color: #fff;
}

.dm-footer__grid {
	display: grid;
	gap: 26px;
}

.dm-footer__title {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
}

.dm-footer__about { color: rgba(255, 255, 255, .85); font-size: .92rem; }

.dm-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-footer__col li { margin-bottom: 8px; }

.dm-footer__col a,
.dm-footer__col {
	color: rgba(255, 255, 255, .9);
	font-size: .92rem;
}

.dm-footer__col a:hover { color: #fff; }

.dm-footer__bar {
	padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
	background: var(--dm-teal-dark);
	color: rgba(255, 255, 255, .88);
	font-size: .82rem;
}

.dm-footer__barinner {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	text-align: center;
}

.dm-footer__copy { margin: 0; }
.dm-footer__note { display: block; opacity: .8; }

.dm-payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-payments__item {
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(255, 255, 255, .16);
	font-size: .72rem;
	font-weight: 700;
}

/* Mobiele balk onderaan */

.dm-mobilebar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 65;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	padding-bottom: env(safe-area-inset-bottom);
	background: var(--dm-surface);
	border-top: 1px solid var(--dm-line);
	box-shadow: 0 -2px 14px rgba(21, 33, 31, .07);
}

.dm-mobilebar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 8px 4px;
	border: 0;
	background: none;
	color: var(--dm-muted);
	font: inherit;
	font-size: .68rem;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
}

.dm-mobilebar__item:hover,
.dm-mobilebar__item.is-active {
	color: var(--dm-teal-dark);
	text-decoration: none;
}

body.dm-has-mobilebar { padding-bottom: 62px; }

.dm-totop {
	position: fixed;
	right: 14px;
	bottom: 74px;
	z-index: 64;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--dm-teal);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--dm-shadow);
}

.dm-totop:hover { background: var(--dm-teal-dark); }

/* =========================================================
   16. WooCommerce-pagina's
   ========================================================= */

.dm-shopwrap { padding-block: 20px 48px; }

.dm-shopwrap__inner { display: grid; gap: 24px; }

.dm-filtertoggle { margin-bottom: 14px; }

.dm-shopwrap__side { display: none; }
.dm-shopwrap__side.is-open { display: block; }

.dm-widget,
.dm-shopwrap__side .widget {
	margin-bottom: 20px;
	padding: 16px 18px;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
}

.dm-widget__title,
.dm-shopwrap__side .widget-title {
	margin: 0 0 10px;
	font-size: 1rem;
}

.dm-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .93rem;
}

.dm-widget li { padding: 5px 0; }

.woocommerce .woocommerce-result-count {
	margin: 0;
	color: var(--dm-muted);
	font-size: .88rem;
}

.woocommerce .woocommerce-ordering { margin: 0; }

.woocommerce .woocommerce-ordering select,
.dm select,
.woocommerce select,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce input[type="search"]:not(.dm-search__input),
.woocommerce textarea {
	padding: 10px 14px;
	border: 1.5px solid var(--dm-line);
	border-radius: var(--dm-radius-sm);
	background: var(--dm-surface);
	font: inherit;
	color: var(--dm-ink);
	max-width: 100%;
}

.woocommerce .woocommerce-ordering select:focus,
.woocommerce input:focus,
.woocommerce textarea:focus {
	border-color: var(--dm-teal);
	outline: none;
}

.woocommerce-products-header { margin-bottom: 12px; }

.woocommerce-products-header__title {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.term-description { color: var(--dm-muted); max-width: 74ch; }

/* WooCommerce zet zijn eigen pictogram absoluut linksboven in een melding.
   De linkerruimte moet groot genoeg blijven, anders loopt de tekst eroverheen. */
.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	position: relative;
	padding: 16px 20px 16px 54px;
	border: 0;
	border-left: 4px solid var(--dm-teal);
	border-radius: var(--dm-radius-sm);
	background: var(--dm-teal-soft);
	color: var(--dm-ink);
	list-style: none;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	top: 50%;
	left: 22px;
	transform: translateY(-50%);
	color: var(--dm-teal-dark);
}

.woocommerce-error {
	border-left-color: var(--dm-danger);
	background: #fdecea;
}

.woocommerce-error::before { color: var(--dm-danger); }

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button {
	margin-left: 12px;
}

/* Productpagina */

.woocommerce div.product { position: relative; }

.woocommerce div.product .product_title {
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	margin-bottom: .3em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--dm-ink);
	font-size: 1.7rem;
	font-weight: 800;
}

.woocommerce div.product p.price del { font-size: 1.1rem; color: var(--dm-muted); }
.woocommerce div.product p.price ins { background: none; color: var(--dm-danger); text-decoration: none; }

.woocommerce div.product .woocommerce-product-rating { margin-bottom: 14px; }

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
}

.woocommerce div.product form.cart .quantity input.qty {
	width: 76px;
	padding: 12px 8px;
	border: 1.5px solid var(--dm-line);
	border-radius: 999px;
	text-align: center;
	font: inherit;
}

.woocommerce div.product form.cart .button { flex: 1 1 200px; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	border: 0;
	background: var(--dm-surface);
	border-radius: 999px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 10px 18px;
	border-radius: 999px;
	border: 1px solid var(--dm-line);
	color: var(--dm-ink);
	font-weight: 700;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	background: var(--dm-teal);
	border-color: var(--dm-teal);
	color: #fff;
}

.dm-singleusp {
	display: grid;
	gap: 8px;
	width: 100%;
	margin: 18px 0 0;
	padding: 14px 16px;
	list-style: none;
	background: var(--dm-teal-soft);
	border-radius: var(--dm-radius);
	font-size: .9rem;
}

.dm-singleusp li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dm-singleusp svg { color: var(--dm-teal-dark); }

.dm-stock { font-weight: 700; }
.dm-stock--in { color: var(--dm-teal-dark); }
.dm-stock--out { color: var(--dm-danger); }

.dm-ean { display: block; }

.woocommerce div.product .product_meta {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--dm-line);
	font-size: .86rem;
	color: var(--dm-muted);
}

.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
	font-size: clamp(1.2rem, 3.4vw, 1.6rem);
	margin: 34px 0 14px;
}

/* Winkelwagen en afrekenen */

.woocommerce table.shop_table {
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	border-collapse: separate;
	overflow: hidden;
	background: var(--dm-surface);
}

.woocommerce table.shop_table th { background: var(--dm-teal-soft); }

.woocommerce .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order {
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
	padding: 18px;
}

.woocommerce #payment,
.woocommerce-checkout #payment {
	background: var(--dm-teal-soft);
	border-radius: var(--dm-radius);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	padding: 11px 14px;
	border: 1.5px solid var(--dm-line);
	border-radius: var(--dm-radius-sm);
	font: inherit;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 9px 16px;
	border: 1px solid var(--dm-line);
	border-radius: 999px;
	background: var(--dm-surface);
	color: var(--dm-ink);
	font-weight: 700;
	font-size: .9rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: var(--dm-teal);
	border-color: var(--dm-teal);
	color: #fff;
}

/* Mini-cart */

.dm-minicart .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 8px;
}

.dm-minicart .woocommerce-mini-cart__buttons a { width: 100%; }

.dm-minicart ul.cart_list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dm-minicart ul.cart_list li {
	padding: 12px 0;
	border-bottom: 1px solid var(--dm-line);
}

/* =========================================================
   17. Reacties
   ========================================================= */

.dm-comments { margin-top: 40px; }

.dm-comments__list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.dm-comments__list .comment-body {
	padding: 16px;
	margin-bottom: 12px;
	background: var(--dm-surface);
	border: 1px solid var(--dm-line);
	border-radius: var(--dm-radius);
}

.dm-comments__list .children {
	margin: 0 0 0 20px;
	padding: 0;
	list-style: none;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--dm-line);
	border-radius: var(--dm-radius-sm);
	font: inherit;
}

/* Uitklapknoppen in het mobiele menu */

.dm-offcanvas__menu .menu-item-has-children {
	position: relative;
}

.dm-submenu-toggle {
	position: absolute;
	top: 4px;
	right: 0;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: var(--dm-teal-soft);
	color: var(--dm-teal-dark);
	cursor: pointer;
	transition: transform .2s ease;
}

.dm-offcanvas__menu .menu-item-has-children.is-open > .dm-submenu-toggle {
	transform: rotate(180deg);
}

/* =========================================================
   18. Breekpunten
   ========================================================= */

@media (min-width: 480px) {

	.dm-usps { grid-template-columns: repeat(4, 1fr); }
	.dm-usps__item { padding: 12px 8px; }
}

@media (min-width: 640px) {

	.dm-container { padding-inline: 22px; }
	.dm-section { padding-block: 34px; }

	.woocommerce ul.products,
	ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

	.dm-postgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.dm-reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.dm-prose > .alignwide,
	.dm-prose > .alignfull { width: min(1196px, calc(100vw - 44px)); }

	.dm-topbar { font-size: .82rem; }
	.dm-logo { font-size: 1.15rem; }
	.dm-cats { gap: 22px 18px; }
	.dm-cats__item { flex: 0 1 120px; }
	.dm-cats__circle { width: 96px; height: 96px; }

	.dm-usps__item { flex-direction: row; align-items: center; text-align: left; }
	.dm-usps__title { font-size: .9rem; }
	.dm-usps__text { font-size: .8rem; }

	.dm-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.dm-hero { padding: 40px 0 66px; }
}

@media (min-width: 900px) {

	:root { --dm-header-h: 76px; }

	.dm-topbar__menu { display: flex; }
	.dm-topbar__inner { justify-content: space-between; text-align: left; }

	.dm-header__burger { display: none; }
	.dm-header__searchtoggle { display: none; }
	.dm-searchrow { display: none !important; }

	.dm-header__brand { flex: 0 0 auto; margin-right: 20px; }
	.dm-header__search { display: block; flex: 1 1 auto; max-width: 560px; }
	.dm-header__actions { margin-left: auto; gap: 4px; }

	.dm-navbar {
		display: block;
		border-top: 1px solid var(--dm-line);
		background: var(--dm-surface);
	}

	.dm-mobilebar { display: none; }
	body.dm-has-mobilebar { padding-bottom: 0; }
	.dm-totop { bottom: 24px; }

	.dm-hero__inner {
		grid-template-columns: 1fr 1.05fr;
		align-items: center;
		gap: 40px;
		min-height: 460px;
	}

	.dm-hero { padding: 56px 0 90px; }
	.dm-hero__img { aspect-ratio: 5 / 4; }
	.dm-hero__sticker { width: 140px; height: 140px; font-size: .92rem; top: -22px; right: -10px; }

	.dm-wave svg { height: 70px; }

	.woocommerce ul.products,
	ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }

	ul.products.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	ul.products.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	ul.products.columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	ul.products.columns-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

	.dm-productgrid--cols3 ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.dm-productgrid--cols4 ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.dm-productgrid--cols5 ul.products { grid-template-columns: repeat(5, minmax(0, 1fr)); }

	.dm-postgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.dm-reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.dm-footer__grid { grid-template-columns: repeat(4, 1fr); }

	.dm-footer__barinner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}

	.dm-layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 34px;
	}

	.dm-shopwrap.has-sidebar .dm-shopwrap__inner {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 34px;
	}

	.dm-shopwrap.has-sidebar .dm-shopwrap__main { order: 2; }
	.dm-shopwrap__side { display: block; order: 1; }
	.dm-filtertoggle { display: none; }

	.dm-seotext { padding: 34px 38px; }

	.woocommerce div.product .dm-singleusp { grid-template-columns: repeat(2, 1fr); }

	.dm-card__body { padding: 12px 14px 54px; }
	.dm-card__title { font-size: .98rem; }
}

@media (min-width: 1100px) {

	.dm-cats__item { flex: 0 1 140px; }
	.dm-cats__circle { width: 112px; height: 112px; }
	.dm-cats__link { font-size: 1rem; }
}

/* =========================================================
   19. Toegankelijkheid en afdrukken
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

@media print {

	.dm-header,
	.dm-footer,
	.dm-mobilebar,
	.dm-totop,
	.dm-offcanvas,
	.dm-minicart,
	.dm-overlay { display: none !important; }

	body { background: #fff; }
}
