/* ==========================================================================
   Rutger van Barneveld — theme stylesheet
   Kleurpalet: diep zwart + brons/goud metallic accenten (naar het logo)
   ========================================================================== */

:root {
	--rvb-black: #0b0b0c;
	--rvb-black-soft: #141416;
	--rvb-charcoal: #1d1c1e;
	--rvb-ivory: #f4efe4;
	--rvb-ivory-dim: #cfc9bc;
	--rvb-gold: #c9a86a;
	--rvb-gold-light: #e8d5a0;
	--rvb-gold-dark: #8a6d3b;
	--rvb-gold-gradient: linear-gradient(120deg, #8a6d3b 0%, #e8d5a0 28%, #fbf1d6 45%, #c9a86a 62%, #8a6d3b 100%);
	--rvb-border: rgba(201, 168, 106, 0.25);
	--rvb-radius: 2px;
	--rvb-font-display: "Playfair Display", "Georgia", serif;
	--rvb-font-script: "Playfair Display", "Georgia", serif;
	--rvb-font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--rvb-container: 1220px;
}

/* --------------------------------------------------------------------
   Reset & basis
   -------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rvb-black);
	color: var(--rvb-ivory);
	font-family: var(--rvb-font-body);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--rvb-gold-light);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--rvb-ivory);
}

h1, h2, h3, h4 {
	font-family: var(--rvb-font-display);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--rvb-ivory);
}

p {
	margin: 0 0 1.2em;
}

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

button {
	font-family: inherit;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--rvb-gold);
	color: var(--rvb-black);
	padding: 0.8em 1.4em;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
}

.rvb-container {
	max-width: var(--rvb-container);
	margin: 0 auto;
	padding: 0 24px;
}

.rvb-eyebrow {
	font-family: var(--rvb-font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--rvb-gold);
	margin-bottom: 0.8em;
}

/* --------------------------------------------------------------------
   Wordmark (fallback logo als er nog geen afbeelding is geüpload)
   -------------------------------------------------------------------- */
.rvb-wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.rvb-wordmark__script {
	font-family: var(--rvb-font-script);
	font-style: italic;
	font-size: 2rem;
	font-weight: 700;
	background: var(--rvb-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--rvb-gold);
}

.rvb-wordmark__caps {
	font-family: var(--rvb-font-body);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--rvb-ivory-dim);
	margin-top: 6px;
	margin-left: 2px;
}

.custom-logo-link img {
	max-height: 64px;
	width: auto;
}

/* --------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------- */
.rvb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	padding: 1em 2.2em;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-radius: var(--rvb-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rvb-btn--gold {
	background: var(--rvb-gold-gradient);
	background-size: 200% auto;
	color: var(--rvb-black);
}

.rvb-btn--gold:hover {
	background-position: right center;
	color: var(--rvb-black);
	box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
	transform: translateY(-2px);
}

.rvb-btn--outline {
	border-color: var(--rvb-border);
	color: var(--rvb-ivory);
	background: transparent;
}

.rvb-btn--outline:hover {
	border-color: var(--rvb-gold);
	color: var(--rvb-gold-light);
}

/* --------------------------------------------------------------------
   Header
   -------------------------------------------------------------------- */
.rvb-header {
	position: sticky;
	top: 0;
	z-index: 500;
	width: 100%;
	background: rgba(11, 11, 12, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--rvb-border);
	transition: background 0.3s ease;
}

body.rvb-has-hero .rvb-header {
	position: absolute;
	background: transparent;
	border-bottom-color: transparent;
}

body.rvb-has-hero .rvb-header.is-scrolled {
	position: fixed;
	background: rgba(11, 11, 12, 0.9);
	border-bottom-color: var(--rvb-border);
}

.rvb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 24px;
}

.rvb-header__logo a {
	display: inline-flex;
}

.rvb-menu {
	display: flex;
	align-items: center;
	gap: 2.4em;
}

.rvb-menu a {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rvb-ivory);
	position: relative;
	padding-bottom: 4px;
}

.rvb-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: var(--rvb-gold);
	transition: right 0.25s ease;
}

.rvb-menu a:hover {
	color: var(--rvb-gold-light);
}

.rvb-menu a:hover::after {
	right: 0;
}

.rvb-menu .current-menu-item > a {
	color: var(--rvb-gold-light);
}

.rvb-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.rvb-header__cart {
	position: relative;
	display: inline-flex;
	color: var(--rvb-ivory);
}

.rvb-header__cart svg {
	width: 22px;
	height: 22px;
}

.rvb-cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--rvb-gold);
	color: var(--rvb-black);
	font-size: 0.65rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rvb-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: transparent;
	border: 0;
	width: 30px;
	height: 24px;
	cursor: pointer;
}

.rvb-header__toggle-bar {
	display: block;
	height: 1px;
	background: var(--rvb-ivory);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* --------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------- */
.rvb-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--rvb-black);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.rvb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 75%),
		linear-gradient(180deg, rgba(11, 11, 12, 0.35) 0%, rgba(11, 11, 12, 0.55) 55%, rgba(11, 11, 12, 0.95) 100%);
	z-index: 1;
}

.rvb-hero__content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}

.rvb-hero__kicker {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--rvb-gold-light);
	margin-bottom: 1.2em;
}

.rvb-hero__title {
	font-size: clamp(2.6rem, 6vw, 5.2rem);
	font-style: italic;
	background: var(--rvb-gold-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--rvb-gold);
	margin-bottom: 0.3em;
}

.rvb-hero__subtitle {
	font-size: 1.1rem;
	color: var(--rvb-ivory-dim);
	max-width: 520px;
	margin: 0 auto 2em;
}

.rvb-hero__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.rvb-hero__scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: linear-gradient(180deg, var(--rvb-gold) 0%, transparent 100%);
	z-index: 2;
}

.rvb-hero__scroll span {
	position: absolute;
	top: 0;
	left: -3px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--rvb-gold);
	animation: rvb-scroll-dot 2.2s ease-in-out infinite;
}

@keyframes rvb-scroll-dot {
	0% { top: 0; opacity: 1; }
	100% { top: 56px; opacity: 0; }
}

/* --------------------------------------------------------------------
   Generieke sectie-opmaak
   -------------------------------------------------------------------- */
.rvb-section {
	padding: 110px 0;
	border-bottom: 1px solid var(--rvb-border);
}

.rvb-section:last-of-type {
	border-bottom: 0;
}

.rvb-section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 60px;
}

.rvb-section__title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.rvb-section__footer {
	text-align: center;
	margin-top: 56px;
}

/* --------------------------------------------------------------------
   Productgrid
   -------------------------------------------------------------------- */
ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 32px;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

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

.related.products ul.products,
.upsells.products ul.products,
.cross-sells ul.products {
	margin-top: 24px;
}

.rvb-product-card {
	position: relative;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.rvb-product-card:hover {
	border-color: var(--rvb-gold);
	transform: translateY(-4px);
}

.rvb-product-card__media {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--rvb-charcoal);
}

.rvb-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.rvb-product-card:hover .rvb-product-card__media img {
	transform: scale(1.05);
}

.rvb-product-card__media .onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--rvb-gold-gradient);
	color: var(--rvb-black);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: var(--rvb-radius);
	min-height: 0;
	min-width: 0;
	line-height: 1;
	margin: 0;
}

.rvb-product-card__body {
	padding: 22px;
	text-align: center;
}

.rvb-product-card__body h2,
.rvb-product-card__body .woocommerce-loop-product__title {
	font-family: var(--rvb-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.5em;
}

.rvb-product-card__body .price {
	display: block;
	color: var(--rvb-gold-light);
	font-weight: 600;
	margin-bottom: 1em;
}

.rvb-product-card__body .price del {
	color: var(--rvb-ivory-dim);
	opacity: 0.6;
	margin-right: 0.5em;
}

.rvb-product-card__body .star-rating {
	margin: 0 auto 0.8em;
}

.rvb-product-card__body .button,
.rvb-product-card__body a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.9em 1.4em;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid var(--rvb-border);
	background: transparent;
	color: var(--rvb-ivory);
	border-radius: var(--rvb-radius);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.rvb-product-card__body .button:hover {
	border-color: var(--rvb-gold);
	background: var(--rvb-gold);
	color: var(--rvb-black);
}

/* --------------------------------------------------------------------
   Categorie tegels
   -------------------------------------------------------------------- */
.rvb-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.rvb-category-tile {
	position: relative;
	display: block;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border: 1px solid var(--rvb-border);
}

.rvb-category-tile__media {
	position: absolute;
	inset: 0;
	background: var(--rvb-charcoal) center / cover no-repeat;
	transition: transform 0.4s ease;
}

.rvb-category-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 11, 12, 0) 30%, rgba(11, 11, 12, 0.9) 100%);
}

.rvb-category-tile:hover .rvb-category-tile__media {
	transform: scale(1.06);
}

.rvb-category-tile__label {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	font-family: var(--rvb-font-display);
	font-size: 1.2rem;
	color: var(--rvb-ivory);
}

/* --------------------------------------------------------------------
   Spotlight & About (media/content split-secties)
   -------------------------------------------------------------------- */
.rvb-spotlight,
.rvb-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.rvb-about__content {
	order: 2;
}

.rvb-about__media {
	order: 1;
}

.rvb-spotlight__media img,
.rvb-about__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border: 1px solid var(--rvb-border);
}

.rvb-spotlight__placeholder,
.rvb-about__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(160deg, var(--rvb-black-soft) 0%, var(--rvb-charcoal) 100%);
	border: 1px solid var(--rvb-border);
}

.rvb-about__placeholder .rvb-wordmark__script {
	font-size: 3rem;
}

.rvb-spotlight__title,
.rvb-about__title {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.rvb-spotlight__text,
.rvb-about__text {
	color: var(--rvb-ivory-dim);
	max-width: 480px;
}

.rvb-section--spotlight .rvb-spotlight__media {
	order: 2;
}

.rvb-section--spotlight .rvb-spotlight__content {
	order: 1;
}

.rvb-social-icons {
	display: flex;
	gap: 14px;
	margin-top: 1.6em;
}

.rvb-social-icons__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--rvb-border);
	border-radius: 50%;
	color: var(--rvb-ivory);
}

.rvb-social-icons__link svg {
	width: 16px;
	height: 16px;
}

.rvb-social-icons__link:hover {
	border-color: var(--rvb-gold);
	color: var(--rvb-gold-light);
}

/* --------------------------------------------------------------------
   Social / instagram grid
   -------------------------------------------------------------------- */
.rvb-gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.rvb-gallery-grid__item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid var(--rvb-border);
}

.rvb-gallery-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.rvb-gallery-grid__item:hover img {
	transform: scale(1.08);
	opacity: 0.85;
}

/* --------------------------------------------------------------------
   Nieuwsbrief
   -------------------------------------------------------------------- */
.rvb-section--newsletter {
	background: var(--rvb-black-soft);
	text-align: center;
}

.rvb-newsletter {
	max-width: 620px;
}

.rvb-newsletter__title {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.rvb-newsletter__text {
	color: var(--rvb-ivory-dim);
}

.rvb-newsletter__form--fallback {
	display: flex;
	gap: 12px;
	margin-top: 1.6em;
}

.rvb-newsletter__form--fallback input[type="email"] {
	flex: 1;
	padding: 1em 1.2em;
	background: transparent;
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	border-radius: var(--rvb-radius);
	font-family: inherit;
}

.rvb-newsletter__form--fallback input[type="email"]::placeholder {
	color: var(--rvb-ivory-dim);
}

.rvb-newsletter__hint {
	margin-top: 1.4em;
	font-size: 0.8rem;
	color: var(--rvb-ivory-dim);
	opacity: 0.7;
}

/* --------------------------------------------------------------------
   Pagina-header (niet-homepage)
   -------------------------------------------------------------------- */
.rvb-page-header {
	padding: 180px 0 60px;
	text-align: center;
	background: var(--rvb-black-soft);
	border-bottom: 1px solid var(--rvb-border);
}

.rvb-page-header__title {
	font-size: clamp(2rem, 4vw, 3rem);
}

/* --------------------------------------------------------------------
   Shop layout (archief/product met zijbalk)
   -------------------------------------------------------------------- */
.rvb-shop-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding: 70px 0 110px;
}

.rvb-shop-layout:has(.rvb-shop-sidebar) {
	grid-template-columns: 3fr 1fr;
}

.rvb-shop-sidebar .shop-widget {
	margin-bottom: 2.4em;
	padding-bottom: 2em;
	border-bottom: 1px solid var(--rvb-border);
}

.rvb-shop-sidebar .shop-widget-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.woocommerce-result-count,
.woocommerce-ordering {
	color: var(--rvb-ivory-dim);
}

.woocommerce-ordering select {
	background: var(--rvb-black-soft);
	color: var(--rvb-ivory);
	border: 1px solid var(--rvb-border);
	padding: 0.6em 1em;
}

nav.woocommerce-pagination ul {
	display: flex;
	gap: 8px;
	border: 0 !important;
}

nav.woocommerce-pagination ul li {
	border: 1px solid var(--rvb-border) !important;
}

nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span {
	color: var(--rvb-ivory);
	padding: 0.6em 1em;
}

nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination ul li span.current {
	background: var(--rvb-gold);
	color: var(--rvb-black);
}

/* WooCommerce standaard notices/forms in dark theme laten passen */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background: var(--rvb-black-soft);
	border-top-color: var(--rvb-gold);
	color: var(--rvb-ivory);
}

.woocommerce table.shop_table,
.woocommerce-cart table.cart,
.woocommerce-checkout table.shop_table {
	border-color: var(--rvb-border);
	color: var(--rvb-ivory);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--rvb-border);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row select {
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--rvb-gold-gradient);
	color: var(--rvb-black);
	border-radius: var(--rvb-radius);
	border: 0;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	padding: 1em 1.8em;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	opacity: 0.9;
	color: var(--rvb-black);
}

/* --------------------------------------------------------------------
   Single product pagina
   -------------------------------------------------------------------- */
.woocommerce div.product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: flex-start;
	position: relative;
}

.onsale {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: var(--rvb-gold-gradient);
	color: var(--rvb-black);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: var(--rvb-radius);
	min-height: 0;
	min-width: 0;
	line-height: 1;
	margin: 0;
}

.woocommerce-product-gallery {
	position: relative;
}

.woocommerce-product-gallery__wrapper {
	margin: 0;
	padding: 0;
	border: 1px solid var(--rvb-border);
	background: var(--rvb-charcoal);
}

.woocommerce-product-gallery__image {
	list-style: none;
}

.woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.flex-control-thumbs li {
	width: 78px;
}

.flex-control-thumbs img {
	border: 1px solid var(--rvb-border);
	opacity: 0.7;
	cursor: pointer;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.flex-control-thumbs img:hover,
.flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: var(--rvb-gold);
}

.summary.entry-summary {
	padding-top: 8px;
}

.summary.entry-summary .product_title {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	margin-bottom: 0.4em;
}

.woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1.4em;
}

.woocommerce-product-rating .star-rating {
	color: var(--rvb-gold);
}

.woocommerce-review-link {
	color: var(--rvb-ivory-dim);
	font-size: 0.85rem;
}

.summary.entry-summary p.price {
	font-family: var(--rvb-font-display);
	font-size: 1.7rem;
	color: var(--rvb-gold-light);
	margin-bottom: 1.2em;
}

.summary.entry-summary p.price del {
	color: var(--rvb-ivory-dim);
	opacity: 0.55;
	font-size: 0.7em;
	margin-right: 0.5em;
}

.woocommerce-product-details__short-description {
	color: var(--rvb-ivory-dim);
	max-width: 480px;
	margin-bottom: 1.8em;
}

.summary.entry-summary form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-bottom: 2em;
}

.summary.entry-summary form.cart table.variations,
.summary.entry-summary form.cart .single_variation_wrap {
	width: 100%;
	margin-bottom: 1.4em;
}

.summary.entry-summary form.cart table.variations td.label {
	padding-right: 1em;
	color: var(--rvb-ivory-dim);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
}

.summary.entry-summary form.cart table.variations select {
	width: 100%;
	max-width: 260px;
	padding: 0.8em 1em;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	border-radius: var(--rvb-radius);
}

.summary.entry-summary form.cart .reset_variations {
	display: inline-block;
	margin-top: 0.6em;
	font-size: 0.8rem;
	color: var(--rvb-ivory-dim);
}

.summary.entry-summary form.cart div.quantity,
.summary.entry-summary form.cart .woocommerce-variation-add-to-cart {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.summary.entry-summary .woocommerce-variation-price {
	width: 100%;
	margin-bottom: 1em;
	color: var(--rvb-gold-light);
}

/* --------------------------------------------------------------------
   Variatie-swatches (maat/kleur) — vervangt de standaard dropdowns
   -------------------------------------------------------------------- */
.summary.entry-summary form.cart .rvb-swatches-panel {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 0.6em;
}

.rvb-swatches__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.rvb-swatches__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--rvb-ivory-dim);
}

.rvb-swatches__selected {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--rvb-gold-light);
	min-height: 1.2em;
}

.rvb-swatches__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rvb-swatch {
	position: relative;
	background: transparent;
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.rvb-swatch:focus-visible {
	outline: 2px solid var(--rvb-gold);
	outline-offset: 2px;
}

/* Tekst-swatches (bv. Maat) */
.rvb-swatch--text {
	min-width: 48px;
	height: 48px;
	padding: 0 16px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: var(--rvb-radius);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rvb-swatch--text:hover {
	border-color: var(--rvb-gold);
	color: var(--rvb-gold-light);
}

.rvb-swatch--text.is-active {
	background: var(--rvb-gold-gradient);
	border-color: transparent;
	color: var(--rvb-black);
	transform: translateY(-1px);
}

.rvb-swatch--text.is-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	color: var(--rvb-ivory-dim);
	text-decoration: line-through;
}

.rvb-swatch--text.is-disabled:hover {
	border-color: var(--rvb-border);
	color: var(--rvb-ivory-dim);
}

/* Kleur-swatches */
.rvb-swatch--color {
	width: 42px;
	height: 42px;
	padding: 3px;
	border-radius: 50%;
	border-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.rvb-swatch__dot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--rvb-ivory-dim);
}

.rvb-swatch__dot--unknown {
	background: var(--rvb-charcoal);
}

.rvb-swatch--color:hover .rvb-swatch__dot {
	transform: scale(1.08);
}

.rvb-swatch--color.is-active {
	box-shadow: 0 0 0 2px var(--rvb-black-soft), 0 0 0 4px var(--rvb-gold);
}

.rvb-swatch--color.is-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.rvb-swatch--color.is-disabled::after {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	top: 50%;
	height: 1px;
	background: var(--rvb-ivory-dim);
	transform: rotate(-45deg);
}

.rvb-swatch__tooltip {
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--rvb-black);
	color: var(--rvb-ivory);
	font-size: 0.68rem;
	letter-spacing: 0.04em;
	white-space: nowrap;
	padding: 5px 9px;
	border: 1px solid var(--rvb-border);
	border-radius: var(--rvb-radius);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
	z-index: 2;
}

.rvb-swatch--color:hover .rvb-swatch__tooltip,
.rvb-swatch--color:focus-visible .rvb-swatch__tooltip {
	opacity: 1;
}

.rvb-swatches-panel .reset_variations {
	align-self: flex-start;
	font-size: 0.78rem;
	color: var(--rvb-ivory-dim);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rvb-swatches-panel .reset_variations:hover {
	color: var(--rvb-gold-light);
}

.quantity .qty {
	width: 78px;
	padding: 1em 0.8em;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	text-align: center;
	border-radius: var(--rvb-radius);
}

.summary.entry-summary button.single_add_to_cart_button {
	flex: 1;
	min-width: 220px;
	padding: 1.1em 2em;
}

.product_meta {
	padding-top: 1.6em;
	margin-top: 0.4em;
	border-top: 1px solid var(--rvb-border);
	font-size: 0.82rem;
	color: var(--rvb-ivory-dim);
}

.product_meta > span {
	display: block;
	margin-bottom: 0.4em;
}

.product_meta a {
	color: var(--rvb-ivory-dim);
}

.product_meta a:hover {
	color: var(--rvb-gold-light);
}

.woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 80px;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	border-bottom: 1px solid var(--rvb-border);
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li {
	margin: 0;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 0.9em 1.6em;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--rvb-ivory-dim);
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--rvb-gold-light);
	box-shadow: inset 0 -2px 0 var(--rvb-gold);
}

.woocommerce-tabs .woocommerce-Tabs-panel {
	max-width: 760px;
	color: var(--rvb-ivory-dim);
}

.woocommerce-tabs table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-tabs table.shop_attributes th,
.woocommerce-tabs table.shop_attributes td {
	padding: 0.9em 1em;
	border: 1px solid var(--rvb-border);
	text-align: left;
}

.related.products,
.upsells.products {
	grid-column: 1 / -1;
	margin-top: 90px;
	padding-top: 60px;
	border-top: 1px solid var(--rvb-border);
}

.related.products > h2,
.upsells.products > h2 {
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	text-align: center;
	margin-bottom: 40px;
}

/* --------------------------------------------------------------------
   Winkelwagen (classic [woocommerce_cart] shortcode)
   -------------------------------------------------------------------- */
.woocommerce-cart-form table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 32px;
}

.woocommerce-cart-form table.shop_table thead th {
	text-align: left;
	padding: 1em;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--rvb-gold-light);
	border-bottom: 1px solid var(--rvb-border);
}

.woocommerce-cart-form table.shop_table td {
	padding: 1.2em 1em;
	border-bottom: 1px solid var(--rvb-border);
	vertical-align: middle;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 84px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border: 1px solid var(--rvb-border);
}

.woocommerce-cart-form .product-name a {
	color: var(--rvb-ivory);
	font-weight: 600;
}

.woocommerce-cart-form .product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	color: var(--rvb-ivory-dim) !important;
	background: transparent !important;
	font-size: 1.1rem;
}

.woocommerce-cart-form .product-remove a.remove:hover {
	color: var(--rvb-black) !important;
	background: var(--rvb-gold) !important;
}

.woocommerce-cart-form .coupon {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.woocommerce-cart-form .coupon #coupon_code {
	padding: 1em 1.2em;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	border-radius: var(--rvb-radius);
}

.cart-collaterals {
	margin-top: 48px;
	display: flex;
	justify-content: flex-end;
}

.cart_totals {
	width: 100%;
	max-width: 420px;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	padding: 32px;
}

.cart_totals h2 {
	font-size: 1.3rem;
	margin-bottom: 1em;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
	padding: 0.9em 0;
	border-bottom: 1px solid var(--rvb-border);
}

.cart_totals table.shop_table tr:last-child th,
.cart_totals table.shop_table tr:last-child td {
	border-bottom: 0;
	font-size: 1.15rem;
	color: var(--rvb-gold-light);
	font-weight: 700;
}

.wc-proceed-to-checkout {
	margin-top: 24px;
}

.wc-proceed-to-checkout a.checkout-button {
	display: block;
	text-align: center;
}

.cross-sells {
	margin-top: 70px;
	padding-top: 50px;
	border-top: 1px solid var(--rvb-border);
}

.cross-sells > h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	margin-bottom: 32px;
}

/* --------------------------------------------------------------------
   Afrekenen (classic [woocommerce_checkout] shortcode)
   -------------------------------------------------------------------- */
.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 56px;
	align-items: start;
}

.woocommerce-checkout h3 {
	font-size: 1.2rem;
	margin-bottom: 1em;
	padding-bottom: 0.6em;
	border-bottom: 1px solid var(--rvb-border);
}

.woocommerce-checkout .form-row label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--rvb-ivory-dim);
	margin-bottom: 0.5em;
}

.woocommerce-checkout .form-row {
	margin-bottom: 1.2em;
}

.woocommerce-checkout #order_review_heading {
	font-size: 1.2rem;
	margin-bottom: 1em;
	padding-bottom: 0.6em;
	border-bottom: 1px solid var(--rvb-border);
}

#order_review,
.woocommerce-checkout-review-order {
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	padding: 32px;
}

table.woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 0;
}

table.woocommerce-checkout-review-order-table th,
table.woocommerce-checkout-review-order-table td {
	padding: 0.9em 0;
	border-bottom: 1px solid var(--rvb-border);
}

table.woocommerce-checkout-review-order-table tr.order-total th,
table.woocommerce-checkout-review-order-table tr.order-total td {
	border-bottom: 0;
	font-size: 1.15rem;
	color: var(--rvb-gold-light);
	font-weight: 700;
}

#payment {
	background: transparent;
	margin-top: 24px;
	border-radius: 0;
}

#payment ul.wc_payment_methods {
	border-top: 1px solid var(--rvb-border);
	padding-top: 16px;
}

#payment ul.payment_methods li {
	padding: 0.9em 0;
	border-bottom: 1px solid var(--rvb-border);
}

#payment .payment_box {
	background: var(--rvb-charcoal);
	color: var(--rvb-ivory-dim);
	padding: 1.2em;
	margin-top: 0.8em;
}

#payment .payment_box::before {
	border-bottom-color: var(--rvb-charcoal) !important;
}

#place_order {
	width: 100%;
	margin-top: 20px;
	padding: 1.2em 2em;
	font-size: 0.85rem;
}

.woocommerce-terms-and-conditions-wrapper {
	margin: 1.2em 0;
	color: var(--rvb-ivory-dim);
	font-size: 0.85rem;
}

/* --------------------------------------------------------------------
   WooCommerce Cart/Checkout blocks (indien de site de blok-gebaseerde
   winkelwagen/afreken-pagina's gebruikt i.p.v. de classic shortcodes)
   -------------------------------------------------------------------- */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	--wc-blocks-color-primary: var(--rvb-gold);
	color: var(--rvb-ivory);
}

.wc-block-cart,
.wc-block-checkout,
.wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-totals-item,
.wc-block-cart-items,
.wc-block-components-sidebar-layout {
	background: transparent;
	color: var(--rvb-ivory);
}

.wc-block-components-product-name,
.wc-block-components-totals-item__label {
	color: var(--rvb-ivory);
}

.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper {
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
}

.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-address-form input {
	background: var(--rvb-black-soft) !important;
	border-color: var(--rvb-border) !important;
	color: var(--rvb-ivory) !important;
}

.wc-block-components-button:not(.is-link) {
	background: var(--rvb-gold-gradient) !important;
	color: var(--rvb-black) !important;
	border-radius: var(--rvb-radius) !important;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------
   Blogonderdelen (index/archive/single/page fallback)
   -------------------------------------------------------------------- */
.rvb-content {
	padding: 70px 0 110px;
}

.rvb-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 50px;
}

.rvb-post-card {
	border: 1px solid var(--rvb-border);
}

.rvb-post-card__thumb img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.rvb-post-card__title,
.rvb-post__title {
	padding: 0 20px;
	font-size: 1.1rem;
}

.rvb-post-card__excerpt {
	padding: 0 20px 20px;
	color: var(--rvb-ivory-dim);
}

.rvb-post__thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin-bottom: 1.5em;
}

.rvb-post__meta {
	color: var(--rvb-gold-light);
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.rvb-comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--rvb-border);
}

.rvb-comments__list .comment-body {
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	padding: 20px;
	margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	background: var(--rvb-black-soft);
	border: 1px solid var(--rvb-border);
	color: var(--rvb-ivory);
	padding: 0.9em;
	margin-bottom: 1em;
}

/* --------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------- */
.rvb-footer {
	background: var(--rvb-black-soft);
	padding-top: 80px;
}

.rvb-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 60px;
}

.rvb-footer__tagline {
	color: var(--rvb-ivory-dim);
	max-width: 320px;
	margin-top: 1.2em;
}

.footer-widget-title {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--rvb-gold-light);
}

.rvb-footer-menu li,
.footer-widget li {
	margin-bottom: 0.7em;
}

.rvb-footer-menu a,
.footer-widget a {
	color: var(--rvb-ivory-dim);
}

.rvb-footer-menu a:hover,
.footer-widget a:hover {
	color: var(--rvb-gold-light);
}

.rvb-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding: 28px 0;
	border-top: 1px solid var(--rvb-border);
	font-size: 0.8rem;
	color: var(--rvb-ivory-dim);
}

.rvb-footer__copy,
.rvb-footer__credit {
	margin: 0;
}

/* --------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------- */
@media (max-width: 1023px) {
	.rvb-header__nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 85%);
		height: 100vh;
		background: var(--rvb-black-soft);
		border-left: 1px solid var(--rvb-border);
		padding: 100px 32px 32px;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		z-index: 400;
	}

	.rvb-header__nav.is-open {
		transform: translateX(0);
	}

	.rvb-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.6em;
	}

	.rvb-header__toggle {
		display: flex;
	}

	.rvb-header__toggle[aria-expanded="true"] .rvb-header__toggle-bar:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.rvb-header__toggle[aria-expanded="true"] .rvb-header__toggle-bar:nth-child(2) {
		opacity: 0;
	}

	.rvb-header__toggle[aria-expanded="true"] .rvb-header__toggle-bar:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.rvb-product-grid,
	.rvb-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rvb-post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rvb-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.rvb-shop-layout:has(.rvb-shop-sidebar) {
		grid-template-columns: 1fr;
	}

	.rvb-spotlight,
	.rvb-about,
	.woocommerce div.product,
	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.cart-collaterals {
		justify-content: stretch;
	}

	.cart_totals {
		max-width: none;
	}

	.rvb-about__content,
	.rvb-about__media,
	.rvb-section--spotlight .rvb-spotlight__media,
	.rvb-section--spotlight .rvb-spotlight__content {
		order: initial;
	}

	.rvb-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.rvb-section {
		padding: 70px 0;
	}

	.rvb-product-grid,
	.rvb-category-grid,
	.rvb-post-grid {
		grid-template-columns: 1fr;
	}

	.summary.entry-summary form.cart {
		flex-direction: column;
		align-items: stretch;
	}

	.summary.entry-summary button.single_add_to_cart_button {
		width: 100%;
	}

	.rvb-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rvb-newsletter__form--fallback {
		flex-direction: column;
	}

	.rvb-footer__top {
		grid-template-columns: 1fr;
	}
}
