/* ===================================================================
   Buja Tour Checkout — Frontend styles
   Matches the static HTML site design system (deep emerald + warm gold)
=================================================================== */

:root {
	--btc-bg:       #faf7f2;
	--btc-bg-soft:  #f5f1e8;
	--btc-ink:      #0b1f1a;
	--btc-ink-2:    #2c3e38;
	--btc-muted:    #6b756f;
	--btc-line:     #e7e1d6;
	--btc-primary:  #0b4d3b;
	--btc-primary-2:#083a2c;
	--btc-accent:   #c79a4a;
	--btc-white:    #fff;
	--btc-radius:   14px;
	--btc-radius-lg:22px;
	--btc-shadow-sm:0 2px 10px rgba(11,77,59,.06);
	--btc-shadow-md:0 12px 30px rgba(11,77,59,.10);
	--btc-trans:    .35s cubic-bezier(.2,.7,.2,1);
}

.btc-page { font-family: 'Poppins', -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: var(--btc-ink); background: var(--btc-bg); min-height: 100vh; padding-bottom: 100px; -webkit-font-smoothing: antialiased; }
.btc-page *, .btc-page *::before, .btc-page *::after { box-sizing: border-box; }

/* Header */
.btc-header { background: #fff; border-bottom: 1px solid var(--btc-line); }
.btc-header-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.btc-logo { height: 76px !important; width: auto !important; max-width: 240px; }
.btc-brand-text { font-size: 1.4rem; font-weight: 700; color: var(--btc-primary); }
.btc-secure { font-size: .82rem; color: var(--btc-muted); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

/* Layout */
.btc-grid { max-width: 1200px; margin: 40px auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: start; }

/* Sections (high specificity to defeat global theme overrides) */
.btc-page .btc-section { background: var(--btc-white); border: 1px solid var(--btc-line); border-radius: var(--btc-radius-lg); padding: 26px 30px 28px; box-shadow: var(--btc-shadow-sm); margin-bottom: 16px; }
.btc-page .btc-section h2 {
	font-size: .92rem !important;
	font-weight: 600 !important;
	margin: 0 0 20px !important;
	padding: 0 0 16px !important;
	border-bottom: 1px solid var(--btc-line) !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	color: var(--btc-ink) !important;
	letter-spacing: .005em !important;
	line-height: 1.3 !important;
	text-transform: none !important;
}
.btc-page .btc-step { width: 26px; height: 26px; border-radius: 50%; background: var(--btc-primary); color: var(--btc-accent); display: inline-flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; flex-shrink: 0; }
/* Centred payment section: remove the border from below the heading so it doesn't fight the centring */
.btc-page .btc-section:has(.btc-gateways) > h2 { border-bottom: none !important; padding-bottom: 0 !important; margin-bottom: 18px !important; }

/* Form */
.btc-row { display: grid; gap: 16px; margin-bottom: 16px; }
.btc-row.two { grid-template-columns: 1fr 1fr; }
.btc-row:last-child { margin-bottom: 0; }
.btc-field { display: flex; flex-direction: column; gap: 6px; }
.btc-field label { font-size: .82rem; font-weight: 600; color: var(--btc-ink); letter-spacing: .015em; }
.btc-field label span { color: var(--btc-accent); }
.btc-field input, .btc-field select, .btc-field textarea {
	background: var(--btc-bg-soft); border: 1.5px solid var(--btc-line);
	border-radius: var(--btc-radius); padding: 13px 16px;
	font: inherit; color: var(--btc-ink); width: 100%; outline: none;
	transition: all var(--btc-trans);
}
.btc-field input:focus, .btc-field select:focus, .btc-field textarea:focus { border-color: var(--btc-primary); background: #fff; box-shadow: 0 0 0 4px rgba(11,77,59,.08); }
.btc-field textarea { resize: vertical; min-height: 90px; }
.btc-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'><path fill='%236b756f' d='M8 11L3 6h10z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

/* Date pickers — calendar icon, always-clickable cursor */
#btc_booking_date,
#btc_pickup_date,
.flatpickr-input.form-control,
.btc-field input.flatpickr-input ~ .flatpickr-mobile,
.btc-field input.flatpickr-input.form-control + input.form-control {
	cursor: pointer !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230b4d3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	padding-right: 46px !important;
}

/* Time picker — clock icon */
#btc_pickup_time {
	cursor: pointer !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230b4d3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	padding-right: 46px !important;
}

.btc-error { font-size: .78rem; color: #c84a2a; min-height: 16px; font-weight: 500; }
.btc-hint  { font-size: .78rem; color: var(--btc-muted); margin-top: 4px; font-style: italic; line-height: 1.5; }

/* Payment section — centered & visually grouped */
.btc-page .btc-section:has(.btc-gateways) { text-align: center; }
.btc-page .btc-section:has(.btc-gateways) > h2 { justify-content: center; }
.btc-gateways { display: flex; flex-direction: column; gap: 10px; max-width: 460px; margin: 0 auto 8px; text-align: left; }
.btc-gateway { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--btc-line); border-radius: var(--btc-radius); cursor: pointer; transition: all var(--btc-trans); background: var(--btc-bg-soft); }
.btc-gateway:hover { border-color: var(--btc-primary); background: #fff; }
.btc-gateway input { accent-color: var(--btc-primary); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.btc-gateway:has(input:checked) { border-color: var(--btc-primary); background: #f0ece2; }
.btc-gateway-info { display: flex; flex-direction: column; gap: 4px; }
.btc-gateway-info strong { font-weight: 600; color: var(--btc-ink); font-size: .95rem; }
.btc-gateway-info span { font-size: .85rem; color: var(--btc-muted); }
.btc-gateway-info span p { margin: 0; }

/* Buttons — premium, modern, brand-aligned */
.btc-page .btc-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 14px 30px !important;
	border-radius: 999px !important;
	font: 600 .95rem/1.2 'Poppins', sans-serif !important;
	cursor: pointer !important;
	border: 1.5px solid transparent !important;
	transition: background-color .3s ease, transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease !important;
	white-space: nowrap !important;
	text-decoration: none !important;
	letter-spacing: .01em !important;
	text-transform: none !important;
	position: relative !important;
	overflow: hidden !important;
}
.btc-page .btc-btn-primary {
	background: var(--btc-primary) !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(11,77,59,.18) !important;
}
.btc-page .btc-btn-primary:hover {
	background: var(--btc-primary-2) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 24px rgba(11,77,59,.28) !important;
	color: #fff !important;
}
.btc-page .btc-btn-primary:active {
	transform: translateY(0) !important;
	box-shadow: 0 4px 12px rgba(11,77,59,.20) !important;
}
.btc-page .btc-btn-primary:disabled {
	opacity: .55 !important;
	cursor: not-allowed !important;
	transform: none !important;
	box-shadow: none !important;
}

/* Centred "Confirm & Pay" — same size as the static-site Book CTA, centred under the payment section */
.btc-page .btc-btn-block {
	display: flex !important;
	width: auto !important;
	min-width: 280px;
	max-width: 460px;
	margin: 14px auto 0 !important;
	padding: 16px 40px !important;
	font-size: 1rem !important;
}
.btc-page .btc-disclaimer { text-align: center; max-width: 460px; margin: 14px auto 0; }
.btc-page .btc-form-error { max-width: 460px; margin-left: auto; margin-right: auto; }

.btc-spinner { display: inline-block; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: btc-spin .8s linear infinite; }
@keyframes btc-spin { to { transform: rotate(360deg); } }

.btc-disclaimer { font-size: .78rem; color: var(--btc-muted); text-align: center; margin: 14px 0 0; line-height: 1.5; }
.btc-form-error { background: #fdebe6; color: #c84a2a; padding: 14px 18px; border-radius: var(--btc-radius); margin-top: 16px; font-size: .9rem; border: 1px solid #f4c4b8; }

/* Summary panel */
.btc-col-summary { position: sticky; top: 20px; }
.btc-summary-card { background: #fff; border: 1px solid var(--btc-line); border-radius: var(--btc-radius-lg); overflow: hidden; box-shadow: var(--btc-shadow-sm); }
.btc-summary-image { aspect-ratio: 16/10; overflow: hidden; }
.btc-summary-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.btc-summary-body { padding: 26px; }
.btc-eyebrow { display: inline-block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--btc-accent); font-weight: 700; margin-bottom: 8px; }
.btc-page .btc-summary-name { font-size: 1.15rem !important; font-weight: 600 !important; margin: 0 0 10px !important; line-height: 1.35 !important; color: var(--btc-ink) !important; }
.btc-summary-desc { font-size: .9rem; color: var(--btc-muted); margin: 0 0 20px; line-height: 1.65; }
.btc-summary-desc p { margin: 0 0 8px; color: var(--btc-muted); font-size: .9rem; }
.btc-summary-desc p:last-child { margin-bottom: 0; }
.btc-summary-desc :is(div, span) { display: block; }

.btc-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: .92rem; color: var(--btc-muted); }
.btc-summary-row strong { color: var(--btc-ink); font-weight: 600; font-size: .92rem; }

.btc-summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; margin-top: 10px; border-top: 1.5px solid var(--btc-line); }
.btc-summary-total span { font-size: .95rem; color: var(--btc-ink); font-weight: 600; }
.btc-summary-total strong { font-size: 1.15rem; font-weight: 700; color: var(--btc-primary); line-height: 1; }

/* Sticky mobile CTA */
.btc-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--btc-line); padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0)); box-shadow: 0 -8px 24px rgba(11,77,59,.10); z-index: 100; }
.btc-sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; max-width: 600px; margin: 0 auto; }
.btc-sticky-price { display: flex; flex-direction: column; line-height: 1.2; }
.btc-sticky-price small { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--btc-muted); font-weight: 600; }
.btc-sticky-price strong { font-size: 1.3rem; font-weight: 700; color: var(--btc-primary); }
.btc-sticky-cta .btc-btn { padding: 12px 22px; font-size: .9rem; }

/* Empty state */
.btc-empty { padding: 80px 24px; text-align: center; }
.btc-empty-inner { max-width: 480px; margin: 0 auto; }
.btc-empty h2 { font-size: 1.5rem; margin: 0 0 12px; color: var(--btc-ink); }
.btc-empty p { color: var(--btc-muted); margin: 0 0 24px; }

/* ===================================================================
   PREMIUM THANK-YOU / ORDER RECEIVED PAGE
=================================================================== */
.btc-thanks {
	max-width: 760px; margin: 30px auto 60px;
	font-family: 'Poppins', sans-serif !important;
	color: var(--btc-ink);
}

/* ----- HERO ----- */
.btc-thanks-hero {
	text-align: center; padding: 48px 30px 40px;
	background: linear-gradient(180deg, #fff 0%, var(--btc-bg-soft) 100%);
	border: 1px solid var(--btc-line); border-radius: var(--btc-radius-lg);
	box-shadow: var(--btc-shadow-sm);
}
.btc-thanks-tick {
	width: 80px; height: 80px; margin: 0 auto 24px;
	color: var(--btc-primary);
	display: flex; align-items: center; justify-content: center;
	animation: btcTickIn .8s cubic-bezier(.2,.7,.2,1) both;
}
.btc-thanks-tick svg { width: 100%; height: 100%; }
.btc-thanks-tick circle, .btc-thanks-tick path {
	stroke-dasharray: 200; stroke-dashoffset: 200;
	animation: btcTickDraw 1s ease-out .2s forwards;
}
.btc-thanks-tick path { animation-delay: .8s; }
@keyframes btcTickIn   { from { opacity: 0; transform: scale(.4); } to { opacity: 1; transform: scale(1); } }
@keyframes btcTickDraw { to   { stroke-dashoffset: 0; } }

.btc-thanks-ref {
	display: inline-block; font-size: .72rem; letter-spacing: .22em;
	text-transform: uppercase; color: var(--btc-accent); font-weight: 700;
	margin-bottom: 14px;
}
.btc-thanks-title {
	font-size: 1.85rem !important; font-weight: 700 !important;
	color: var(--btc-ink) !important; margin: 0 0 18px !important;
	line-height: 1.2 !important; letter-spacing: -.015em !important;
}
.btc-thanks-lead {
	font-size: 1.02rem; color: var(--btc-ink-2);
	margin: 0 auto 14px; line-height: 1.7; max-width: 580px;
}
.btc-thanks-lead em { font-style: normal; font-weight: 600; color: var(--btc-ink); }
.btc-thanks-sub {
	font-size: .9rem; color: var(--btc-muted); margin: 0;
}
.btc-thanks-sub strong { color: var(--btc-ink-2); font-weight: 600; }

/* ----- COUNTDOWN ----- */
.btc-thanks-countdown {
	margin: 26px 0; padding: 28px 30px;
	background: linear-gradient(135deg, var(--btc-primary) 0%, #083a2c 100%);
	color: #fff; border-radius: var(--btc-radius-lg);
	text-align: center; box-shadow: var(--btc-shadow-md);
	position: relative; overflow: hidden;
}
.btc-thanks-countdown::before {
	content: ''; position: absolute; top: -60px; right: -60px;
	width: 200px; height: 200px;
	background: radial-gradient(circle, rgba(199,154,74,.22) 0%, transparent 70%);
	pointer-events: none;
}
.btc-thanks-countdown .btc-thanks-eyebrow {
	color: var(--btc-accent); font-size: .7rem;
	letter-spacing: .25em; text-transform: uppercase;
	font-weight: 700; display: block; margin-bottom: 18px;
	position: relative; z-index: 1;
}
.btc-countdown-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
	max-width: 460px; margin: 0 auto;
	position: relative; z-index: 1;
}
.btc-countdown-cell {
	background: rgba(255,255,255,.10); backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--btc-radius); padding: 16px 8px;
	display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.btc-countdown-cell strong {
	font-size: 2rem; font-weight: 700; color: #fff;
	font-variant-numeric: tabular-nums; line-height: 1;
}
.btc-countdown-cell span {
	font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
	color: rgba(255,255,255,.75); font-weight: 600;
}
.btc-thanks-countdown.expired .btc-countdown-cell strong { color: var(--btc-accent); }

/* ----- BOOKING SUMMARY ----- */
.btc-thanks-summary,
.btc-thanks-next,
.btc-thanks-help {
	background: #fff; border: 1px solid var(--btc-line); border-radius: var(--btc-radius-lg);
	padding: 32px; margin-top: 22px; box-shadow: var(--btc-shadow-sm);
}
.btc-thanks-summary h2,
.btc-thanks-next h2 {
	font-size: 1.1rem !important; font-weight: 600 !important;
	color: var(--btc-ink) !important; margin: 0 0 22px !important;
	letter-spacing: -.005em !important; padding: 0 !important;
}
.btc-thanks-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.btc-thanks-block h3 {
	font-size: .72rem !important; font-weight: 700 !important;
	color: var(--btc-accent) !important; letter-spacing: .22em !important;
	text-transform: uppercase !important;
	margin: 0 0 14px !important; padding: 0 0 12px !important;
	border-bottom: 1px solid var(--btc-line) !important;
}
.btc-thanks-block dl { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.btc-thanks-block dt {
	font-size: .78rem; color: var(--btc-muted); font-weight: 500;
	letter-spacing: .02em; margin-bottom: 3px;
}
.btc-thanks-block dd {
	margin: 0; font-size: .98rem; color: var(--btc-ink);
	font-weight: 600; line-height: 1.4;
}
.btc-thanks-block dd em { font-style: italic; color: var(--btc-muted); font-weight: 500; }
.btc-thanks-total {
	font-size: 1.25rem !important; color: var(--btc-primary) !important;
	font-weight: 700 !important;
}
.btc-thanks-total .woocommerce-Price-amount { color: var(--btc-primary) !important; }

.btc-thanks-special {
	margin-top: 26px; padding: 18px 22px;
	background: var(--btc-bg-soft); border-radius: var(--btc-radius);
	border-left: 3px solid var(--btc-accent);
}
.btc-thanks-special .btc-thanks-eyebrow {
	font-size: .68rem; letter-spacing: .22em; color: var(--btc-accent);
	font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 6px;
}
.btc-thanks-special p {
	margin: 0; color: var(--btc-ink-2); font-size: .95rem; line-height: 1.6;
}

/* ----- WHAT'S NEXT ----- */
.btc-thanks-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 22px; }
.btc-thanks-steps li { display: flex; gap: 16px; align-items: flex-start; }
.btc-thanks-steps .num {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--btc-primary); color: var(--btc-accent);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: .95rem; font-weight: 700; flex-shrink: 0;
}
.btc-thanks-steps div strong {
	display: block; font-size: .95rem; color: var(--btc-ink);
	font-weight: 600; margin-bottom: 4px;
}
.btc-thanks-steps div p {
	margin: 0; font-size: .9rem; color: var(--btc-muted); line-height: 1.6;
}

/* ----- HELP FOOTER ----- */
.btc-thanks-help { text-align: center; padding: 28px 30px; }
.btc-thanks-help h3 {
	font-size: 1rem !important; font-weight: 600 !important;
	color: var(--btc-ink) !important; margin: 0 0 6px !important;
}
.btc-thanks-help p { margin: 0 0 18px; color: var(--btc-muted); font-size: .9rem; }
.btc-thanks-help-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btc-thanks-link {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 22px; border-radius: 999px;
	background: var(--btc-bg-soft); color: var(--btc-ink);
	border: 1px solid var(--btc-line);
	font-size: .88rem; font-weight: 500;
	text-decoration: none; transition: all var(--btc-trans);
}
.btc-thanks-link:hover {
	background: var(--btc-primary); color: #fff;
	border-color: var(--btc-primary); transform: translateY(-2px);
	box-shadow: var(--btc-shadow-sm);
}
.btc-thanks-link svg { flex-shrink: 0; }

/* ----- RESPONSIVE ----- */
@media (max-width: 720px) {
	.btc-thanks { margin: 20px auto 40px; padding: 0 16px; }
	.btc-thanks-hero { padding: 36px 20px 30px; }
	.btc-thanks-title { font-size: 1.5rem !important; }
	.btc-thanks-lead { font-size: .96rem; }
	.btc-thanks-tick { width: 64px; height: 64px; margin-bottom: 18px; }
	.btc-thanks-countdown { padding: 22px 18px; }
	.btc-countdown-grid { gap: 8px; }
	.btc-countdown-cell { padding: 12px 4px; }
	.btc-countdown-cell strong { font-size: 1.5rem; }
	.btc-countdown-cell span { font-size: .58rem; }
	.btc-thanks-summary, .btc-thanks-next, .btc-thanks-help { padding: 24px 20px; }
	.btc-thanks-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* Flatpickr theme polish */
.flatpickr-day.disabled, .flatpickr-day.flatpickr-disabled { background: #f5f1e8; color: #c8c1b3; text-decoration: line-through; }
.flatpickr-day.selected { background: var(--btc-primary); border-color: var(--btc-primary); }
.flatpickr-day.today { border-color: var(--btc-accent); }

/* Responsive */
@media (max-width: 980px) {
	.btc-grid { grid-template-columns: 1fr; gap: 22px; }
	.btc-col-summary { position: static; order: -1; }
	.btc-summary-image { aspect-ratio: 16/8; }
	.btc-row.two { grid-template-columns: 1fr; }
	.btc-section { padding: 24px 20px; }
	.btc-sticky-cta { display: block; }
	.btc-page { padding-bottom: 110px; }
}
@media (max-width: 560px) {
	.btc-header-inner { padding: 14px 18px; }
	.btc-logo { height: 56px !important; }
	.btc-secure { font-size: .75rem; }
	.btc-grid { padding: 0 16px; margin: 24px auto; }
	.btc-page .btc-section { padding: 22px 18px; }
	.btc-page .btc-section h2 { font-size: .98rem !important; }
	.btc-summary-body { padding: 22px 20px; }
	.btc-page .btc-btn-block { font-size: .95rem !important; min-width: 0; width: 100% !important; }
}

/* ===================================================================
   Rate / Variation selector (variable products)
=================================================================== */
.btc-variations { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.btc-variations-single { grid-template-columns: 1fr; max-width: 280px; }
.btc-variation { position: relative; display: block; cursor: pointer; }
.btc-variation input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.btc-variation-info {
	display: flex; flex-direction: column; gap: 4px;
	border: 1.5px solid var(--btc-line, #e2e8f0); border-radius: 12px;
	padding: 12px 14px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
	background: #fff;
}
.btc-variation-info strong { font-size: .95rem; color: var(--btc-ink, #0b1f1a); }
.btc-variation-price { font-size: .9rem; font-weight: 600; color: var(--btc-primary, #0b4d3b); }
.btc-variation input:hover + .btc-variation-info { border-color: var(--btc-primary, #0b4d3b); }
.btc-variation input:checked + .btc-variation-info {
	border-color: var(--btc-primary, #0b4d3b);
	box-shadow: 0 0 0 3px rgba(11,77,59,.12);
	background: var(--btc-primary-soft, #f0f6f3);
}
.btc-variation input:focus-visible + .btc-variation-info { box-shadow: 0 0 0 3px rgba(11,77,59,.25); }
.btc-selected-note { margin: 10px 0 0; font-size: .85rem; color: var(--btc-muted, #6b7280); }
.btc-selected-note strong { color: var(--btc-primary, #0b4d3b); }
