/* PrittyWoman — header & footer. Header = nieuw Figma-ontwerp; footer = ongewijzigd. */

/* ============================ HEADER ============================ */

/* Sticky header die meescrollt en bij scrollen het logo + padding verkleint.
   overflow-anchor:none voorkomt de trillende scroll-correctie bij de drempel. */
html { overflow-anchor: none; }
.sellabees-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
}
.sellabees-header__inner,
.sellabees-logo img { transition: padding .25s ease, height .25s ease; }
/* USP-balk blijft staan bij scrollen; alleen het logo + padding worden kleiner. */
@media (min-width: 901px) {
	body.sellabees-scrolled .sellabees-header__inner { padding-top: 8px; padding-bottom: 8px; }
	body.sellabees-scrolled .sellabees-logo img { height: 64px; }
}

/* --- Rij 1: USP-balk (wit, dunne lijn onder) --- */
.sellabees-usp-bar {
	background: #fff;
	border-bottom: 1px solid #e6e6e6;
}
.sellabees-usp-bar__inner {
	max-width: 1556px;
	margin-inline: auto;
	padding: 8px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;             /* USP's links, Google-reviews rechts */
	gap: 24px;
}
.sellabees-usp-bar__usps {
	display: flex;
	align-items: center;
	gap: 46px;                                  /* 3 USP's naast elkaar */
}
.sellabees-usp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;                                /* Figma = zwart */
	font-family: var(--pw-font-heading);        /* Work Sans SemiBold */
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}
.sellabees-usp__heart { flex: 0 0 auto; }              /* rood hartje (Figma #D2544F) */
.sellabees-usp-bar__reviews { flex: 0 0 auto; display: flex; align-items: center; }
/* Eigen Google-reviews-badge (lokale assets) */
.sellabees-greviews { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: #121939; font-family: var(--pw-font-heading); font-size: 14px; line-height: 20px; }
.sellabees-greviews:hover { text-decoration: none; }
.sellabees-greviews__label { font-weight: 600; color: #121939; white-space: nowrap; }
.sellabees-greviews__score,
.sellabees-greviews__count { font-weight: 600; color: #121939; white-space: nowrap; }
.sellabees-greviews__stars { display: inline-flex; align-items: center; gap: 1px; }
.sellabees-greviews__star { width: 16.8px; height: 16.8px; display: block; }
.sellabees-greviews__logo { display: inline-flex; align-items: center; }
.sellabees-greviews__logo img { height: 22px; width: auto; display: block; }

/* --- Rij 2: hoofdrij (zoek links · logo midden · acties rechts) --- */
.sellabees-header__main { background: #fff; }
.sellabees-header__inner {
	max-width: 1556px;
	margin-inline: auto;
	padding: 16px 24px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 40px;
}
.sellabees-header__search   { order: 1; width: 100%; max-width: 544px; }
.sellabees-header__brand    { order: 2; text-align: center; }
.sellabees-header__actions  { order: 3; }
.sellabees-logo { display: inline-block; line-height: 0; }
.sellabees-logo img { height: 104px; width: auto; }    /* Figma logo ≈ 130×104 */

/* Zoekbalk: breed, vergrootglas rechts-binnen (geen tekstknop) */
.sellabees-search-form {
	display: flex;
	align-items: center;
	height: 50px;
	border: 1px solid #868686;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
}
.sellabees-search-form__input {
	flex: 1 1 auto;
	border: 0;
	outline: 0;
	padding: 0 18px;
	font-family: var(--pw-font-heading);
	font-size: 14px;
	color: #444;
	background: transparent;
	min-width: 0;
}
.sellabees-search-form__input::placeholder { color: #868686; opacity: 1; }
.sellabees-search-form__btn {
	border: 0;
	background: transparent;
	padding: 0 16px;
	color: #444;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}
.sellabees-search-form__btn:hover { color: var(--pw-gold); }

/* Acties (Verlanglijstje · Log in · Winkelwagen): icoon boven label */
.sellabees-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 34px;
}
.sellabees-action {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	text-decoration: none;
	color: var(--pw-text);
}
.sellabees-action__svg { position: relative; line-height: 0; display: inline-flex; color: var(--pw-text); }
.sellabees-action__label {
	font-family: var(--pw-font-heading);
	font-size: 10px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: #000;
	white-space: nowrap;
}
.sellabees-action:hover .sellabees-action__label,
.sellabees-action:hover .sellabees-action__svg { color: var(--pw-gold); }
.sellabees-cart-count,
.sellabees-action__svg .sellabees-cart-count { position: absolute; top: -7px; right: -10px; }

/* Mobiel-only knoppen op desktop verbergen */
.sellabees-iconbtn { display: none; background: transparent; border: 0; padding: 4px; cursor: pointer; color: var(--pw-text); line-height: 0; }

/* --- Rij 3: navbalk (crème, gecentreerd menu) --- */
.sellabees-navbar { background: var(--pw-cream); }
/* Alleen zichtbaar in het mobiele menu-overlay (≤900px) */
.sellabees-mobilemenu__head, .sellabees-mobilemenu__actions { display: none; }
.sellabees-navbar__inner {
	max-width: 1556px;
	margin-inline: auto;
	padding: 0 24px;
	display: flex;
	justify-content: center;
	position: relative;
}
.sellabees-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	gap: 0;
}
.sellabees-menu li { position: relative; }
.sellabees-menu > li > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 11px 18px;
	font-family: var(--pw-font-heading);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: normal;
	color: #000;
	text-decoration: none;
}
.sellabees-menu > li > a:hover { color: var(--pw-gold); }

/* Dropdown-caret op items met submenu */
.sellabees-menu .menu-item-has-children > a::after {
	content: "";
	width: 7px; height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	display: inline-block;
}

/* Eerste item "NEW IN" = goud ticket met witte stippel-rand (inset, zoals Figma) */
.sellabees-menu > li:first-child > a {
	position: relative;
	background: var(--pw-gold);
	color: #000;
	border-radius: 2px;
	margin: 6px 8px;
	padding: 7px 16px;
}
.sellabees-menu > li:first-child > a::before {
	content: "";
	position: absolute;
	inset: 3px;
	border: 1px dashed #fff;
	border-radius: 2px;
	pointer-events: none;
}
.sellabees-menu > li:first-child > a:hover { color: #000; filter: brightness(.96); }

/* Submenu (dropdown) — 2 kolommen, 494px breed */
.sellabees-menu .sub-menu {
	list-style: none;
	margin: 0; padding: 10px 0;
	position: absolute;
	top: 100%; left: 0;
	min-width: 0;
	width: 494px;
	column-count: 2;
	column-gap: 0;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,.12);
	border-radius: 0 0 6px 6px;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.sellabees-menu li:hover > .sub-menu,
.sellabees-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sellabees-menu .sub-menu li { break-inside: avoid; }
.sellabees-menu .sub-menu a {
	display: block;
	padding: 9px 22px;
	font-family: var(--pw-font-body);
	font-size: 14px;
	color: var(--pw-text);
	text-decoration: none;
	white-space: nowrap;
}
.sellabees-menu .sub-menu a:hover { background: var(--pw-cream); color: #000; }

/* ============================ FOOTER ============================ */
.sellabees-footer__main { background: var(--pw-footer-bg); color: #fff; }
.sellabees-footer__inner { max-width: var(--pw-container); margin-inline: auto; padding-inline: 24px; }

.sellabees-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));  /* live = 4 gelijke kolommen (minmax: niet meerekken met inhoud) */
	gap: 10px;
	padding-top: 64px;
	padding-bottom: 40px;
}
.sellabees-footer__title {
	color: #fff;
	font-family: var(--pw-font-heading);
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 18px;
}
.sellabees-footer__address { margin: 0 0 14px; color: #d4d4d4; line-height: 1.7; font-size: 15px; }
.sellabees-footer__line { margin: 0 0 6px; }
.sellabees-footer a,
.sellabees-footer__links a,
.sellabees-footer__address { color: #d4d4d4; }   /* live: footer-tekst is licht­grijs, niet goud (alleen koppen wit) */
.sellabees-footer__main a { color: #d4d4d4; text-decoration: none; }
.sellabees-footer__main a:hover { color: #fff; }

.sellabees-footer__links { list-style: none; margin: 0; padding: 0; }
.sellabees-footer__links li { margin: 0 0 10px; }
.sellabees-footer__links a { font-size: 15px; }

.sellabees-footer__socials a { display: inline-flex; align-items: center; gap: 10px; }
.sellabees-footer__socials svg { flex: 0 0 auto; }

.sellabees-footer__col--news .sellabees-footer__title { line-height: 1.25; }
.sellabees-footer__newstext { color: #d4d4d4; font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
.sellabees-newsletter__row { display: flex; gap: 16px; margin-bottom: 14px; }
.sellabees-newsletter input {
	flex: 1 1 0;
	min-width: 0;
	border: 0;
	border-radius: 4px;
	padding: 14px 16px;
	font-family: var(--pw-font-body);
	font-size: 15px;
	background: #fff;
	color: var(--pw-text);
}
.sellabees-newsletter__btn {
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: var(--pw-text);
	font-family: var(--pw-font-heading);
	font-weight: 600;
	letter-spacing: .03em;
	padding: 15px 28px;
	cursor: pointer;
	width: 100%;
}
.sellabees-newsletter__btn:hover { background: var(--pw-cream); }

/* Nieuwsbrief-aanmelding: statusmelding onder het formulier (footer, popup én promo). */
.sellabees-news-msg { margin-top: 8px; font-size: 13px; line-height: 1.45; }
.sellabees-news-msg:empty { margin: 0; }
.sellabees-news-msg.is-ok { color: #2e7d32; }
.sellabees-news-msg.is-error { color: #c0392b; }
/* Footer is donker (#414141): lichte varianten voor leesbaarheid. */
.sellabees-footer .sellabees-news-msg.is-ok { color: #a6e0a6; }
.sellabees-footer .sellabees-news-msg.is-error { color: #ffb3ab; }

/* Nieuwsbrief-kortingscode: prominent, kopieerbaar blok onder de melding. */
.sellabees-news-coupon { margin-top: 10px; }
.sellabees-news-coupon__code {
	display: inline-block;
	padding: 8px 16px;
	border: 1px dashed var(--pw-gold);
	border-radius: 6px;
	background: #fff;
	color: var(--pw-text);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1.5px;
	user-select: all;
}
.sellabees-footer .sellabees-news-coupon__code { background: rgba(255,255,255,.08); color: #fff; }

/* Onderbalk (juridisch) — staat nu in de crème betaalbalk, naast het logo */
.sellabees-footer__copyright { margin: 0 0 4px; font-size: 14px; line-height: 1.5; }
.sellabees-footer__legallinks { margin: 0; font-size: 14px; line-height: 1.5; }

/* Crème betaalbalk */
.sellabees-footer__pay { background: var(--pw-cream); }
.sellabees-footer__pay-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 18px;
	flex-wrap: wrap;
}
.sellabees-footer__pay-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sellabees-footer__paylogo img { height: 56px; width: auto; }
/* Juridische tekst donker op de crème balk (was lichtgrijs voor de donkere footer) */
.sellabees-footer__pay .sellabees-footer__copyright { color: #414141; }
.sellabees-footer__pay .sellabees-footer__copyright a,
.sellabees-footer__pay .sellabees-footer__legallinks a { color: #414141; text-decoration: none; }
.sellabees-footer__pay .sellabees-footer__copyright a:hover,
.sellabees-footer__pay .sellabees-footer__legallinks a:hover { color: var(--pw-gold); }
.sellabees-pay-methods { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sellabees-pay-methods img { height: 24px; width: auto; }

.sellabees-content { min-height: 30vh; }
.sellabees-page, .sellabees-archive { padding-block: 40px; }
.sellabees-home__intro { padding-block: 48px; text-align: center; }
.sellabees-home__products { padding-bottom: 64px; }

/* USP-slider (mobiel): elke USP ~3s zichtbaar, zacht omhoog faden */
@keyframes pwUspSlide {
	0%       { opacity: 0; transform: translateY(7px); }
	4%, 29%  { opacity: 1; transform: translateY(0); }
	33%, 100%{ opacity: 0; transform: translateY(-7px); }
}

/* ============================ MOBIEL ============================ */
@media (max-width: 900px) {
	/* USP-balk = crème slider die door de USP's roteert */
	.sellabees-usp-bar { background: var(--pw-cream); border-bottom: 0; }
	.sellabees-usp-bar__inner { display: block; max-width: none; padding: 9px 16px; }
	.sellabees-usp-bar__usps { display: block; position: relative; height: 44px; }
	.sellabees-usp {
		position: absolute; inset: 0;
		display: inline-flex; align-items: center; justify-content: center;
		font-size: 13px; text-align: center;
		opacity: 0;
		animation: pwUspSlide 9s infinite;
	}
	.sellabees-usp:not(:first-child) { display: inline-flex; }   /* alle USP's tonen (slider) */
	.sellabees-usp:nth-child(2) { animation-delay: 3s; }
	.sellabees-usp:nth-child(3) { animation-delay: 6s; }
	.sellabees-usp-bar__reviews { display: none; }               /* geen Google-reviews in mobiele topbalk */

	/* Compacte header: klein logo links, iconen rechts */
	.sellabees-header__inner {
		display: flex; align-items: center; justify-content: space-between;
		gap: 12px; padding: 12px 16px; max-width: none;
	}
	.sellabees-header__brand { order: 1; text-align: left; }
	.sellabees-logo img { height: 50px; }
	.sellabees-header__actions { order: 2; gap: 16px; align-items: center; }

	/* Iconen-only (labels weg), rij-layout */
	.sellabees-action { flex-direction: row; gap: 0; }
	.sellabees-action__label { display: none; }
	.sellabees-action__svg { display: inline-flex; align-items: center; line-height: 0; position: relative; color: var(--pw-text); }
	.sellabees-iconbtn { display: inline-flex; align-items: center; justify-content: center; }
	.sellabees-action__svg .sellabees-cart-count,
	.sellabees-action__svg .sellabees-wish-count { position: absolute; top: -9px; right: -9px; }
	/* Mobiel = verlanglijst · winkelwagen · zoeken · hamburger (géén account-icoon) */
	.sellabees-action--account { display: none; }
	.sellabees-header__actions .sellabees-action--wish { order: 1; }
	.sellabees-header__actions .sellabees-action--cart { order: 2; }
	.sellabees-header__actions .sellabees-search-toggle { order: 3; }
	.sellabees-header__actions .sellabees-menu-toggle { order: 4; }

	/* Zoeken: verborgen, klapt uit onder de balk (zoek-icoon) */
	.sellabees-header__search { order: 3; width: 100%; flex-basis: 100%; max-width: none; display: none; padding: 12px 16px 4px; }
	.sellabees-header.search-open .sellabees-header__inner { flex-wrap: wrap; }
	.sellabees-header.search-open .sellabees-header__search { display: block; }

	/* Crème navbalk weg; menu = inschuivend full-screen overlay-paneel via de hamburger */
	.sellabees-navbar { background: transparent; }
	.sellabees-navbar__inner {
		position: fixed; inset: 0;
		display: flex; flex-direction: column;
		max-width: none; margin: 0; padding: 0;
		background: #fff; z-index: 1100;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform .28s ease, visibility 0s linear .28s;
		overscroll-behavior: contain;
	}
	body.sellabees-nav-open { overflow: hidden; }
	body.sellabees-nav-open .sellabees-navbar__inner {
		transform: none; visibility: visible;
		transition: transform .28s ease, visibility 0s;
		box-shadow: -8px 0 30px rgba(0,0,0,.12);
	}
	/* Zwevende WhatsApp-knop (plugin, #wa) verbergen zolang het menu-overlay open is */
	body.sellabees-nav-open #wa { display: none !important; }

	/* Overlay-kop: logo links · X-sluitknop rechts */
	.sellabees-mobilemenu__head {
		display: flex; align-items: center; justify-content: space-between;
		flex: 0 0 auto; padding: 12px 16px; border-bottom: 1px solid var(--pw-line);
	}
	.sellabees-mobilemenu__logo { line-height: 0; }
	.sellabees-mobilemenu__logo img { height: 42px; width: auto; display: block; }
	.sellabees-mobilemenu__close { background: none; border: 0; padding: 6px; margin: -6px; cursor: pointer; color: var(--pw-text); line-height: 0; }

	/* Menu = scrollbaar middendeel */
	.sellabees-menu {
		display: flex; flex-direction: column; gap: 0;
		flex: 1 1 auto; overflow-y: auto; -webkit-overflow-scrolling: touch;
	}
	.sellabees-menu > li > a {
		padding: 16px 20px; border-bottom: 1px solid var(--pw-line);
		font-size: 15px; justify-content: flex-start;
	}
	/* "NIEUW" (1e item) valt op als gouden balk bovenaan het mobiele menu. */
	.sellabees-menu > li:first-child > a { background: var(--pw-gold); color: #fff; border: 0; border-bottom: 1px solid var(--pw-line); border-radius: 0; margin: 0; padding: 16px 20px; font-weight: 700; }
	.sellabees-menu > li:first-child > a::before { content: none; }

	/* Submenu = accordion; pijl draait bij openklappen */
	.sellabees-menu .menu-item-has-children > a::after { margin-left: auto; transition: transform .2s ease; }
	.sellabees-menu li.is-expanded > a::after { transform: translateY(2px) rotate(-135deg); }
	.sellabees-menu .sub-menu { display: none; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: var(--pw-cream); padding: 0; width: auto; column-count: 1; }
	.sellabees-menu li.is-expanded > .sub-menu { display: block; }
	.sellabees-menu .sub-menu a { padding: 13px 20px 13px 36px; border-bottom: 1px solid rgba(0,0,0,.06); font-size: 14px; }

	/* Snelkoppelingen onderaan (account · verlanglijstje · contact) */
	.sellabees-mobilemenu__actions { display: flex; flex-direction: column; flex: 0 0 auto; border-top: 1px solid var(--pw-line); padding: 6px 0; background: #fff; }
	.sellabees-mobilemenu__actions a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; color: var(--pw-text); text-decoration: none; font-family: var(--pw-font-heading); font-weight: 500; font-size: 14px; }
	.sellabees-mobilemenu__actions a:hover { background: var(--pw-cream); color: var(--pw-gold); }
	.sellabees-mobilemenu__actions svg { flex: 0 0 auto; }

	/* Footer: live stapelt naar 1 kolom op tablet/mobiel (4 -> 1, geen 2-koloms tussenstap) */
	.sellabees-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
	.sellabees-footer__grid { grid-template-columns: 1fr; text-align: center; }   /* live centreert de footer op mobiel */
	.sellabees-footer__col { min-width: 0; }
	.sellabees-footer__socials a { justify-content: center; }
	.sellabees-footer__legal { text-align: center; }
	.sellabees-footer__pay-inner { justify-content: center; }
	.sellabees-footer__pay-left { justify-content: center; }
	.sellabees-newsletter__row { flex-direction: column; gap: 12px; }
	.sellabees-newsletter input { width: 100%; }
	.sellabees-footer__legallinks, .sellabees-footer__copyright { font-size: 13px; }
}

/* ===================== NIEUWSBRIEF-POPUP (zoals live) ===================== */
.sellabees-popup { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.sellabees-popup[hidden] { display: none; }
.sellabees-popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.sellabees-popup__box {
	position: relative;
	background: #fff;
	border: 1px solid var(--pw-gold);
	border-radius: 4px;
	max-width: 1080px;
	width: 100%;
	padding: 36px 44px;
	box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.sellabees-popup__close {
	position: absolute; top: 14px; right: 14px;
	width: 30px; height: 30px; border-radius: 50%;
	border: 1px solid var(--pw-gold); background: #fff; color: var(--pw-gold);
	font-size: 20px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .15s ease, color .15s ease;
}
.sellabees-popup__close:hover { background: var(--pw-gold); color: #fff; }
.sellabees-popup__title { font-family: var(--pw-font-heading); font-weight: 600; font-size: 21px; color: var(--pw-text); margin: 0 0 10px; }
.sellabees-popup__text { color: var(--pw-muted); font-size: 14px; line-height: 1.6; margin: 0 0 18px; }
.sellabees-popup__form .sellabees-newsletter__row { display: flex; gap: 16px; margin-bottom: 14px; }
.sellabees-popup__form input { border: 1px solid #cfcfcf !important; color: var(--pw-text); }
.sellabees-popup__form .sellabees-newsletter__btn { border: 1px solid var(--pw-gold); background: #fff; color: var(--pw-text); }
.sellabees-popup__form .sellabees-newsletter__btn:hover { background: var(--pw-cream); }
/* Nieuwsbrief-pop-up: beige box met witte invoervelden (huisstijl). */
#sellabees-newsletter-popup .sellabees-popup__box { background: var(--pw-cream); }
#sellabees-newsletter-popup .sellabees-popup__form input { background: #fff; }
body.sellabees-popup-open { overflow: hidden; }
@media (max-width: 600px) {
	.sellabees-popup__box { padding: 28px 20px; }
	.sellabees-popup__form .sellabees-newsletter__row { flex-direction: column; gap: 12px; }
}

/* Inlog-popup (bestaande klant) — bouwt voort op .sellabees-popup */
.sellabees-login-popup .sellabees-popup__box { max-width: 420px; text-align: left; }
.sellabees-login-popup .sellabees-popup__text { text-align: left; }
.sellabees-login__field { margin: 0 0 14px; }
.sellabees-login__field label { display: block; font-size: 13px; font-weight: 600; color: var(--pw-text); margin-bottom: 6px; }
.sellabees-login__field input { width: 100%; border: 1px solid #cfcfcf; border-radius: 4px; padding: 12px 14px; font-size: 14px; color: var(--pw-text); background: #fff; }
.sellabees-login__field input:focus { outline: none; border-color: var(--pw-gold); }
.sellabees-login__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 16px; font-size: 13px; }
.sellabees-login__remember { display: flex; align-items: center; gap: 8px; color: var(--pw-muted); cursor: pointer; margin: 0; }
.sellabees-login__remember input { width: auto; margin: 0; }
.sellabees-login__lost { color: var(--pw-gold); white-space: nowrap; }
.sellabees-login__lost:hover { text-decoration: underline; }
.sellabees-login__btn { width: 100%; background: var(--pw-gold); color: #fff; border: 0; border-radius: 3px; padding: 14px; font-family: var(--pw-font-heading); font-weight: 600; text-transform: uppercase; font-size: 15px; letter-spacing: .3px; cursor: pointer; }
.sellabees-login__btn:hover { filter: brightness(.93); }
.sellabees-login__btn:disabled { opacity: .65; cursor: default; }
.sellabees-login__msg { margin-top: 12px; font-size: 13px; color: var(--pw-muted); text-align: center; min-height: 1em; }
.sellabees-login__msg.is-error { color: #c0392b; }
.sellabees-login__register { margin: 16px 0 0; text-align: center; font-size: 13px; color: var(--pw-muted); }
.sellabees-login__register a { color: var(--pw-gold); }
.sellabees-login__register a:hover { text-decoration: underline; }

/* ============================ PAGINATIE ============================ */
/* Globaal (elke gepagineerde pagina: shop, categorie, merk, sale, ...). De selectors
   gebruiken .page-numbers-classes zodat ze de WooCommerce-core-regels overschrijven —
   ook op echte WC-archieven die de body-class .woocommerce hebben (die anders winnen). */
nav.woocommerce-pagination { margin-top: 40px; text-align: center; }
nav.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
}
nav.woocommerce-pagination ul.page-numbers li {
	border: 0;
	margin: 0;
}
nav.woocommerce-pagination ul.page-numbers li a.page-numbers,
nav.woocommerce-pagination ul.page-numbers li span.page-numbers:not(.dots) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	margin: 0;
	padding: 0 10px;
	border: 1px solid var(--pw-line);
	border-radius: 4px;
	background: transparent;
	color: var(--pw-text);
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
}
nav.woocommerce-pagination ul.page-numbers li span.current.page-numbers {
	background: var(--pw-cream);
	border-color: var(--pw-gold);
	color: var(--pw-text);
}
nav.woocommerce-pagination ul.page-numbers li a.page-numbers:hover,
nav.woocommerce-pagination ul.page-numbers li a.page-numbers:focus {
	background: var(--pw-cream);
	border-color: var(--pw-gold);
	color: var(--pw-text);
}
