:root {
	--black: #070707;
	--gold: #d6a84f;
	--soft: #f1d79a;
	--white: #f7f2e9;
	--muted: #c8c1b6;
	--line: rgba(214, 168, 79, .28);
	--danger: #c94f4f;
	--green: #65b36b
}

* {
	box-sizing: border-box
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: var(--black);
	color: var(--white);
	line-height: 1.6
}

a {
	color: var(--soft);
	text-decoration: none
}

button,
input,
select,
textarea {
	font: inherit
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(7, 7, 7, .95);
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 16px 5vw
}

.logo {
	font-size: 28px;
	font-weight: 900;
	color: var(--gold)
}

.tagline {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 2px
}

nav {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center
}

nav a {
	font-weight: 800
}

.lang {
	display: flex;
	gap: 6px
}

.lang button {
	background: #111;
	color: var(--soft);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 5px 9px;
	cursor: pointer;
	font-weight: 800
}

.lang button.active {
	background: var(--gold);
	color: #111
}

.hero {
	min-height: 45vh;
	padding: 65px 5vw;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(0, 0, 0, .68)), radial-gradient(circle at 82% 25%, rgba(214, 168, 79, .25), transparent 35%)
}

.hero h1 {
	max-width: 980px;
	font-size: clamp(38px, 7vw, 76px);
	line-height: .95;
	margin: 10px 0 22px
}

.hero p {
	max-width: 760px;
	font-size: 19px;
	color: var(--muted);
	margin: 6px 0
}

.eyebrow {
	color: var(--gold) !important;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 2px;
	font-size: 13px !important
}

.button {
	display: inline-block;
	background: var(--gold);
	color: #111;
	font-weight: 900;
	padding: 12px 20px;
	border-radius: 999px;
	margin-top: 8px;
	border: 0;
	cursor: pointer
}

.button.secondary {
	background: transparent;
	color: var(--soft);
	border: 1px solid var(--gold)
}

.button.disabled {
	opacity: .45;
	pointer-events: none
}

.button.added {
	background: var(--green);
	color: #071207
}

.section {
	padding: 58px 5vw;
	border-top: 1px solid rgba(214, 168, 79, .18)
}

.section h2 {
	font-size: clamp(30px, 4vw, 52px);
	margin: 0 0 10px;
	color: var(--gold)
}

.section-intro,
.small-note,
.option-summary {
	color: var(--muted)
}

.legend {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	background: #111;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 16px;
	margin: 24px 0
}

.legend span {
	font-weight: 800
}

.toolbar {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	margin: 25px 0
}

.searchbox {
	width: 100%;
	padding: 14px 16px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: #111;
	color: var(--white)
}

.filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.filter-button {
	border: 1px solid var(--line);
	background: #111;
	color: var(--soft);
	border-radius: 999px;
	padding: 10px 14px;
	cursor: pointer;
	font-weight: 800
}

.filter-button.active {
	background: var(--gold);
	color: #111
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px
}

.product-card {
	background: linear-gradient(180deg, #1b1b1b, #101010);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 20px
}

.product-image-wrap {
	overflow: hidden;
	border-radius: 16px;
	background: #2a2a2a
}

.product-image {
	width: 100%;
	aspect-ratio: 1.25/1;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, .08);
	display: block;
	cursor: zoom-in
}

.product-card h3 {
	font-size: 24px;
	margin: 16px 0 6px
}

.category {
	color: var(--gold);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 900
}

.price {
	font-size: 24px;
	color: var(--soft);
	font-weight: 900;
	margin: 12px 0
}

.availability {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 10px 0
}

.mark {
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 4px 9px;
	background: #111;
	font-weight: 900
}

.eu {
	color: #b6d4ff
}

.globe {
	color: #b9f0c0
}

.card-actions,
.checkout-actions,
.hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px
}

.cart {
	background: #111;
	border: 1px dashed rgba(214, 168, 79, .5);
	border-radius: 18px;
	padding: 20px
}

.cart-row {
	display: grid;
	grid-template-columns: auto 1fr auto auto auto;
	gap: 10px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding: 10px 0
}

.qty-button,
.remove-button {
	border: 1px solid var(--line);
	background: transparent;
	color: var(--soft);
	border-radius: 999px;
	padding: 6px 10px;
	cursor: pointer
}

.remove-button {
	border-color: var(--danger);
	color: #ffb1b1
}

.cart-total {
	font-size: 22px;
	color: var(--soft);
	font-weight: 900;
	text-align: right;
	margin-top: 14px
}

.message {
	display: none;
	margin-top: 12px;
	padding: 10px 14px;
	background: rgba(101, 179, 107, .15);
	border: 1px solid var(--green);
	border-radius: 12px;
	color: #dff7df
}

.message.show {
	display: block
}

.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100
}

.modal.show {
	display: block
}

.modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82)
}

.modal-panel {
	position: relative;
	margin: 4vh auto;
	background: #111;
	border: 1px solid rgba(214, 168, 79, .5);
	border-radius: 24px;
	padding: 28px;
	width: min(900px, 92vw);
	max-height: 92vh;
	overflow: auto
}

.modal-close {
	position: absolute;
	right: 18px;
	top: 14px;
	background: transparent;
	color: var(--gold);
	border: 0;
	font-size: 36px;
	cursor: pointer
}

.info-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 10px;
	margin: 14px 0
}

.info-gallery img {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(214, 168, 79, .25);
	cursor: zoom-in
}

.option-row {
	margin: 16px 0
}

.option-row label {
	display: block;
	font-weight: 900;
	color: var(--soft);
	margin-bottom: 6px
}

.option-row select {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #111;
	color: var(--white)
}

.option-summary {
	display: block;
	font-size: 14px;
	margin-top: 4px
}

.zoom-view img {
	width: 100%;
	max-height: 84vh;
	object-fit: contain;
	border-radius: 16px
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.form-grid label {
	display: block;
	font-weight: 800;
	color: var(--soft);
	margin-bottom: 5px
}

.form-grid input,
.form-grid select,
.form-grid textarea {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #111;
	color: var(--white)
}

.form-full {
	grid-column: 1/-1
}

.warning {
	display: none;
	background: rgba(201, 79, 79, .18);
	border: 1px solid var(--danger);
	border-radius: 16px;
	padding: 16px;
	margin: 18px 0
}

.warning.show {
	display: block
}

footer {
	text-align: center;
	padding: 35px 5vw;
	color: var(--muted);
	border-top: 1px solid rgba(214, 168, 79, .18)
}

@media(max-width:850px) {
	.site-header {
		display: block
	}

	nav {
		margin-top: 14px
	}

	.toolbar,
	.form-grid {
		grid-template-columns: 1fr
	}

	.cart-row {
		grid-template-columns: 1fr
	}

	.modal-panel {
		margin: 2vh auto;
		max-height: 96vh
	}
}
/* Begin promo box */
/* New Promo Box Layout ---*/
.promo-box {
display: flex;
gap: 24px;
align-items: center;
background-color: #f9f9f9;
/* Clean, subtle background */
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 24px;
margin-bottom: 25px;
}

.promo-image-wrapper {
flex: 0 0 200px; 
/* Forces the image container to stay exactly 200px wide */
max-width: 200px;
}

.promo-image {
width: 100%;
height: auto;
display: block;
border-radius: 4px;
object-fit: cover;
}

.promo-text-wrapper {
flex: 1; /* Allows the text side to take up the remaining space */
}

.promo-text-wrapper h3 {
margin-top: 0;
margin-bottom: 10px;
font-size: 1.3rem;
color: #333;

}

.promo-text-wrapper p {
margin: 0;
line-height: 1.6;
color: #555;
}
/* Einde promo box */