.qfb-booking-wrap {
	max-width: 980px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #16161F;
}

.qfb-booking-wrap * {
	box-sizing: border-box;
}

.qfb-card {
	display: flex;
	background: #FFFFFF;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	overflow: hidden;
	min-height: 480px;
}

/* Sidebar */
.qfb-sidebar {
	width: 220px;
	flex: 0 0 220px;
	background: #F4F1EA;
	border-right: 1px solid #DAD5C8;
	padding: 20px 14px;
}

.qfb-steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

.qfb-step {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 500;
	color: #3A3A45;
	cursor: pointer;
	background: transparent;
	transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.qfb-step:hover {
	background: rgba(22, 22, 31, 0.05);
}

.qfb-step.is-active {
	background: #FFFFFF;
	color: #16161F;
	box-shadow: 0 2px 8px rgba(22, 22, 31, 0.12);
}

.qfb-step-icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	border-radius: 50%;
	background: #16161F;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.qfb-step.is-active .qfb-step-icon {
	transform: scale(1.08);
}

.qfb-step-icon svg {
	width: 14px;
	height: 14px;
}

/* Main panel */
.qfb-panel {
	flex: 1 1 auto;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.qfb-panel-viewport {
	flex: 1 1 auto;
	position: relative;
}

.qfb-panel-step {
	display: none;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.qfb-panel-step.is-active {
	display: block;
}

.qfb-panel-step.is-active.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.qfb-panel-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	text-align: center;
	margin: 0 0 24px;
	color: #16161F;
}

.qfb-panel-subtitle {
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	margin: 20px 0 12px;
	color: #16161F;
}

.qfb-panel-subtitle:first-of-type {
	margin-top: 0;
}

/* Category pills */
.qfb-category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.qfb-pill {
	position: relative;
	background: #FFFFFF;
	border: 1px solid #DAD5C8;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 14px;
	color: #16161F;
	cursor: pointer;
	transition: border-color 0.15s ease, transform 0.1s ease;
}

.qfb-pill:hover {
	border-color: #16161F;
}

.qfb-pill:active {
	transform: scale(0.96);
}

.qfb-pill-check {
	display: none;
	position: absolute;
	top: -6px;
	right: -6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #16161F;
	color: #F4F1EA;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
	transform: scale(0);
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qfb-pill.is-active {
	border: 2px solid #16161F;
	font-weight: 600;
}

.qfb-pill.is-active .qfb-pill-check {
	display: block;
	transform: scale(1);
}

/* Service cards */
.qfb-hint {
	color: #3A3A45;
	font-size: 13px;
	margin: 0;
}

.qfb-service-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: start;
	gap: 14px;
	margin-bottom: 16px;
}

/* Only the "Alle" view (224 cards) is capped and made scrollable - a single
   model's list (max 8 cards) is short enough to just show in full. */
.qfb-service-cards.qfb-service-cards--capped {
	max-height: 480px;
	overflow-y: auto;
	padding-right: 6px;
}

@keyframes qfbCardIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.qfb-service-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 14px;
	cursor: pointer;
	background: #FFFFFF;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
	animation: qfbCardIn 0.25s ease both;
}

.qfb-service-card:hover {
	border-color: #16161F;
}

.qfb-service-card.is-pop {
	transform: scale(0.97);
}

.qfb-service-card.is-selected {
	border: 2px solid #16161F;
	background: #F4F1EA;
}

.qfb-card-check {
	position: absolute;
	top: -7px;
	right: -7px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #16161F;
	color: #F4F1EA;
	font-size: 11px;
	line-height: 18px;
	text-align: center;
	transform: scale(0);
	transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qfb-service-card.is-selected .qfb-card-check {
	transform: scale(1);
}

.qfb-service-icon {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	border: 1px solid #DAD5C8;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
}

.qfb-service-icon svg {
	width: 18px;
	height: 18px;
}

.qfb-service-body {
	flex: 1 1 auto;
	min-width: 0;
}

.qfb-service-name {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 6px;
	color: #16161F;
}

.qfb-service-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #3A3A45;
}

.qfb-service-price {
	background: #16161F;
	color: #F4F1EA;
	font-weight: 600;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 6px;
	white-space: nowrap;
}

.qfb-savings-badge {
	background: #2F6E4F;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 6px;
	white-space: nowrap;
}

.qfb-service-card--other {
	border-style: dashed;
	background: #F4F1EA;
}

.qfb-service-card--other .qfb-service-meta {
	color: #3A3A45;
	font-size: 12px;
}

.qfb-other-box {
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	background: #FFFFFF;
}

.qfb-other-text {
	color: #3A3A45;
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 14px;
}

/* Brand selection (step 0) */
.qfb-brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.qfb-brand-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px 16px;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	background: #FFFFFF;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.qfb-brand-card svg {
	width: 32px;
	height: 32px;
}

.qfb-brand-card span {
	font-size: 14px;
	font-weight: 600;
	color: #16161F;
}

.qfb-brand-card:hover {
	border-color: #16161F;
}

.qfb-brand-card:active {
	transform: scale(0.97);
}

.qfb-brand-card.is-active {
	border: 2px solid #16161F;
	background: #F4F1EA;
}

/* "Too long to book online" call-out */
.qfb-toolong-box {
	display: none;
	align-items: flex-start;
	gap: 16px;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 20px;
	margin-top: 16px;
	background: #F4F1EA;
}

.qfb-toolong-icon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #16161F;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qfb-toolong-icon svg {
	width: 18px;
	height: 18px;
}

.qfb-toolong-content {
	flex: 1 1 auto;
	min-width: 0;
}

.qfb-toolong-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 16px;
	font-weight: 700;
	color: #16161F;
	margin: 0 0 6px;
}

.qfb-toolong-text {
	font-size: 14px;
	color: #3A3A45;
	line-height: 1.5;
	margin: 0 0 14px;
}

.qfb-btn-toolong {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.qfb-btn-toolong svg {
	width: 16px;
	height: 16px;
}

/* Subtotal + add-to-booking */
.qfb-subtotal-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	background: #F4F1EA;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 16px;
}

.qfb-subtotal-label {
	font-size: 14px;
	color: #3A3A45;
	margin-right: 8px;
}

#qfb-subtotal-price {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	font-weight: 700;
	color: #16161F;
}

.qfb-btn-add {
	padding: 10px 18px;
	font-size: 14px;
}

/* Cart */
.qfb-cart {
	border-top: 1px solid #DAD5C8;
	padding-top: 16px;
	margin-top: 4px;
}

.qfb-cart-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 14px;
}

@keyframes qfbCartItemIn {
	from { opacity: 0; transform: translateX(-8px); }
	to   { opacity: 1; transform: translateX(0); }
}

.qfb-cart-item {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 10px 14px;
	background: #FFFFFF;
	animation: qfbCartItemIn 0.2s ease both;
}

.qfb-cart-item-info {
	flex: 1 1 auto;
	min-width: 0;
}

.qfb-cart-item-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 2px;
	color: #16161F;
}

.qfb-cart-item-services {
	font-size: 12px;
	color: #3A3A45;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.qfb-cart-item-price {
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}

.qfb-cart-remove {
	background: transparent;
	border: 1px solid #DAD5C8;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	line-height: 1;
	font-size: 16px;
	color: #3A3A45;
	cursor: pointer;
	flex: 0 0 26px;
	transition: background 0.15s ease, color 0.15s ease;
}

.qfb-cart-remove:hover {
	background: #16161F;
	color: #F4F1EA;
}

.qfb-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	background: #F4F1EA;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 14px 16px;
}

.qfb-total-row > div {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.qfb-total-row span:first-child {
	font-size: 13px;
	color: #3A3A45;
}

#qfb-total-price {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	font-weight: 700;
	color: #16161F;
}

.qfb-total-duration span:last-child {
	font-weight: 600;
	color: #16161F;
}

/* Date & time step */
.qfb-datetime-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 20px;
}

.qfb-calendar {
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 16px;
}

.qfb-calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	font-weight: 600;
}

.qfb-cal-month {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 15px;
	text-transform: capitalize;
}

.qfb-cal-nav {
	background: #F4F1EA;
	border: 1px solid #DAD5C8;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.qfb-cal-nav:hover {
	background: #DAD5C8;
}

.qfb-cal-weekdays,
.qfb-cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.qfb-cal-weekdays span {
	font-size: 11px;
	color: #3A3A45;
	text-transform: uppercase;
	padding-bottom: 6px;
}

.qfb-cal-day {
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 8px 0;
	font-size: 13px;
	color: #16161F;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease, color 0.15s ease;
}

.qfb-cal-day:hover:not(:disabled) {
	background: rgba(22, 22, 31, 0.08);
}

.qfb-cal-day:active:not(:disabled) {
	transform: scale(0.92);
}

.qfb-cal-day.is-muted {
	color: #C9C4B6;
}

.qfb-cal-day.is-disabled {
	color: #DAD5C8;
	cursor: not-allowed;
}

.qfb-cal-day.is-selected {
	background: #16161F;
	color: #F4F1EA;
	font-weight: 700;
}

.qfb-time-panel {
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
}

.qfb-time-heading {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 15px;
	margin: 0 0 12px;
}

.qfb-time-slots {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 280px;
	overflow-y: auto;
	padding-right: 4px;
}

.qfb-time-slot {
	background: #FFFFFF;
	border: 1px solid #DAD5C8;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	color: #16161F;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}

.qfb-time-slot:hover {
	border-color: #16161F;
}

.qfb-time-slot-window {
	padding: 16px 14px;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	background: #F4F1EA;
}

.qfb-time-slot-window strong {
	font-family: Georgia, 'Times New Roman', serif;
}

.qfb-time-slot:active {
	transform: scale(0.97);
}

.qfb-time-slot.is-selected {
	background: #16161F;
	border-color: #16161F;
	color: #F4F1EA;
	font-weight: 600;
}

/* Form fields (steps 2 & 3) */
.qfb-field {
	margin-bottom: 18px;
}

.qfb-field-row {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.qfb-field-row .qfb-field {
	flex: 1 1 220px;
}

.qfb-panel label {
	display: block;
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 600;
	font-size: 15px;
	color: #16161F;
	margin-bottom: 6px;
}

.qfb-panel select,
.qfb-panel input[type="text"],
.qfb-panel input[type="email"],
.qfb-panel input[type="tel"] {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	background: #FFFFFF;
	color: #16161F;
	font-size: 15px;
	font-family: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.qfb-panel select:focus,
.qfb-panel input:focus {
	outline: none;
	border-color: #16161F;
	box-shadow: 0 0 0 3px rgba(22, 22, 31, 0.08);
}

.qfb-message {
	font-size: 14px;
	color: #B3261E;
	margin-top: -6px;
	margin-bottom: 12px;
}

/* Oversigt / summary */
.qfb-summary-illustration {
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
}

.qfb-summary-illustration svg {
	width: 72px;
	height: 72px;
	animation: qfbPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes qfbPopIn {
	from { opacity: 0; transform: scale(0.6); }
	to   { opacity: 1; transform: scale(1); }
}

.qfb-summary {
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	background: #F4F1EA;
	padding: 18px 20px;
	margin-bottom: 16px;
}

.qfb-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #DAD5C8;
	font-size: 14px;
	color: #3A3A45;
}

.qfb-summary-row:last-child {
	border-bottom: none;
}

.qfb-summary-row strong {
	color: #16161F;
	text-align: right;
}

.qfb-summary-total {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 18px;
	font-weight: 700;
	color: #16161F;
}

.qfb-arrival-note {
	background: #F4F1EA;
	border: 1px solid #DAD5C8;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 14px;
	color: #3A3A45;
	margin: 0 0 18px;
}

.qfb-panel textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #DAD5C8;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	color: #16161F;
	background: #FFFFFF;
	resize: vertical;
}

.qfb-panel textarea:focus {
	outline: none;
	border-color: #16161F;
	box-shadow: 0 0 0 3px rgba(22, 22, 31, 0.08);
}

.qfb-discount-box {
	border: 1px dashed #DAD5C8;
	border-radius: 10px;
	padding: 14px 16px;
	margin-bottom: 16px;
}

.qfb-discount-box label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #16161F;
	margin-bottom: 8px;
}

.qfb-discount-row {
	display: flex;
	gap: 8px;
}

.qfb-discount-row input {
	flex: 1 1 auto;
	text-transform: uppercase;
}

.qfb-discount-row .qfb-btn {
	flex: 0 0 auto;
	padding: 10px 18px;
	font-size: 14px;
}

.qfb-discount-message {
	font-size: 13px;
	margin: 8px 0 0;
	display: none;
}

.qfb-discount-message.is-ok {
	display: block;
	color: #1B5A4A;
}

.qfb-discount-message.is-error {
	display: block;
	color: #B3261E;
}

.qfb-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: #3A3A45;
	line-height: 1.5;
	margin-bottom: 16px;
	cursor: pointer;
}

.qfb-checkbox-label input {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex: 0 0 auto;
}

.qfb-checkbox-label a {
	color: #16161F;
	text-decoration: underline;
}

/* Buttons */
.qfb-btn {
	display: inline-block;
	background: #16161F;
	color: #F4F1EA;
	border: 1px solid #16161F;
	border-radius: 10px;
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.15s ease, transform 0.1s ease;
}

.qfb-btn:hover {
	opacity: 0.85;
	color: #F4F1EA;
}

.qfb-btn:active {
	transform: scale(0.97);
}

.qfb-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.qfb-btn-outline {
	background: transparent;
	color: #16161F;
}

.qfb-btn-outline:hover {
	color: #16161F;
}

.qfb-btn-contact {
	margin: 0 8px 0 0;
	padding: 10px 20px;
}

.qfb-panel-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #DAD5C8;
}

.qfb-response {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 15px;
	display: none;
}

.qfb-response.qfb-success {
	display: block;
	background: #E4EFE3;
	border: 1px solid #7FA97C;
	color: #1E3A1E;
	animation: qfbPopIn 0.3s ease both;
}

.qfb-response.qfb-error {
	display: block;
	background: #F6E3E1;
	border: 1px solid #C97A70;
	color: #5A1F19;
}

/* Responsive */
@media (max-width: 720px) {
	.qfb-card {
		flex-direction: column;
	}

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

	.qfb-toolong-box {
		flex-direction: column;
	}

	.qfb-sidebar {
		width: 100%;
		flex: none;
		border-right: none;
		border-bottom: 1px solid #DAD5C8;
	}

	.qfb-steps {
		display: flex;
		gap: 8px;
		overflow-x: auto;
	}

	.qfb-step {
		flex: 0 0 auto;
		margin-bottom: 0;
		white-space: nowrap;
	}

	.qfb-panel {
		padding: 20px;
	}

	.qfb-service-cards {
		grid-template-columns: 1fr;
		max-height: none;
	}

	.qfb-datetime-grid {
		grid-template-columns: 1fr;
	}

	.qfb-panel-title {
		font-size: 22px;
	}
}
