/* =========================================================================
   B-TECH Booking — frontend
   Designsprog fra forsiden: Satoshi/Inter, ink/steel/surf/mist-paletten.
   ========================================================================= */

:root {
	--btb-ink: #14212b;
	--btb-steel: #305668;
	--btb-steel-deep: #264655;
	--btb-surf: #6e97ab;
	--btb-mist: #dde8ed;
	--btb-paper: #f4f7f8;
	--btb-line: #cdd9df;
	--btb-muted: #51636f;
	--btb-white: #ffffff;
	--btb-ease: cubic-bezier(.16, 1, .3, 1);
}

.btb-page {
	font-family: "Inter", system-ui, sans-serif;
	color: var(--btb-ink);
	background: var(--btb-paper);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.btb-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 44px);
}

.btb-page h1,
.btb-page h2,
.btb-page h3 {
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.08;
	margin: 0;
}

.btb-eyebrow {
	font-size: .74rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--btb-surf);
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 6px;
}

.btb-eyebrow::before {
	content: "";
	width: 26px;
	height: 1px;
	background: var(--btb-surf);
	flex: none;
}

/* ---------- Sidehoved ---------- */

.btb-hero {
	position: relative;
	background: linear-gradient(150deg, #1c3543, #0f1c25);
	color: #fff;
	padding: clamp(96px, 11vw, 130px) 0 clamp(52px, 6vw, 78px);
	overflow: hidden;
}

.btb-hero-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: clamp(36px, 4.5vw, 64px);
	line-height: 0;
	color: var(--btb-paper);
	pointer-events: none;
}

.btb-hero-wave svg { width: 100%; height: 100%; display: block; }

.btb-crumb {
	font-size: .78rem;
	color: rgba(255, 255, 255, .55);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.btb-crumb a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.btb-crumb a:hover { color: #fff; }
.btb-crumb span:last-child { color: rgba(255, 255, 255, .9); }

.btb-hero h1 {
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	max-width: 22ch;
	margin: 12px 0 16px;
	color: #fff;
}

.btb-lead {
	color: rgba(255, 255, 255, .82);
	max-width: 56ch;
	font-size: clamp(.96rem, 1.1vw, 1.08rem);
	margin: 0;
}

/* ---------- Beskeder (WooCommerce notices) ---------- */

.btb-notices { padding-top: 24px; }
.btb-notices:empty { display: none; }

.btb-notices .woocommerce-error,
.btb-notices .woocommerce-message,
.btb-notices .woocommerce-info {
	list-style: none;
	margin: 0 0 8px;
	padding: 14px 18px;
	border-radius: 12px;
	border: 1px solid var(--btb-line);
	background: var(--btb-white);
	color: var(--btb-ink);
	font-size: .92rem;
}

.btb-notices .woocommerce-error { border-color: #d9a49a; background: #faf1ef; color: #7c3325; }
.btb-notices .woocommerce-error li { margin: 0; }

/* ---------- Layout ---------- */

.btb-layout {
	display: grid;
	grid-template-columns: 1fr minmax(380px, 460px);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
	padding-top: clamp(40px, 6vw, 72px);
	padding-bottom: clamp(56px, 8vw, 100px);
}

/* ---------- Venstre kolonne ---------- */

.btb-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .68rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--btb-steel);
	background: var(--btb-mist);
	border-radius: 100px;
	padding: 8px 16px;
	margin-bottom: 18px;
	font-weight: 500;
}

.btb-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--btb-steel); }

/* Produktgalleri */

.btb-gallery { margin-bottom: 22px; }

.btb-gallery-main {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--btb-line);
	background: var(--btb-white);
	box-shadow: 0 26px 50px -34px rgba(20, 33, 43, .35);
}

.btb-gallery-main img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 460px;
	object-fit: cover;
}

.btb-gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.btb-gallery-thumb {
	width: 72px;
	height: 72px;
	padding: 0;
	border: 2px solid var(--btb-line);
	border-radius: 12px;
	overflow: hidden;
	background: var(--btb-white);
	cursor: pointer;
	transition: border-color .3s var(--btb-ease), transform .3s var(--btb-ease);
}

.btb-gallery-thumb:hover { border-color: var(--btb-surf); transform: translateY(-2px); }
.btb-gallery-thumb.is-active { border-color: var(--btb-ink); }

.btb-gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btb-panel {
	background: var(--btb-white);
	border: 1px solid var(--btb-line);
	border-radius: 18px;
	padding: clamp(24px, 3vw, 36px);
	margin-bottom: 22px;
}

.btb-panel h2 { font-size: 1.35rem; margin-bottom: 18px; }

.btb-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.btb-checklist li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: var(--btb-muted);
	font-size: .97rem;
}

.btb-checklist svg {
	width: 20px;
	height: 20px;
	color: var(--btb-steel);
	flex: none;
	margin-top: 2px;
}

.btb-description p { color: var(--btb-muted); margin: 0 0 14px; }
.btb-description p:last-child { margin-bottom: 0; }

.btb-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: btb-step;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btb-steps li {
	counter-increment: btb-step;
	position: relative;
	padding-left: 52px;
}

.btb-steps li::before {
	content: counter(btb-step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 2px;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: .06em;
	color: var(--btb-steel);
	background: var(--btb-mist);
	border-radius: 10px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btb-steps strong {
	display: block;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.02rem;
	margin-bottom: 3px;
}

.btb-steps span { color: var(--btb-muted); font-size: .93rem; }

/* Indleverings-note i "Sådan foregår det" */

.btb-how-note {
	margin-top: 22px;
	padding: 14px 16px;
	background: var(--btb-mist);
	border-radius: 12px;
	font-size: .88rem;
	line-height: 1.55;
	color: var(--btb-steel-deep);
}

.btb-how-note strong {
	display: block;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .92rem;
	margin-bottom: 4px;
	color: var(--btb-ink);
}

.btb-how-note p { margin: 0; }

.btb-how-note__doubt {
	margin-top: 8px !important;
	color: var(--btb-muted);
	font-size: .84rem;
}

/* Download af indleveringsguide (PDF) */

.btb-pdf-link {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 14px;
	padding: 14px 16px;
	background: var(--btb-white);
	border: 1px solid var(--btb-line);
	border-radius: 12px;
	text-decoration: none;
	color: var(--btb-ink);
	transition: border-color .3s var(--btb-ease), transform .3s var(--btb-ease), box-shadow .3s var(--btb-ease);
}

.btb-pdf-link:hover {
	border-color: var(--btb-surf);
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -22px rgba(20, 33, 43, .45);
}

.btb-pdf-link .ico {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--btb-mist);
	color: var(--btb-steel);
	display: flex;
	align-items: center;
	justify-content: center;
}

.btb-pdf-link .ico svg { width: 20px; height: 20px; }

.btb-pdf-link .txt { flex: 1; min-width: 0; }

.btb-pdf-link .txt strong {
	display: block;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .95rem;
}

.btb-pdf-link .txt span {
	display: block;
	color: var(--btb-muted);
	font-size: .84rem;
	margin-top: 1px;
}

.btb-pdf-link .dl { flex: none; color: var(--btb-steel); display: flex; }

.btb-pdf-link .dl svg { width: 18px; height: 18px; transition: transform .3s var(--btb-ease); }

.btb-pdf-link:hover .dl svg { transform: translateY(2px); }

.btb-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.btb-trust .item {
	background: var(--btb-mist);
	border-radius: 14px;
	padding: 18px 20px;
}

.btb-trust .t {
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .95rem;
	margin-bottom: 4px;
}

.btb-trust p { color: var(--btb-muted); font-size: .85rem; margin: 0; }

/* ---------- Bookingkort ---------- */

.btb-booking-col { position: sticky; top: 96px; }

.btb-booking-card {
	background: var(--btb-white);
	border: 1px solid var(--btb-line);
	border-radius: 18px;
	padding: clamp(22px, 2.6vw, 30px);
	box-shadow: 0 26px 50px -34px rgba(20, 33, 43, .45);
}

.btb-card-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--btb-line);
}

.btb-card-head .price {
	font-family: "Satoshi", "Inter", sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.1;
}

.btb-card-head .price small {
	display: block;
	font-family: "Inter", sans-serif;
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--btb-muted);
	margin-bottom: 6px;
}

.btb-card-head .vat { font-size: .78rem; color: var(--btb-muted); padding-bottom: 6px; }

/* Trin (wizard: åbnes ét ad gangen) */

.btb-step {
	border: 1px solid var(--btb-line);
	border-radius: 14px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: border-color .3s var(--btb-ease), opacity .3s var(--btb-ease);
}

.btb-step.is-open { border-color: var(--btb-surf); }

.btb-step.is-locked { opacity: .5; }
.btb-step.is-locked .btb-step-head { cursor: default; }

.btb-step-head {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	border: none;
	background: transparent;
	padding: 14px 16px;
	cursor: pointer;
	text-align: left;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .98rem;
	color: var(--btb-ink);
}

.btb-step-head .num {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--btb-ink);
	color: #fff;
	font-size: .74rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	transition: background .3s var(--btb-ease);
}

.btb-step.is-locked .btb-step-head .num { background: var(--btb-muted); }
.btb-step.is-done .btb-step-head .num { background: var(--btb-steel); }

.btb-step-title { flex: none; }

.btb-step-title .opt {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	font-size: .78rem;
	color: var(--btb-muted);
}

.btb-step-val {
	flex: 1;
	min-width: 0;
	text-align: right;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: .8rem;
	color: var(--btb-steel);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btb-step-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .45s var(--btb-ease);
}

.btb-step.is-open .btb-step-body { grid-template-rows: 1fr; }

.btb-step-inner {
	overflow: hidden;
	min-height: 0;
	padding: 0 16px;
}

.btb-step.is-open .btb-step-inner { padding-bottom: 16px; }

/* Lille notifikation under et trin */

.btb-step-note {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0 0 12px;
	padding: 8px 12px;
	background: var(--btb-mist);
	border-radius: 10px;
	font-size: .8rem;
	line-height: 1.45;
	color: var(--btb-steel-deep);
}

.btb-step-note .i {
	flex: none;
	width: 16px;
	height: 16px;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--btb-steel);
	color: #fff;
	font-size: .64rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.btb-step-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 10px 22px;
	border: 1px solid var(--btb-line);
	border-radius: 100px;
	background: transparent;
	color: var(--btb-ink);
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .86rem;
	cursor: pointer;
	transition: background .3s var(--btb-ease), border-color .3s var(--btb-ease), color .3s var(--btb-ease);
}

.btb-step-next:hover { background: var(--btb-ink); border-color: var(--btb-ink); color: #fff; }

/* Antal */

.btb-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--btb-line);
	border-radius: 100px;
	overflow: hidden;
}

.btb-qty-btn {
	width: 42px;
	height: 42px;
	border: none;
	background: transparent;
	font-size: 1.2rem;
	color: var(--btb-steel);
	cursor: pointer;
	transition: background .25s var(--btb-ease);
}

.btb-qty-btn:hover { background: var(--btb-mist); }

.btb-qty input {
	width: 56px;
	border: none;
	text-align: center;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--btb-ink);
	background: transparent;
	-moz-appearance: textfield;
	appearance: textfield;
}

.btb-qty input::-webkit-outer-spin-button,
.btb-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Tilvalg */

.btb-addons { display: flex; flex-direction: column; gap: 10px; }

.btb-addon {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	border: 1px solid var(--btb-line);
	border-radius: 13px;
	padding: 13px 15px;
	cursor: pointer;
	transition: border-color .3s var(--btb-ease), background .3s var(--btb-ease);
}

.btb-addon:hover { border-color: var(--btb-surf); }

.btb-addon input { position: absolute; opacity: 0; pointer-events: none; }

.btb-addon .box {
	width: 21px;
	height: 21px;
	border: 1.5px solid var(--btb-line);
	border-radius: 6px;
	flex: none;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background .25s var(--btb-ease), border-color .25s var(--btb-ease);
}

.btb-addon .box svg { width: 12px; height: 12px; opacity: 0; transition: opacity .2s; }

.btb-addon input:checked ~ .box { background: var(--btb-ink); border-color: var(--btb-ink); }
.btb-addon input:checked ~ .box svg { opacity: 1; }

.btb-addon input:checked ~ .txt .l { color: var(--btb-ink); }

.btb-addon:has(input:checked) { border-color: var(--btb-ink); background: var(--btb-paper); }

.btb-addon .txt { flex: 1; min-width: 0; }
.btb-addon .l { display: block; font-weight: 600; font-size: .92rem; }
.btb-addon .d { display: block; font-size: .8rem; color: var(--btb-muted); margin-top: 2px; }

.btb-addon .p {
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .9rem;
	color: var(--btb-steel);
	white-space: nowrap;
	margin-top: 2px;
}

/* Kalender */

.btb-calendar { padding: 2px 0 0; }

.btb-cal-loading {
	text-align: center;
	color: var(--btb-muted);
	font-size: .88rem;
	padding: 22px 0;
}

.btb-cal-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.btb-cal-month {
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .98rem;
}

.btb-cal-arrow {
	width: 34px;
	height: 34px;
	border: 1px solid var(--btb-line);
	border-radius: 50%;
	background: transparent;
	color: var(--btb-steel);
	cursor: pointer;
	transition: background .25s var(--btb-ease), border-color .25s var(--btb-ease);
}

.btb-cal-arrow:hover:not(:disabled) { background: var(--btb-mist); border-color: var(--btb-surf); }
.btb-cal-arrow:disabled { opacity: .35; cursor: default; }

.btb-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.btb-cal-wd {
	text-align: center;
	font-size: .66rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--btb-muted);
	padding: 6px 0;
}

.btb-cal-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-size: .88rem;
	border: none;
	background: transparent;
	color: var(--btb-ink);
	position: relative;
}

button.btb-cal-day {
	cursor: pointer;
	background: var(--btb-mist);
	font-weight: 600;
	transition: background .25s var(--btb-ease), color .25s var(--btb-ease), transform .25s var(--btb-ease);
}

button.btb-cal-day:hover { background: var(--btb-surf); color: #fff; transform: translateY(-1px); }

.btb-cal-day.is-selected,
button.btb-cal-day.is-selected { background: var(--btb-ink); color: #fff; }

.btb-cal-day.is-closed,
.btb-cal-day.is-off,
.btb-cal-day.is-empty { color: var(--btb-line); }

.btb-cal-day.is-full { color: var(--btb-muted); text-decoration: line-through; opacity: .55; }

.btb-cal-legend {
	display: flex;
	gap: 16px;
	margin-top: 12px;
	font-size: .72rem;
	color: var(--btb-muted);
}

.btb-cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.btb-cal-legend .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.btb-cal-legend .dot.open { background: var(--btb-surf); }
.btb-cal-legend .dot.full { background: var(--btb-muted); opacity: .5; }
.btb-cal-legend .dot.closed { background: var(--btb-line); }

/* Tidsrum */

.btb-slots-hint { color: var(--btb-muted); font-size: .88rem; margin: 0; }

.btb-slot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
	gap: 8px;
}

.btb-slot {
	border: 1px solid var(--btb-line);
	border-radius: 11px;
	background: transparent;
	padding: 10px 6px;
	cursor: pointer;
	text-align: center;
	transition: border-color .25s var(--btb-ease), background .25s var(--btb-ease), transform .25s var(--btb-ease);
}

.btb-slot:hover:not(:disabled) { border-color: var(--btb-surf); transform: translateY(-1px); }

.btb-slot .t {
	display: block;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: .88rem;
	color: var(--btb-ink);
}

.btb-slot .a { display: block; font-size: .7rem; color: var(--btb-muted); margin-top: 2px; }

.btb-slot.is-selected { background: var(--btb-ink); border-color: var(--btb-ink); }
.btb-slot.is-selected .t, .btb-slot.is-selected .a { color: #fff; }

.btb-slot.is-full { opacity: .45; cursor: default; }
.btb-slot.is-full .t { text-decoration: line-through; }

/* Opsummering */

.btb-summary {
	background: var(--btb-paper);
	border: 1px solid var(--btb-line);
	border-radius: 14px;
	padding: 18px 20px;
	margin-bottom: 18px;
}

.btb-summary .row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 14px;
	font-size: .88rem;
	padding: 5px 0;
}

.btb-summary .row span { color: var(--btb-muted); flex: none; }
.btb-summary .row strong { text-align: right; font-weight: 600; }

.btb-summary .row.total {
	border-top: 1px solid var(--btb-line);
	margin-top: 8px;
	padding-top: 12px;
}

.btb-summary .row.total strong {
	font-family: "Satoshi", "Inter", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -.01em;
}

/* Knap (fra forsiden: pill med ikon) */

.btb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	min-height: 56px;
	padding: 0 26px;
	font-family: "Satoshi", "Inter", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	color: #fff;
	background: var(--btb-ink);
	border: 1px solid transparent;
	border-radius: 100px;
	cursor: pointer;
	text-decoration: none;
	transition: background .35s var(--btb-ease), color .35s var(--btb-ease), border-color .35s var(--btb-ease), opacity .3s;
}

.btb-btn .btb-btn-ico {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 50%;
	background: #fff;
	color: var(--btb-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .4s var(--btb-ease);
}

.btb-btn .btb-btn-ico svg { width: 15px; height: 15px; }

.btb-btn:hover:not(:disabled) { background: var(--btb-steel); color: #fff; }
.btb-btn:hover:not(:disabled) .btb-btn-ico { transform: translateX(4px); }

.btb-btn:disabled { opacity: .45; cursor: default; }

.btb-secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: .76rem;
	color: var(--btb-muted);
	margin: 14px 0 0;
	text-align: center;
}

.btb-secure svg { width: 15px; height: 15px; flex: none; color: var(--btb-steel); }

/* ---------- Andre pakker ---------- */

.btb-others {
	background: var(--btb-white);
	border-top: 1px solid var(--btb-line);
	padding: clamp(48px, 7vw, 88px) 0;
}

.btb-others h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 26px; }

.btb-others-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.btb-other {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--btb-paper);
	border: 1px solid var(--btb-line);
	border-radius: 16px;
	padding: 26px 24px;
	text-decoration: none;
	color: inherit;
	transition: transform .4s var(--btb-ease), border-color .3s var(--btb-ease), box-shadow .4s var(--btb-ease);
}

.btb-other:hover {
	transform: translateY(-5px);
	border-color: var(--btb-surf);
	box-shadow: 0 22px 44px -30px rgba(20, 33, 43, .5);
}

.btb-other .t { font-family: "Satoshi", "Inter", sans-serif; font-weight: 700; font-size: 1.12rem; }
.btb-other p { color: var(--btb-muted); font-size: .9rem; margin: 0; flex: 1; }

.btb-other .foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--btb-line);
	padding-top: 14px;
	margin-top: 6px;
}

.btb-other .pr { font-family: "Satoshi", "Inter", sans-serif; font-weight: 700; }
.btb-other .go { font-size: .8rem; color: var(--btb-steel); font-weight: 500; }

/* ---------- Shortcode: [btech_pakker] ---------- */

.btb-pk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	align-items: stretch;
	font-family: "Inter", system-ui, sans-serif;
}

.btb-pk {
	background: var(--btb-white);
	border: 1px solid var(--btb-line);
	border-radius: 18px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transition: transform .5s var(--btb-ease), box-shadow .5s var(--btb-ease);
}

.btb-pk:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -34px rgba(20, 33, 43, .5); }

.btb-pk.is-featured { background: var(--btb-ink); color: #fff; border-color: var(--btb-ink); }

.btb-pk-tag {
	font-size: .64rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--btb-surf);
	margin-bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btb-pk-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--btb-surf); }

.btb-pk h3 {
	font-family: "Satoshi", "Inter", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -.01em;
	margin: 0;
}

.btb-pk-desc { font-size: .92rem; color: var(--btb-muted); margin: 8px 0 20px; }
.btb-pk.is-featured .btb-pk-desc { color: rgba(255, 255, 255, .75); }

.btb-pk-price {
	font-family: "Satoshi", "Inter", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -.02em;
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--btb-line);
}

.btb-pk.is-featured .btb-pk-price { border-color: rgba(255, 255, 255, .16); }
.btb-pk.is-featured .btb-pk-price .woocommerce-Price-amount { color: #fff; }

.btb-pk-price small {
	font-family: "Inter", sans-serif;
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--btb-muted);
	display: block;
	font-weight: 500;
	margin-bottom: 6px;
}

.btb-pk.is-featured .btb-pk-price small { color: var(--btb-surf); }

.btb-pk ul {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex: 1;
}

.btb-pk li {
	font-size: .92rem;
	display: flex;
	gap: 11px;
	align-items: flex-start;
	color: var(--btb-muted);
}

.btb-pk.is-featured li { color: rgba(255, 255, 255, .86); }

.btb-pk li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--btb-steel); }
.btb-pk.is-featured li svg { color: var(--btb-surf); }

.btb-pk .btb-btn { width: 100%; }
.btb-pk.is-featured .btb-btn { background: #fff; color: var(--btb-ink); }
.btb-pk.is-featured .btb-btn .btb-btn-ico { background: var(--btb-ink); color: #fff; }
.btb-pk.is-featured .btb-btn:hover { background: var(--btb-surf); color: var(--btb-ink); }

/* =========================================================================
   Indgangsanimationer (som forsiden/Priser).
   Alle "skjulte" starttilstande er scoped under .btb-anim, som kun sættes
   af JavaScript — fejler JS, er alt indhold synligt som normalt.
   ========================================================================= */

/* Reveal-grundform (venstre kolonnes elementer + "Andre pakker") */
.btb-anim .btb-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .85s var(--btb-ease), transform .85s var(--btb-ease);
}

.btb-page .btb-reveal.in { opacity: 1; transform: none; }

/* Ord-masker (overskrifter splittes af JS) */
.btb-page .w { display: inline-block; overflow: hidden; vertical-align: top; padding: .1em .02em .13em; margin: -.1em -.02em -.13em; }
.btb-anim .wsplit .wi { display: inline-block; transform: translateY(116%); transition: transform .85s var(--btb-ease); }
.btb-page .in .wi, .btb-page .wsplit.in .wi { transform: none; }

/* Eyebrow: linjen tegnes, teksten glider ind */
.btb-anim .btb-eyebrow::before { transform: scaleX(0); transform-origin: left center; transition: transform .7s var(--btb-ease); }
.btb-anim .btb-eyebrow .ey-t { display: inline-block; opacity: 0; transform: translateX(-10px); transition: opacity .6s var(--btb-ease), transform .6s var(--btb-ease); transition-delay: .2s; }
.btb-page .in .btb-eyebrow::before, .btb-page .btb-eyebrow.in::before { transform: scaleX(1); }
.btb-page .in .btb-eyebrow .ey-t, .btb-page .btb-eyebrow.in .ey-t { opacity: 1; transform: none; }

/* Hero: brødkrumme og lead */
.btb-anim .btb-crumb { opacity: 0; transform: translateY(-8px); transition: opacity .7s var(--btb-ease), transform .7s var(--btb-ease); }
.btb-page .btb-crumb.in { opacity: 1; transform: none; }
.btb-anim .btb-hero .btb-lead { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--btb-ease), transform .8s var(--btb-ease); transition-delay: .65s; }
.btb-page .btb-hero .btb-lead.in { opacity: 1; transform: none; }

/* Bookingkortet toner ind straks efter heroen */
.btb-anim .btb-booking-card {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .9s var(--btb-ease) .3s, transform .9s var(--btb-ease) .3s;
}

.btb-page .btb-booking-card.in { opacity: 1; transform: none; }

/* Tjekliste ("Det er med i pakken"): punkter glider ind, flueben tegnes */
.btb-anim .btb-checklist li { opacity: 0; transform: translateX(-14px); transition: opacity .6s var(--btb-ease), transform .6s var(--btb-ease); }
.btb-anim .btb-checklist li:nth-child(1) { transition-delay: .25s; }
.btb-anim .btb-checklist li:nth-child(2) { transition-delay: .34s; }
.btb-anim .btb-checklist li:nth-child(3) { transition-delay: .43s; }
.btb-anim .btb-checklist li:nth-child(4) { transition-delay: .52s; }
.btb-anim .btb-checklist li:nth-child(5) { transition-delay: .61s; }
.btb-anim .btb-checklist li:nth-child(6) { transition-delay: .7s; }
.btb-anim .btb-checklist li:nth-child(7) { transition-delay: .79s; }
.btb-anim .btb-checklist li:nth-child(8) { transition-delay: .88s; }
.btb-anim .btb-checklist li svg path { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .6s var(--btb-ease); }
.btb-anim .btb-checklist li:nth-child(1) svg path { transition-delay: .35s; }
.btb-anim .btb-checklist li:nth-child(2) svg path { transition-delay: .44s; }
.btb-anim .btb-checklist li:nth-child(3) svg path { transition-delay: .53s; }
.btb-anim .btb-checklist li:nth-child(4) svg path { transition-delay: .62s; }
.btb-anim .btb-checklist li:nth-child(5) svg path { transition-delay: .71s; }
.btb-anim .btb-checklist li:nth-child(6) svg path { transition-delay: .8s; }
.btb-anim .btb-checklist li:nth-child(7) svg path { transition-delay: .89s; }
.btb-anim .btb-checklist li:nth-child(8) svg path { transition-delay: .98s; }
.btb-page .in .btb-checklist li { opacity: 1; transform: none; }
.btb-page .in .btb-checklist li svg path { stroke-dashoffset: 0; }

/* "Sådan foregår det": trinnene kaskader */
.btb-anim .btb-steps li { opacity: 0; transform: translateX(-14px); transition: opacity .65s var(--btb-ease), transform .65s var(--btb-ease); }
.btb-anim .btb-steps li:nth-child(1) { transition-delay: .25s; }
.btb-anim .btb-steps li:nth-child(2) { transition-delay: .4s; }
.btb-anim .btb-steps li:nth-child(3) { transition-delay: .55s; }
.btb-page .in .btb-steps li { opacity: 1; transform: none; }

/* Tryghedskort: micro-stagger */
.btb-anim .btb-trust .item { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--btb-ease), transform .7s var(--btb-ease); transition-delay: calc(var(--bi, 0) * 110ms + .1s); }
.btb-page .btb-trust.in .item { opacity: 1; transform: none; }

/* Andre pakker: kort-stagger */
.btb-anim .btb-other { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--btb-ease), transform .7s var(--btb-ease), border-color .3s var(--btb-ease), box-shadow .45s var(--btb-ease); transition-delay: calc(var(--bi, 0) * 110ms + .2s), calc(var(--bi, 0) * 110ms + .2s), 0s, 0s; }
.btb-page .in .btb-other { opacity: 1; transform: none; }

/* ---------- Responsivt ---------- */

@media (max-width: 1080px) {
	.btb-layout { grid-template-columns: 1fr; }
	.btb-booking-col { position: static; }
	.btb-pk-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
	.btb-trust { grid-template-columns: 1fr; }
	.btb-slot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.btb-page *, .btb-pk-grid * { transition-duration: .01ms !important; }
}
