/* CSS Variables */
:root {
	--background: 30 25% 97%;
	--foreground: 20 25% 15%;
	--card: 30 30% 98%;
	--card-foreground: 20 25% 15%;
	--popover: 30 30% 98%;
	--popover-foreground: 20 25% 15%;
	--primary: 15 85% 60%;
	--primary-foreground: 0 0% 100%;
	--secondary: 175 50% 45%;
	--secondary-foreground: 0 0% 100%;
	--muted: 30 20% 92%;
	--muted-foreground: 20 15% 45%;
	--accent: 45 90% 55%;
	--accent-foreground: 20 25% 15%;
	--destructive: 0 84.2% 60.2%;
	--destructive-foreground: 210 40% 98%;
	--border: 30 20% 88%;
	--input: 30 20% 88%;
	--ring: 15 85% 60%;
	--radius: 1rem;
	--coral: 15 85% 60%;
	--teal: 175 50% 45%;
	--golden: 45 90% 55%;
	--lavender: 270 50% 70%;
	--sky: 200 70% 60%;
	--gradient-warm: linear-gradient(135deg, hsl(15 85% 60%), hsl(45 90% 55%));
	--gradient-cool: linear-gradient(135deg, hsl(175 50% 45%), hsl(200 70% 60%));
	--gradient-hero: linear-gradient(180deg, hsl(30 25% 97%) 0%, hsl(30 30% 94%) 100%);
	--shadow-card: 0 4px 20px -4px hsl(20 25% 15% / 0.1);
	--shadow-card-hover: 0 12px 40px -8px hsl(20 25% 15% / 0.15);
	--shadow-glow-coral: 0 0 40px hsl(15 85% 60% / 0.3);
	--shadow-glow-teal: 0 0 40px hsl(175 50% 45% / 0.3);
}

/* Base Styles */
* {
	border-color: hsl(var(--border));
	box-sizing: border-box;
}

body {
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	font-family: 'Outfit', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', sans-serif;
	margin: 0;
}

.font-handwritten {
	font-family: 'Caveat', cursive;
}

/* Layout Utilities */
.min-h-screen {
	min-height: 100vh;
}

.max-w-6xl {
	max-width: 72rem;
}

.max-w-5xl {
	max-width: 64rem;
}

.max-w-4xl {
	max-width: 56rem;
}

.max-w-3xl {
	max-width: 48rem;
}

.max-w-2xl {
	max-width: 42rem;
}

.max-w-xl {
	max-width: 36rem;
}

.max-w-md {
	max-width: 28rem;
}

.max-w-sm {
	max-width: 24rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.py-24 {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.pt-32 {
	padding-top: 8rem;
}

.pt-40 {
	padding-top: 10rem;
}

.pb-20 {
	padding-bottom: 5rem;
}

.pb-16 {
	padding-bottom: 4rem;
}

.pb-6 {
	padding-bottom: 1.5rem;
}

.p-8 {
	padding: 2rem;
}

.p-6 {
	padding: 1.5rem;
}

.p-4 {
	padding: 1rem;
}

.p-2 {
	padding: 0.5rem;
}

.mb-16 {
	margin-bottom: 4rem;
}

.mb-12 {
	margin-bottom: 3rem;
}

.mb-10 {
	margin-bottom: 2.5rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-6 {
	margin-bottom: 1.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-1 {
	margin-bottom: 0.25rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-0 {
	margin-top: 0;
}

.mt-auto {
	margin-top: auto;
}

.mb-0 {
	margin-bottom: 0;
}

/* Flexbox */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-start {
	justify-content: flex-start;
}

.gap-12 {
	gap: 3rem;
}

.gap-10 {
	gap: 2.5rem;
}

.gap-8 {
	gap: 2rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-3 {
	gap: 0.75rem;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-1 {
	gap: 0.25rem;
}

/* Grid */
.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Responsive Grid */
@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.md\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.md\:flex {
		display: flex;
	}
	.md\:hidden {
		display: none;
	}
	.md\:block {
		display: block;
	}
	.md\:h-20 {
		height: 5rem;
	}
	.md\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}
	.md\:text-3xl {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
	.md\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	.md\:text-5xl {
		font-size: 3rem;
		line-height: 1;
	}
	.md\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
	.md\:text-7xl {
		font-size: 4.5rem;
		line-height: 1;
	}
	.md\:gap-10 {
		gap: 2.5rem;
	}
	.md\:gap-12 {
		gap: 3rem;
	}
	.md\:flex-row {
		flex-direction: row;
	}
	.md\:items-center {
		align-items: center;
	}
	.md\:max-w-\[280px\] {
		max-width: 280px;
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.lg\:grid-cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.lg\:flex {
		display: flex;
	}
	.lg\:justify-end {
		justify-content: flex-end;
	}
	.lg\:justify-start {
		justify-content: flex-start;
	}
	.lg\:text-left {
		text-align: left;
	}
	.lg\:text-6xl {
		font-size: 3.75rem;
		line-height: 1;
	}
	.lg\:text-7xl {
		font-size: 4.5rem;
		line-height: 1;
	}
	.lg\:text-8xl {
		font-size: 6rem;
		line-height: 1;
	}
	.lg\:text-4xl {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
	.lg\:text-2xl {
		font-size: 1.5rem;
		line-height: 2rem;
	}
	.lg\:gap-16 {
		gap: 4rem;
	}
	.lg\:order-1 {
		order: 1;
	}
	.lg\:order-2 {
		order: 2;
	}
	.lg\:order-last {
		order: 9999;
	}
	.lg\:mx-0 {
		margin-left: 0;
		margin-right: 0;
	}
}

@media (min-width: 640px) {
	.sm\:flex-row {
		flex-direction: row;
	}
	.sm\:max-w-\[240px\] {
		max-width: 240px;
	}
	.sm\:max-w-md {
		max-width: 28rem;
	}
}

/* Typography */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-4xl {
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.text-5xl {
	font-size: 3rem;
	line-height: 1;
}

.text-6xl {
	font-size: 3.75rem;
	line-height: 1;
}

.text-7xl {
	font-size: 4.5rem;
	line-height: 1;
}

.text-8xl {
	font-size: 6rem;
	line-height: 1;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}

.font-medium {
	font-weight: 500;
}

.font-extrabold {
	font-weight: 800;
}

.leading-relaxed {
	line-height: 1.625;
}

/* Colors */
.text-foreground {
	color: hsl(var(--foreground));
}

.text-muted-foreground {
	color: hsl(var(--muted-foreground));
}

.text-primary {
	color: hsl(var(--primary));
}

.text-secondary {
	color: hsl(var(--secondary));
}

.text-coral {
	color: hsl(var(--coral));
}

.text-teal {
	color: hsl(var(--teal));
}

.text-golden {
	color: hsl(var(--golden));
}

.text-lavender {
	color: hsl(var(--lavender));
}

.text-white {
	color: #fff;
}

.text-background {
	color: hsl(var(--background));
}

.bg-background {
	background-color: hsl(var(--background));
}

.bg-card {
	background-color: hsl(var(--card));
}

.bg-foreground {
	background-color: hsl(var(--foreground));
}

.bg-muted-50 {
	background-color: hsl(var(--muted) / 0.5);
}

.bg-coral-10 {
	background-color: hsl(var(--coral) / 0.1);
}

.bg-coral-20 {
	background-color: hsl(var(--coral) / 0.2);
}

.bg-teal-10 {
	background-color: hsl(var(--teal) / 0.1);
}

.bg-teal-20 {
	background-color: hsl(var(--teal) / 0.2);
}

.bg-golden-10 {
	background-color: hsl(var(--golden) / 0.1);
}

.bg-golden-20 {
	background-color: hsl(var(--golden) / 0.2);
}

.bg-golden-5 {
	background-color: hsl(var(--golden) / 0.05);
}

.bg-lavender-10 {
	background-color: hsl(var(--lavender) / 0.1);
}

.bg-background-80 {
	background-color: hsl(var(--background) / 0.8);
}

.bg-white-90 {
	background-color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-warm {
	background: var(--gradient-warm);
}

.bg-gradient-cool {
	background: var(--gradient-cool);
}

.text-gradient-warm {
	background: var(--gradient-warm);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.text-gradient-cool {
	background-image: var(--gradient-cool);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Borders */
.border {
	border-width: 1px;
	border-style: solid;

}

.border-2 {
	border-width: 2px;
}

.border-t {
	border-top-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-border {
	border-color: hsl(var(--border));
}

.border-border-50 {
	border-color: hsl(var(--border) / 0.5);
}

.border-coral {
	border-color: hsl(var(--coral));
}

.rounded-full {
	border-radius: 9999px;
}

.rounded-3xl {
	border-radius: 1.5rem;
}

.rounded-2xl {
	border-radius: 1rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.rounded-lg {
	border-radius: 0.5rem;
}

.shadow-card {
	box-shadow: 0 4px 20px -4px rgba(31, 26, 23, 0.1);
}

.shadow-card-hover {
	box-shadow: 0 12px 40px -8px rgba(31, 26, 23, 0.15);
}

.shadow-lg {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glow-coral {
	box-shadow: var(--shadow-glow-coral);
}

.glow-teal {
	box-shadow: var(--shadow-glow-teal);
}

/* Effects */
.backdrop-blur-md {
	backdrop-filter: blur(12px);
}

.opacity-90 {
	opacity: 0.9;
}

.opacity-60 {
	opacity: 0.6;
}

.opacity-20 {
	opacity: 0.2;
}

/* Positioning */
.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed {
	position: fixed;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.top-0 {
	top: 0;
}

.left-0 {
	left: 0;
}

.right-0 {
	right: 0;
}

.z-50 {
	z-index: 50;
}

.z-20 {
	z-index: 20;
}

.z-10 {
	z-index: 10;
}

/* Sizing */
.w-full {
	width: 100%;
}

.w-64 {
	width: 16rem;
}

.w-80 {
	width: 20rem;
}

.w-96 {
	width: 24rem;
}

.w-32 {
	width: 8rem;
}

.w-16 {
	width: 4rem;
}

.w-14 {
	width: 3.5rem;
}

.w-12 {
	width: 3rem;
}

.w-10 {
	width: 2.5rem;
}

.w-8 {
	width: 2rem;
}

.w-7 {
	width: 1.75rem;
}

.w-6 {
	width: 1.5rem;
}

.w-5 {
	width: 1.25rem;
}

.w-4 {
	width: 1rem;
}

.h-32 {
	height: 8rem;
}

.h-20 {
	height: 5rem;
}

.h-16 {
	height: 4rem;
}

.h-14 {
	height: 3.5rem;
}

.h-12 {
	height: 3rem;
}

.h-10 {
	height: 2.5rem;
}

.h-6 {
	height: 1.5rem;
}

.h-5 {
	height: 1.25rem;
}

.h-4 {
	height: 1rem;
}

.h-0\.5 {
	height: 0.125rem;
}

/* Transforms */
.scale-90 {
	transform: scale(0.9);
}

.scale-110 {
	transform: scale(1.1);
}

.-translate-y-1 {
	transform: translateY(-0.25rem);
}

.-translate-x-1\/2 {
	transform: translateX(-50%);
}

.-translate-y-1\/2 {
	transform: translateY(-50%);
}

/* Transitions */
.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-colors {
	transition-property: color, background-color, border-color;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-300 {
	transition-duration: 300ms;
}

/* Hover States */
.hover\:bg-white:hover {
	background-color: #fff;
}

.hover\:text-foreground:hover {
	color: hsl(var(--foreground));
}

.hover\:shadow-card-hover:hover {
	box-shadow: var(--shadow-card-hover);
}

.hover\:-translate-y-1:hover {
	transform: translateY(-0.25rem);
}

.hover\:opacity-100:hover {
	opacity: 1;
}

.hover\:scale-105:hover {
	transform: scale(1.05);
}

.hover\:scale-110:hover {
	transform: scale(1.1);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
	text-decoration: none;
}

.btn:focus-visible {
	outline: 2px solid hsl(var(--ring));
	outline-offset: 2px;
}

.btn-hero {
	background: var(--gradient-warm);
	color: hsl(var(--primary-foreground));
	font-weight: 600;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	box-shadow: var(--shadow-glow-coral);
}

.btn-hero:hover {
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	transform: scale(1.05);
}

.btn-hero-outline {
	border: 2px solid hsl(var(--primary));
	background-color: transparent;
	color: hsl(var(--primary));
	font-weight: 600;
}

.btn-hero-outline:hover {
	background-color: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
}

.btn-lg {
	height: 3rem;
	border-radius: 0.75rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: 1rem;
}

.btn-xl {
	height: 3.5rem;
	border-radius: 0.75rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	font-size: 1.125rem;
}

.btn svg {
	width: 1.25rem;
	height: 1.25rem;
	pointer-events: none;
	flex-shrink: 0;
}

/* Form Elements */
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	border: 1px solid hsl(var(--border));
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
	font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
	outline: 2px solid hsl(var(--ring) / 0.5);
	outline-offset: 2px;
	border-color: hsl(var(--ring));
}

textarea {
	resize: none;
}

label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: hsl(var(--foreground));
}

.space-y-6 > * + * {
	margin-top: 1.5rem;
}

.space-y-3 > * + * {
	margin-top: 0.75rem;
}

/* Utilities */
.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

.hidden {
	display: none;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.overflow-hidden {
	overflow: hidden;
}

.object-cover {
	object-fit: cover;
}

.block {
	display: block;
}

.order-first {
	order: -9999;
}

.order-last {
	order: 9999;
}

.blur-3xl {
	filter: blur(64px);
}

.left-10 {
	left: 2.5rem;
}

.right-10 {
	right: 2.5rem;
}

.top-20 {
	top: 5rem;
}

.bottom-20 {
	bottom: 5rem;
}

.top-1\/2 {
	top: 50%;
}

.left-1\/2 {
	left: 50%;
}

.left-2 {
	left: 0.5rem;
}

.right-2 {
	right: 0.5rem;
}

.top-16 {
	top: 4rem;
}

.left-\[60\%\] {
	left: 60%;
}

/* Animations */
@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(3deg);
	}
}

@keyframes float-delayed {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(-2deg);
	}
}

@keyframes pulse-soft {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fade-in 0.6s ease-out forwards;
}

.animate-pulse-soft {
	animation: pulse-soft 3s ease-in-out infinite;
}

.animate-float {
	animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
	animation: float-delayed 5s ease-in-out infinite;
	animation-delay: 1s;
}

/* Group Hover */
.group:hover .group-hover\:scale-110 {
	transform: scale(1.1);
}

/* Fill */
.fill-golden {
	fill: hsl(var(--golden));
}

/* Site Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: hsl(var(--background) / 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid hsl(var(--border));
}

.site-header a {
	text-decoration: none;
}

/* Menu Styles */
.desktop-nav {
	display: none;
}

@media (min-width: 768px) {
	.desktop-nav {
		display: flex;
	}
}

.primary-menu-items {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu-items li {
	margin: 0;
	padding: 0;
}

.primary-menu-items a {
	text-decoration: none;
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.15s;
}

.primary-menu-items a:hover {
	color: hsl(var(--foreground));
}

/* Site Footer */
.site-footer {
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	background-color: hsl(var(--card));
	border-top: 1px solid hsl(var(--border));
}

.site-footer a {
    text-decoration: none;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
}

@media (max-width: 767px) {
	.mobile-menu.active {
		display: block;
	}
}

/* WooCommerce Cart & Checkout Styling */
.woocommerce-cart .quantity input[type="number"],
.woocommerce-checkout .quantity input[type="number"] {
	width: 60px;
	padding: 0.5rem;
	text-align: center;
	border: 1px solid hsl(var(--border));
	border-radius: 0.5rem;
	background-color: hsl(var(--background));
	color: hsl(var(--foreground));
}

.woocommerce-cart-form__cart-item a {
	text-decoration: none;
	color: hsl(var(--foreground));
	transition: color 0.2s;
}

.woocommerce-cart-form__cart-item a:hover {
	color: hsl(var(--primary));
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
	background: var(--gradient-warm);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 0.75rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.woocommerce .cart .button:hover {
	transform: scale(1.05);
}

.woocommerce-cart .wc-proceed-to-checkout .button {
	width: 100%;
	background: var(--gradient-warm);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.woocommerce-cart .wc-proceed-to-checkout .button:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Richt je op de specifieke container */
.custom-cart-totals .checkout-button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: #f29d38 !important; /* De oranje kleur uit je screenshot */
    color: white !important;
    padding: 1rem !important;
    border-radius: 0.75rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.custom-cart-totals .checkout-button:hover {
    filter: brightness(1.1);
}

/* Verberg de standaard 'Update' knop die WooCommerce soms forceert */
button[name="update_cart"] {
    display: none !important;
}

/* De afrekenknop minder breed en rechts uitgelijnd */
.custom-cart-totals .checkout-button {
    display: inline-block !important; /* Veranderd van block naar inline-block */
    width: auto !important;           /* Geen volledige breedte meer */
    min-width: 250px;                 /* Optioneel: minimale breedte voor een mooie vorm */
    float: right;                     /* Druk de knop naar de rechterkant */
    margin-top: 1.5rem;
    padding: 1rem 2rem !important;
}

/* Zorg dat de container de 'float' van de knop goed afhandelt */
.custom-cart-totals::after {
    content: "";
    clear: both;
    display: table;
}

/* Maak de rechter container compact */
.custom-cart-totals {
    max-width: 100%;
}

/* Verwijder de standaard tabelkoppen in de totalen voor een cleaner uiterlijk */
.custom-cart-totals .shop_table tr th {
    font-weight: normal;
    color: #666;
}

.custom-cart-totals .shop_table tr.order-total th, 
.custom-cart-totals .shop_table tr.order-total td {
    font-weight: bold;
    font-size: 1.25rem;
    padding-top: 15px;
}

/* De knop 'Afrekenen' stylen naar de volledige breedte van de kleine box */
.custom-cart-totals .checkout-button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background: #f29d38 !important; /* Pas dit aan naar je exacte oranje kleur */
    color: white !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    margin-top: 20px !important;
    transition: transform 0.2s ease;
}

.custom-cart-totals .checkout-button:hover {
    transform: scale(1.02);
}

/* Verberg de extra 'Totaal' titel die WooCommerce soms genereert binnen de functie */
.cart_totals h2 {
    display: none;
}

/* Styling voor de checkout button in de sidebar */
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    margin-top: 1.5rem;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #f29d38 !important;
    color: white !important;
    text-align: center;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
    background: #e08a25 !important;
    transform: scale(1.02);
}

/* Totalen styling */
.woocommerce-cart .cart_totals table {
    width: 100%;
    margin-bottom: 0.5rem;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 0.5rem 0;
    border: none;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* ===== CHECKOUT PAGINA STYLING ===== */

/* Formulier velden styling */
.woocommerce-checkout .form-row {
    margin-bottom: 1rem;
}

.woocommerce-checkout .form-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.woocommerce-checkout .form-row .required {
    color: hsl(var(--coral));
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: all 0.2s;
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout input[type="number"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: hsl(var(--coral));
    box-shadow: 0 0 0 3px hsl(var(--coral) / 0.1);
}

/* Selecteer een andere verzendadres checkbox */
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.woocommerce-checkout input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

/* Grid layout voor formulier velden */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last {
        grid-column: span 1;
    }
    
    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .woocommerce-checkout .form-row-wide {
        grid-column: span 2;
    }
}

/* Bestelling overzicht in sidebar */
.woocommerce-checkout-review-order {
    margin-top: 0;
}

/* Product afbeeldingen in bestelling overzicht */
.woocommerce-checkout-review-order-table .product-name {
    display: block;
}

.woocommerce-checkout-review-order-table .product-name .checkout-product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid hsl(var(--border));
    flex-shrink: 0;
}

.woocommerce-checkout-review-order-table {
    width: 100%;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout-review-order-table thead {
    border-bottom: 1px solid hsl(var(--border));
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 0.75rem 0;
    text-align: left;
    border: none;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce-checkout-review-order-table .cart-subtotal th,
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .shipping th,
.woocommerce-checkout-review-order-table .shipping td {
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 2px solid hsl(var(--border));
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 500;
}

.woocommerce-checkout-review-order-table .product-name .product-quantity {
    font-weight: 400;
    color: hsl(var(--muted-foreground));
}

.woocommerce-checkout-review-order-table .product-total {
    font-weight: 600;
    text-align: right;
}

/* Verzendmethoden */
.woocommerce-checkout #shipping_method {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.woocommerce-checkout #shipping_method li {
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}

.woocommerce-checkout #shipping_method li:hover {
    border-color: hsl(var(--coral));
    background-color: hsl(var(--coral) / 0.05);
}

.woocommerce-checkout #shipping_method input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.woocommerce-checkout #shipping_method label {
    cursor: pointer;
    margin: 0;
    flex: 1;
}

/* Betaalmethoden */
.woocommerce-checkout-payment {
    background-color: hsl(var(--muted) / 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.woocommerce-checkout-payment > p:first-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.woocommerce-checkout-payment > p:first-child::before {
    content: "Betaalmethode";
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.woocommerce-checkout .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.woocommerce-checkout .payment_methods li {
    padding: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    background-color: white;
    transition: all 0.2s;
}

.woocommerce-checkout .payment_methods li:hover {
    border-color: hsl(var(--coral));
}

.woocommerce-checkout .payment_methods li.wc_payment_method input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.woocommerce-checkout .payment_methods li label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
}

.woocommerce-checkout .payment_methods li label img {
    margin-left: 0.5rem;
}

.woocommerce-checkout .payment_box {
    background-color: hsl(var(--muted) / 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

/* Plaats bestelling button */
.woocommerce-checkout #place_order {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, hsl(15 85% 60%), hsl(45 90% 55%));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout #place_order:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Privacy policy tekst */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: hsl(var(--coral));
    text-decoration: underline;
}

/* Algemene voorwaarden checkbox */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 0.875rem;
}

/* Error berichten */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-error {
    background-color: hsl(var(--destructive) / 0.1);
    border: 1px solid hsl(var(--destructive));
    color: hsl(var(--destructive));
}

.woocommerce-checkout .woocommerce-message {
    background-color: hsl(var(--teal) / 0.1);
    border: 1px solid hsl(var(--teal));
    color: hsl(var(--teal));
}

/* Coupon code sectie */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon {
    padding: 1.5rem;
    background-color: hsl(var(--muted) / 0.3);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon p {
    margin-bottom: 1rem;
}

.woocommerce-checkout .woocommerce-form-coupon input[type="text"] {
    display: inline-block;
    width: auto;
    min-width: 200px;
    margin-right: 0.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon button {
    padding: 0.75rem 1.5rem;
    background: hsl(var(--coral));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.woocommerce-checkout .woocommerce-form-coupon button:hover {
    background: hsl(var(--coral) / 0.9);
}