
/* =============================================================
   FarmParts — klassiek thema aanvullende stijlen
   ============================================================= */

/* ─── CSS RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
	margin: 0 !important;
	padding: 0 !important;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	color: #1a1a1a;
	background: #ffffff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: #00A668; text-decoration: none; transition: color 0.15s; }
a:hover { color: #007a4d; }
ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── ALGEMEEN ─── */
:root {
	--fp-primary:     #00A668;
	--fp-primary-dk:  #007a4d;
	--fp-secondary:   #004ea1;
	--fp-neutral-900: #1a1a1a;
	--fp-neutral-100: #f3f4f6;
	--fp-white:       #ffffff;
	--fp-header-h:    120px;
}

.fp-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ─── TOPBAR ─── */
.fp-topbar {
	background: #111;
	padding: 8px 0;
}
.fp-topbar .fp-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.fp-topbar__left, .fp-topbar__right {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.75rem;
	color: #9ca3af;
}
.fp-topbar__link {
	color: #9ca3af;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.15s;
}
.fp-topbar__link:hover { color: var(--fp-primary); }

/* ─── NAVBAR ─── */
.fp-navbar {
	background: #1a1a1a;
	padding: 12px 0;
}
.fp-navbar__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

/* Logo */
.fp-logo { display: flex; align-items: center; flex-shrink: 0; }
.fp-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.fp-logo__text { color: #fff; font-size: 1.5rem; font-weight: 800; text-decoration: none; }

/* Zoekbalk */
.fp-search-wrap { flex: 1; max-width: 600px; }
.fp-search-form { display: flex; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); transition: border-color 0.2s; }
.fp-search-form:focus-within { border-color: var(--fp-primary); background: rgba(255,255,255,0.12); }
.fp-search-input { flex: 1; background: transparent; border: none; color: #fff; padding: 10px 14px; font-size: 0.875rem; outline: none; min-width: 0; }
.fp-search-input::placeholder { color: rgba(255,255,255,0.4); }
.fp-search-form button { background: var(--fp-primary); border: none; color: #fff; padding: 0 16px; cursor: pointer; display: flex; align-items: center; transition: background 0.15s; }
.fp-search-form button:hover { background: var(--fp-primary-dk); }

/* Header acties */
.fp-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.fp-header-action { display: flex; flex-direction: column; align-items: center; gap: 3px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 6px 10px; border-radius: 6px; transition: all 0.15s; position: relative; }
.fp-header-action:hover { background: rgba(255,255,255,0.08); color: #fff; }
.fp-cart-count { position: absolute; top: 0; right: 0; background: var(--fp-primary); color: #fff; font-size: 0.6rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Hamburger */
.fp-menu-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; padding: 8px 10px; cursor: pointer; }
.fp-menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }

/* ─── CATEGORIE NAV ─── */
.fp-cat-nav { background: var(--fp-primary); }
.fp-cat-nav .fp-container { padding: 0 1.5rem; }
.fp-main-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; }
.fp-main-nav ul li a { display: block; padding: 13px 18px; color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; transition: background 0.15s, color 0.15s; }
.fp-main-nav ul li a:hover,
.fp-main-nav ul li.current-menu-item > a { background: rgba(0,0,0,0.15); color: #fff; }
/* Dropdown */
.fp-main-nav ul li { position: relative; }
.fp-main-nav ul li ul { display: none; position: absolute; top: 100%; left: 0; background: #1a1a1a; border-top: 3px solid var(--fp-primary); border-radius: 0 0 8px 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); min-width: 200px; z-index: 200; padding: 8px 0; }
.fp-main-nav ul li:hover > ul { display: block; }
.fp-main-nav ul li ul li a { padding: 10px 20px; font-size: 0.82rem; }

/* ─── HERO ─── */
.fp-hero { position: relative; min-height: 520px; display: flex; align-items: center; background-size: cover; background-position: center; background-color: #1a1a1a; }
.fp-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.fp-hero__content { position: relative; z-index: 1; padding: 5rem 0; max-width: 760px; }
.fp-hero__label { color: var(--fp-primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin: 0 0 1rem; }
.fp-hero__title { color: #fff; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; margin: 0 0 1.25rem; font-weight: 700; }
.fp-hero__desc { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin: 0 0 2rem; line-height: 1.6; }
.fp-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.fp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.fp-btn--primary { background: var(--fp-primary); color: #fff; box-shadow: 0 2px 8px rgba(0,166,104,0.3); }
.fp-btn--primary:hover { background: var(--fp-primary-dk); box-shadow: 0 4px 16px rgba(0,166,104,0.4); transform: translateY(-1px); color: #fff; }
.fp-btn--secondary { background: var(--fp-secondary); color: #fff; }
.fp-btn--secondary:hover { background: #003880; transform: translateY(-1px); color: #fff; }
.fp-btn--outline { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: #fff; }
.fp-btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.fp-btn--white { background: #fff; color: var(--fp-secondary); }
.fp-btn--white:hover { background: #f0f0f0; color: var(--fp-secondary); }
.fp-btn--sm { padding: 8px 16px; font-size: 0.78rem; }

/* ─── USP BALK ─── */
.fp-usps { background: var(--fp-secondary); padding: 1.25rem 0; }
.fp-usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fp-usp { display: flex; align-items: center; gap: 12px; padding: 0.75rem 1rem; border-right: 1px solid rgba(255,255,255,0.15); }
.fp-usp:last-child { border-right: none; }
.fp-usp__icon { width: 32px; height: 32px; flex-shrink: 0; color: rgba(255,255,255,0.85); }
.fp-usp strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 700; }
.fp-usp span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* ─── SECTIES ─── */
.fp-categories, .fp-blog { background: var(--fp-neutral-100); }
.fp-categories { padding: 4rem 0; }
.fp-featured-products { padding: 4rem 0; }
.fp-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.fp-section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0; font-weight: 700; }
.fp-section-link { color: var(--fp-primary); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; }
.fp-section-link:hover { color: var(--fp-primary-dk); }

/* ─── CATEGORIE GRID ─── */
.fp-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.fp-cat-card { display: block; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e5e7eb; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.fp-cat-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.fp-cat-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--fp-neutral-100); }
.fp-cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.fp-cat-card:hover .fp-cat-card__img img { transform: scale(1.05); }
.fp-cat-card__body { padding: 1rem; }
.fp-cat-card__name { font-size: 0.95rem; font-weight: 700; color: var(--fp-neutral-900); margin: 0 0 4px; }
.fp-cat-card__count { font-size: 0.78rem; color: #9ca3af; }

/* ─── PRODUCTGRID ─── */
.fp-product-grid { display: grid; gap: 1.25rem; }
.fp-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fp-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fp-product-card { position: relative; background: #fff; border-radius: 8px; border: 1px solid #e5e7eb; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.fp-product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
.fp-product-card__img-wrap { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--fp-neutral-100); }
.fp-product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.fp-product-card:hover .fp-product-card__img { transform: scale(1.04); }
.fp-product-card__body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.fp-product-card__sku { font-size: 0.68rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 4px; }
.fp-product-card__title { font-size: 0.9rem; font-weight: 600; margin: 0 0 8px; flex: 1; }
.fp-product-card__title a { color: var(--fp-neutral-900); text-decoration: none; }
.fp-product-card__title a:hover { color: var(--fp-primary); }
.fp-product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.fp-product-card__price .woocommerce-Price-amount { color: var(--fp-primary); font-weight: 700; font-size: 1.1rem; }
.fp-product-card__price del .woocommerce-Price-amount { color: #9ca3af; font-size: 0.85rem; font-weight: 400; }

/* ─── BADGES ─── */
.fp-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.fp-badge--sale { background: #ef4444; color: #fff; position: absolute; top: 10px; left: 10px; z-index: 2; border-radius: 4px; }
.fp-badge--cat { background: rgba(0,78,161,0.08); color: var(--fp-secondary); text-decoration: none; }
.fp-badge--stock { background: rgba(0,166,104,0.1); color: var(--fp-primary); }
.fp-badge--outofstock { background: rgba(239,68,68,0.08); color: #ef4444; }

/* ─── OVER ONS BANNER ─── */
.fp-about-banner { background: linear-gradient(135deg, var(--fp-secondary) 0%, var(--fp-primary) 100%); padding: 5rem 0; }
.fp-about-banner__inner { display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: center; }
.fp-about-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.5rem); margin: 0 0 1rem; }
.fp-about-banner p { color: rgba(255,255,255,0.85); margin: 0 0 1.5rem; }
.fp-about-banner__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fp-stat { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 1.5rem; }
.fp-stat strong { display: block; color: #fff; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.fp-stat span { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-transform: uppercase; }

/* ─── PAGINA TEMPLATES ─── */
.fp-page-wrap { min-height: 60vh; }
.fp-page-breadcrumb { background: var(--fp-neutral-100); padding: 0.75rem 0; font-size: 0.8rem; }
.fp-page-content { padding: 3rem 0 5rem; }
.fp-page-article__header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid #e5e7eb; }
.fp-page-article__title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0; }
.fp-page-article__content { max-width: 820px; }
.fp-page-article__content p { line-height: 1.7; margin-bottom: 1.25rem; }
.fp-page-article__content h2, .fp-page-article__content h3 { margin-top: 2rem; }

/* ─── SHOP LAYOUT ─── */
.fp-shop-header { background: var(--fp-neutral-100); padding: 1.25rem 0; border-bottom: 1px solid #e5e7eb; }
.fp-shop-header__title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0.5rem 0 0; }
.fp-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.fp-shop-sidebar { position: sticky; top: calc(var(--fp-header-h) + 16px); }
.fp-filter-block { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.25rem; margin-bottom: 1rem; }
.fp-filter__title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fp-neutral-900); margin: 0 0 1rem; padding-bottom: 8px; border-bottom: 1px solid #f3f4f6; }
.fp-filter-list { list-style: none; margin: 0; padding: 0; }
.fp-filter-list__link { display: flex; justify-content: space-between; align-items: center; color: #6b7280; font-size: 0.875rem; padding: 5px 0; text-decoration: none; transition: color 0.15s; }
.fp-filter-list__link:hover, .fp-filter-list__link.is-active { color: var(--fp-primary); font-weight: 600; }
.fp-filter-list__count { background: var(--fp-neutral-100); border-radius: 20px; padding: 1px 7px; font-size: 0.7rem; color: #9ca3af; }
.fp-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #e5e7eb; }

/* WooCommerce product loop grid */
.fp-shop-main ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.fp-shop-main ul.products li.product { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.fp-shop-main ul.products li.product:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-3px); }
.fp-shop-main ul.products li.product a img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.fp-shop-main ul.products li.product .woocommerce-loop-product__title { padding: 0.75rem 1rem 0; font-size: 0.9rem; font-weight: 600; }
.fp-shop-main ul.products li.product .price { padding: 0 1rem; color: var(--fp-primary); font-weight: 700; }
.fp-shop-main ul.products li.product .button { margin: 0.75rem 1rem 1rem; display: block; text-align: center; background: var(--fp-primary); color: #fff; border-radius: 6px; padding: 8px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; transition: background 0.15s; }
.fp-shop-main ul.products li.product .button:hover { background: var(--fp-primary-dk); }

/* WooCommerce paginering */
.woocommerce-pagination ul { display: flex; list-style: none; margin: 2rem 0 0; padding: 0; gap: 6px; justify-content: center; flex-wrap: wrap; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px; border: 1px solid #e5e7eb; background: #fff; color: #6b7280; font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: all 0.15s; }
.woocommerce-pagination ul li a:hover { background: var(--fp-primary); border-color: var(--fp-primary); color: #fff; }
.woocommerce-pagination ul li span.current { background: var(--fp-primary); border-color: var(--fp-primary); color: #fff; font-weight: 700; }

/* ─── SINGLE PRODUCT ─── */
.fp-product-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.fp-product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1rem; }
.fp-product-info__title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin: 0 0 0.5rem; }
.fp-product-info .price { font-size: 1.75rem; font-weight: 800; color: var(--fp-primary); margin: 1rem 0; display: block; }
.fp-product-info .price del { font-size: 1.1rem; font-weight: 400; color: #9ca3af; }
.fp-trust-signals { display: flex; flex-direction: column; gap: 8px; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #e5e7eb; }
.fp-trust-signal { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #6b7280; }

/* WooCommerce single product knoppen */
.single_add_to_cart_button { background: var(--fp-primary) !important; color: #fff !important; border: none !important; border-radius: 6px !important; padding: 14px 32px !important; font-size: 0.9rem !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; width: 100%; transition: background 0.15s !important; }
.single_add_to_cart_button:hover { background: var(--fp-primary-dk) !important; }

/* ─── FOOTER ─── */
.fp-footer { background: #1a1a1a; }
.fp-footer__main { padding: 4rem 0; }
.fp-footer__grid { display: grid; grid-template-columns: 30% 1fr 1fr 1fr; gap: 2.5rem; }
.fp-footer__title { color: #fff; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 1.25rem; }
.fp-footer__desc { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; margin: 1rem 0 1.5rem; }
.fp-footer__logo img { filter: brightness(0) invert(1); max-height: 42px; }
.fp-footer__logo-text { color: #fff; font-size: 1.5rem; font-weight: 800; }
.fp-footer-list { list-style: none; margin: 0; padding: 0; }
.fp-footer-list li { margin-bottom: 10px; }
.fp-footer-list a { color: #9ca3af; font-size: 0.875rem; text-decoration: none; transition: color 0.15s; }
.fp-footer-list a:hover { color: var(--fp-primary); }
.fp-footer-contact li { display: flex; align-items: center; gap: 8px; color: #9ca3af; font-size: 0.875rem; margin-bottom: 10px; }
.fp-footer-contact a { color: #9ca3af; text-decoration: none; transition: color 0.15s; }
.fp-footer-contact a:hover { color: var(--fp-primary); }
.fp-social { display: flex; gap: 8px; }
.fp-social__link { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; transition: background 0.15s; }
.fp-social__link:hover { background: var(--fp-primary); color: #fff; }
.fp-footer__payment { background: rgba(0,0,0,0.2); padding: 1rem 0; }
.fp-footer__payment .fp-container { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.fp-footer__payment-label { color: #6b7280; font-size: 0.78rem; }
.fp-payment-icons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fp-payment-icon svg, .fp-payment-icon img { height: 28px; width: auto; border-radius: 4px; }
.fp-footer__bottom { background: rgba(0,0,0,0.3); padding: 1rem 0; }
.fp-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; color: #6b7280; }
.fp-footer__legal { display: flex; gap: 1rem; }
.fp-footer__legal a { color: #6b7280; text-decoration: none; transition: color 0.15s; }
.fp-footer__legal a:hover { color: var(--fp-primary); }

/* ─── BREADCRUMB ─── */
.fp-breadcrumb { font-size: 0.8rem; }
.fp-breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.fp-breadcrumb li { display: flex; align-items: center; gap: 4px; color: #9ca3af; }
.fp-breadcrumb li:last-child { color: var(--fp-neutral-900); font-weight: 600; }
.fp-breadcrumb a { color: #6b7280; text-decoration: none; }
.fp-breadcrumb a:hover { color: var(--fp-primary); }
.woocommerce-breadcrumb { font-size: 0.8rem; color: #9ca3af; }
.woocommerce-breadcrumb a { color: #6b7280; text-decoration: none; }
.woocommerce-breadcrumb a:hover { color: var(--fp-primary); }

/* ─── RESPONSIEF ─── */
@media (max-width: 1024px) {
	.fp-usps__grid { grid-template-columns: repeat(2, 1fr); }
	.fp-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.fp-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.fp-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.fp-about-banner__inner { grid-template-columns: 1fr; }
	.fp-shop-layout { grid-template-columns: 1fr; }
	.fp-shop-sidebar { position: static; }
	.fp-shop-main ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	:root { --fp-header-h: 60px; }
	.fp-topbar { display: none; }
	.fp-navbar__inner { flex-wrap: wrap; gap: 8px; }
	.fp-search-wrap { order: 3; flex-basis: 100%; }
	.fp-menu-toggle { display: flex; }
	.fp-cat-nav .fp-main-nav { display: none; }
	.fp-cat-nav .fp-main-nav.is-open { display: block; }
	.fp-main-nav ul { flex-direction: column; }
	.fp-main-nav ul li ul { position: static; box-shadow: none; border: none; background: rgba(0,0,0,0.1); }
	.fp-hero { min-height: 400px; }
	.fp-hero__content { padding: 3rem 0; }
	.fp-usps__grid { grid-template-columns: 1fr 1fr; }
	.fp-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.fp-product-grid--4, .fp-product-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.fp-footer__grid { grid-template-columns: 1fr; }
	.fp-product-detail__inner { grid-template-columns: 1fr; }
	.fp-about-banner__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
	.fp-cat-grid { grid-template-columns: 1fr 1fr; }
	.fp-product-grid--4, .fp-product-grid--3 { grid-template-columns: 1fr 1fr; }
	.fp-shop-main ul.products { grid-template-columns: 1fr 1fr; }
	.fp-usps__grid { grid-template-columns: 1fr; }
	.fp-usp { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 1rem; }
	.fp-footer__bottom-inner { flex-direction: column; text-align: center; }
	.fp-footer__legal { justify-content: center; }
}

/* ─── TOEGANKELIJKHEID ─── */
:focus-visible { outline: 3px solid var(--fp-primary); outline-offset: 3px; border-radius: 3px; }
.skip-link { position: absolute; top: -9999px; left: 0; padding: 12px 24px; background: var(--fp-primary); color: #fff; font-weight: 700; z-index: 9999; border-radius: 0 0 6px 0; }
.skip-link:focus { top: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
