/**
 * Villa Victoria — Sélection surprise + parcours de réservation.
 * Charte : navy #0F1F34, brume #F5F7FA, filet #DBE3EE, typo Jost.
 */

/* =========================================================
   Hero — les deux CTA à taille strictement identique
   ========================================================= */
.vv-hero-actions .pxl-button .btn {
	min-width: 290px;
	height: 58px;
	padding: 0 28px;
	gap: 10px;
	text-align: center;
	white-space: nowrap;
}

.vv-hero-actions .pxl-button .btn i {
	font-size: 17px;
	line-height: 1;
}

@media (max-width: 767px) {
	.vv-hero-actions .pxl-button,
	.vv-hero-actions .pxl-button .btn {
		width: 100%;
		min-width: 0;
	}
}

/* =========================================================
   Section
   ========================================================= */
.vv-surprise {
	--vv-navy: #0f1f34;
	--vv-navy-2: #162c4a;
	--vv-mist: #f5f7fa;
	--vv-line: #dbe3ee;
	--vv-text: #5a6676;
	font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--vv-text);
}

.vv-surprise *,
.vv-booking * {
	box-sizing: border-box;
}

.vv-surprise__head {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.vv-surprise__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 7px 16px;
	border: 1px solid var(--vv-line);
	border-radius: 999px;
	background: var(--vv-mist);
	color: var(--vv-navy);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.vv-surprise__eyebrow-icon {
	width: 15px;
	height: 15px;
}

.vv-surprise__title {
	margin: 0 0 18px;
	color: var(--vv-navy);
	font-size: clamp(28px, 3.6vw, 45px);
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.vv-surprise__lead {
	margin: 0 auto;
	max-width: 640px;
	font-size: 16px;
	line-height: 1.75;
}

.vv-surprise__actions {
	margin-top: 28px;
}

.vv-surprise__roll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 290px;
	height: 58px;
	padding: 0 28px;
	border: 1px solid var(--vv-navy);
	border-radius: 2px;
	background: var(--vv-navy);
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.vv-surprise__roll:hover {
	background: #c39a6b;
	border-color: #c39a6b;
	color: #fff;
}

.vv-surprise__roll:focus-visible {
	outline: 2px solid #c39a6b;
	outline-offset: 3px;
}

.vv-surprise__roll[disabled] {
	cursor: wait;
	opacity: 0.75;
}

.vv-surprise__roll-icon {
	width: 19px;
	height: 19px;
}

.vv-surprise__roll.is-rolling .vv-surprise__roll-icon {
	animation: vv-roll 0.9s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes vv-roll {
	0% { transform: rotate(0deg) scale(1); }
	55% { transform: rotate(210deg) scale(1.14); }
	100% { transform: rotate(360deg) scale(1); }
}

.vv-surprise__status {
	margin: 18px 0 0;
	color: var(--vv-navy);
	font-size: 14px;
	letter-spacing: 0.04em;
}

.vv-surprise__empty {
	max-width: 620px;
	margin: 40px auto 0;
	padding: 34px 28px;
	border: 1px solid var(--vv-line);
	border-radius: 3px;
	background: var(--vv-mist);
	text-align: center;
}

.vv-surprise__empty p {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.7;
}

.vv-surprise__empty-icon {
	width: 26px;
	height: 26px;
	color: var(--vv-navy);
}

.vv-surprise__error {
	max-width: 620px;
	margin: 30px auto 0;
	padding: 16px 20px;
	border: 1px solid #e7c3c3;
	border-radius: 3px;
	background: #fdf4f4;
	color: #9b3434;
	font-size: 14px;
	text-align: center;
}

/* =========================================================
   Grille de cartes
   ---------------------------------------------------------
   Chaque carte est un conteneur de requête (container-type) :
   ses colonnes internes et son pied se règlent sur SA largeur,
   pas sur celle de l'écran — une carte de 300 px dans une grille
   de trois colonnes s'empile, la même carte à 560 px dans le
   carrousel tablette se met sur deux colonnes.
   ========================================================= */
.vv-surprise__source {
	margin: 40px 0 0;
	color: var(--vv-navy);
	font-size: 13px;
	letter-spacing: 0.04em;
	text-align: center;
}

.vv-surprise__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 22px;
}

.vv-surprise__grid > * {
	min-width: 0;
}

.vv-card {
	--vv-card-pad-x: 30px;
	--vv-card-pad-y: 30px;
	container-type: inline-size;
	container-name: card;
	position: relative;
	display: flex;
	flex-direction: column;
	padding: var(--vv-card-pad-y) var(--vv-card-pad-x);
	border: 1px solid var(--vv-line);
	border-radius: 3px;
	background: #fff;
	opacity: 0;
	transform: translateY(18px);
	animation: vv-card-in 0.55s ease forwards;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, translate 0.35s ease;
}

.vv-card:nth-child(2) { animation-delay: 0.09s; }
.vv-card:nth-child(3) { animation-delay: 0.18s; }

@keyframes vv-card-in {
	to { opacity: 1; transform: translateY(0); }
}

/* Comme les fiches des autres pages : le filet se réchauffe et la carte se soulève. */
@media (hover: hover) {
	.vv-card:hover {
		border-color: #c39a6b;
		box-shadow: 0 18px 38px -26px rgba(15, 31, 52, 0.45);
		translate: 0 -3px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vv-card {
		opacity: 1;
		transform: none;
		animation: none;
		transition: none;
	}
}

/* --- En-tête : sur-titre (nom du pack) + niveau ---------------------------- */
.vv-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.vv-card__eyebrow {
	margin: 0;
	padding-top: 5px;
	color: #a85b16;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.vv-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 11px;
	border: 1px solid var(--vv-line);
	border-radius: 999px;
	background: var(--vv-mist);
	color: var(--vv-navy);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.vv-badge--solid {
	flex: 0 0 auto;
	padding: 6px 12px;
	border-color: var(--vv-navy);
	background: var(--vv-navy);
	color: #fff;
	font-size: 10.5px;
	letter-spacing: 0.16em;
}

.vv-card__title {
	margin: 0;
	color: var(--vv-navy);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

/* --- Repères : format, durée, moment --------------------------------------- */
.vv-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	color: var(--vv-navy);
	font-size: 13px;
	letter-spacing: 0.02em;
}

.vv-card__meta li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.vv-card__meta svg {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
	opacity: 0.75;
}

/* --- Expérience proposée ---------------------------------------------------- */
.vv-card__block {
	margin-top: 22px;
	padding: 20px 22px 22px;
	border-radius: 3px;
	background: var(--vv-mist);
}

.vv-card__block-title {
	margin: 0 0 12px;
	color: var(--vv-navy);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.vv-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vv-card__list li {
	position: relative;
	padding-left: 24px;
	font-size: 14px;
	line-height: 1.65;
}

.vv-card__list li + li {
	margin-top: 8px;
}

.vv-card__list svg {
	position: absolute;
	left: 0;
	top: 4px;
	width: 14px;
	height: 14px;
	color: var(--vv-navy);
}

/* --- Notes de carte : empilées, ou côte à côte si la carte est large --- */
.vv-card__split {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	margin-top: 22px;
	border-top: 1px solid var(--vv-line);
}

.vv-card__note {
	min-width: 0;
	padding-top: 18px;
}

.vv-card__note + .vv-card__note {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--vv-line);
}

.vv-card__note-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 6px;
	color: var(--vv-navy);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.vv-card__note-title svg {
	flex: 0 0 auto;
	width: 14px;
	height: 14px;
}

.vv-card__note p {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
}

/* 420 px de contenu = carte de 482 px et plus (carrousel tablette, mobile large). */
@container card (min-width: 420px) {
	.vv-card__split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.vv-card__note {
		padding-top: 20px;
	}

	.vv-card__note:first-child {
		padding-right: 22px;
	}

	.vv-card__note + .vv-card__note {
		margin-top: 0;
		padding-top: 20px;
		padding-left: 22px;
		border-top: 0;
		border-left: 1px solid var(--vv-line);
	}

	/* Note seule (l'ambiance n'est plus affichée) : toute la largeur. */
	.vv-card__note:only-child {
		grid-column: 1 / -1;
		padding-right: 0;
	}
}

/* --- Pied : estimation + bouton pleine largeur ------------------------------ */
.vv-card__footer {
	margin-top: auto;
	padding-top: 24px;
}

.vv-card__price-row {
	padding-top: 20px;
	border-top: 1px solid var(--vv-line);
}

.vv-card__price-label {
	margin: 0;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vv-card__price {
	margin: 6px 0 0;
	color: var(--vv-navy);
	font-size: 34px;
	line-height: 1;
	white-space: nowrap;
}

.vv-card__price-hint {
	margin: 8px 0 0;
	font-size: 12.5px;
	line-height: 1.5;
}

@container card (min-width: 340px) {
	.vv-card__price-row {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 16px;
	}

	.vv-card__price-hint {
		margin: 0 0 4px;
		text-align: right;
	}
}

.vv-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	margin-top: 18px;
	padding: 12px 22px;
	border: 1px solid var(--vv-navy);
	border-radius: 2px;
	background: var(--vv-navy);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.vv-card__cta:hover {
	background: #c39a6b;
	border-color: #c39a6b;
	color: #fff;
}

.vv-card__cta:focus-visible {
	outline: 2px solid #c39a6b;
	outline-offset: 3px;
}

.vv-card__cta svg {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	transition: transform 0.35s ease;
}

.vv-card__cta:hover svg {
	transform: translateX(3px);
}

/* Squelettes de chargement, calqués sur la carte */
.vv-skeleton {
	min-height: 620px;
	border: 1px solid var(--vv-line);
	border-radius: 3px;
	background: linear-gradient(180deg, #fbfcfe 0%, #f1f4f9 100%);
	padding: 30px;
	animation: vv-pulse 1.4s ease-in-out infinite;
}

.vv-skeleton:nth-child(2) { animation-delay: 0.16s; }
.vv-skeleton:nth-child(3) { animation-delay: 0.32s; }

.vv-skeleton span {
	display: block;
	border-radius: 3px;
	background: #fff;
}

.vv-skeleton span + span { margin-top: 14px; }
.vv-skeleton .s-eyebrow { width: 150px; height: 12px; }
.vv-skeleton .s-title { width: 82%; height: 62px; margin-top: 18px; }
.vv-skeleton .s-meta { width: 70%; height: 14px; }
.vv-skeleton .s-block { width: 100%; height: 170px; margin-top: 22px; }
.vv-skeleton .s-line { width: 100%; height: 14px; }
.vv-skeleton .s-line--short { width: 60%; }
.vv-skeleton .s-cta { width: 100%; height: 54px; margin-top: 30px; }

@keyframes vv-pulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

/* Carrousel (tablette et mobile) */
.vv-surprise__dots {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.vv-surprise__dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 999px;
	background: var(--vv-line);
	padding: 0;
	transition: width 0.25s ease, background-color 0.25s ease;
}

.vv-surprise__dot.is-active {
	width: 24px;
	background: var(--vv-navy);
}

.vv-surprise__hint {
	margin: 14px 0 0;
	font-size: 13px;
	text-align: center;
}

/* Sous 1025 px, trois cartes ne tiennent plus côte à côte : elles défilent
   horizontalement (aimantées), une carte pleine et le bord de la suivante. */
@media (max-width: 1024px) {
	.vv-surprise__grid {
		display: flex;
		gap: 18px;
		margin: 22px -32px 0;
		padding: 0 32px 8px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-padding: 0 32px;
		scrollbar-width: none;
	}

	.vv-surprise__grid::-webkit-scrollbar {
		display: none;
	}

	.vv-card,
	.vv-skeleton {
		flex: 0 0 clamp(360px, 60%, 520px);
		scroll-snap-align: start;
	}

	.vv-surprise__dots { display: flex; }
}

@media (max-width: 767px) {
	.vv-surprise__grid {
		gap: 14px;
		margin: 22px -20px 0;
		padding: 0 20px 6px;
		scroll-padding: 0 20px;
	}

	.vv-card,
	.vv-skeleton {
		flex: 0 0 86%;
	}

	.vv-card {
		--vv-card-pad-x: 22px;
		--vv-card-pad-y: 24px;
	}

	.vv-skeleton { padding: 24px 22px; }

	.vv-card__title { font-size: 23px; }
	.vv-card__price { font-size: 30px; }
	.vv-card__block { padding: 18px 18px 20px; }

	.vv-surprise__roll { width: 100%; min-width: 0; }
}

@media (max-width: 400px) {
	.vv-card,
	.vv-skeleton {
		flex-basis: 90%;
	}
}

/* =========================================================
   Parcours de réservation immersif
   ========================================================= */
.vv-booking {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 20px;
	font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #5a6676;
}

.vv-booking[hidden] {
	display: none;
}

.vv-booking__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 17, 27, 0.62);
	backdrop-filter: blur(3px);
	animation: vv-fade 0.3s ease;
}

@keyframes vv-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

.vv-booking__dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(1040px, 100%);
	max-height: calc(100vh - 56px);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 30px 80px rgba(9, 17, 27, 0.35);
	overflow: hidden;
	animation: vv-dialog-in 0.36s cubic-bezier(0.2, 0.7, 0.3, 1);
}

@keyframes vv-dialog-in {
	from { opacity: 0; transform: translateY(24px) scale(0.985); }
	to { opacity: 1; transform: none; }
}

.vv-booking__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s linear;
}

.vv-booking__close:hover {
	background: rgba(255, 255, 255, 0.24);
}

.vv-booking__close-icon {
	width: 18px;
	height: 18px;
}

.vv-booking__body {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.vv-booking__hero {
	padding: 30px 34px 26px;
	background: linear-gradient(135deg, #0f1f34 0%, #162c4a 100%);
	color: #fff;
}

.vv-booking__steps {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.vv-booking__step {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.vv-booking__step.is-active {
	color: #fff;
}

.vv-booking__step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 11px;
}

.vv-booking__step-sep {
	flex: 0 0 22px;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
}

.vv-booking__hero h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(22px, 3vw, 31px);
	line-height: 1.2;
}

.vv-booking__hero p {
	margin: 10px 0 0;
	max-width: 640px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.vv-booking__hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.vv-booking__hero-badges .vv-badge {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.vv-booking__content {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
	overflow: hidden;
}

.vv-booking__panel {
	padding: 28px 34px 34px;
	overflow-y: auto;
}

.vv-booking__aside {
	padding: 28px 30px 34px;
	border-left: 1px solid #dbe3ee;
	background: #f5f7fa;
	overflow-y: auto;
}

.vv-booking__group + .vv-booking__group {
	margin-top: 28px;
}

.vv-booking__group-title {
	margin: 0 0 4px;
	color: #0f1f34;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vv-booking__group-hint {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.6;
}

.vv-option {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 14px 16px;
	border: 1px solid #dbe3ee;
	border-radius: 3px;
	cursor: pointer;
	transition: border-color 0.2s linear, background-color 0.2s linear;
}

.vv-option + .vv-option {
	margin-top: 10px;
}

.vv-option:hover {
	border-color: #0f1f34;
}

.vv-option.is-checked {
	border-color: #0f1f34;
	background: #f5f7fa;
}

.vv-option__box {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border: 1px solid #b9c6d8;
	border-radius: 2px;
	background: #fff;
	color: #fff;
}

.vv-option.is-checked .vv-option__box {
	border-color: #0f1f34;
	background: #0f1f34;
}

.vv-option__box svg {
	width: 13px;
	height: 13px;
	opacity: 0;
}

.vv-option.is-checked .vv-option__box svg {
	opacity: 1;
}

.vv-option__main {
	flex: 1 1 auto;
	min-width: 0;
}

.vv-option__name {
	display: block;
	color: #0f1f34;
	font-size: 15px;
	line-height: 1.4;
}

.vv-option__meta {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	line-height: 1.6;
}

.vv-option__price {
	flex: 0 0 auto;
	color: #0f1f34;
	font-size: 15px;
	white-space: nowrap;
}

.vv-option input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vv-stepper-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 14px;
}

.vv-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.vv-field > span {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0f1f34;
}

.vv-stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 10px;
	border: 1px solid #dbe3ee;
	border-radius: 3px;
	background: #fff;
}

.vv-stepper button {
	width: 32px;
	height: 32px;
	border: 1px solid #dbe3ee;
	border-radius: 2px;
	background: #fff;
	color: #0f1f34;
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
}

.vv-stepper button:hover {
	border-color: #0f1f34;
}

.vv-stepper output {
	color: #0f1f34;
	font-size: 16px;
}

.vv-booking select,
.vv-booking input[type="text"],
.vv-booking input[type="email"],
.vv-booking input[type="tel"],
.vv-booking input[type="date"],
.vv-booking textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #dbe3ee;
	border-radius: 3px;
	background: #fff;
	color: #0f1f34;
	font-family: inherit;
	font-size: 15px;
}

.vv-booking textarea {
	min-height: 96px;
	resize: vertical;
}

.vv-booking select:focus,
.vv-booking input:focus,
.vv-booking textarea:focus {
	outline: none;
	border-color: #0f1f34;
}

.vv-recap__title {
	margin: 0 0 4px;
	color: #0f1f34;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vv-recap__lines {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #dbe3ee;
}

.vv-recap__lines li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid #dbe3ee;
	font-size: 14px;
}

.vv-recap__lines span:first-child {
	color: #0f1f34;
}

.vv-recap__lines em {
	display: block;
	font-size: 12px;
	font-style: normal;
	color: #5a6676;
}

.vv-recap__empty {
	margin: 16px 0 0;
	padding: 14px 16px;
	border: 1px solid #dbe3ee;
	border-radius: 3px;
	font-size: 13px;
	line-height: 1.6;
}

.vv-recap__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-top: 20px;
}

.vv-recap__total span {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vv-recap__total strong {
	color: #0f1f34;
	font-size: 32px;
	font-weight: 400;
	line-height: 1;
}

.vv-recap__note {
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.6;
}

.vv-booking__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	height: 54px;
	margin-top: 22px;
	border: 1px solid #0f1f34;
	border-radius: 2px;
	background: #0f1f34;
	color: #fff;
	font-family: inherit;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s linear;
}

.vv-booking__submit:hover {
	background: #c39a6b;
	border-color: #c39a6b;
}

.vv-booking__submit svg {
	width: 17px;
	height: 17px;
}

.vv-booking__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	border: 0;
	background: none;
	color: #0f1f34;
	font-family: inherit;
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
}

.vv-booking__grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
}

.vv-booking__done {
	padding: 44px 40px 48px;
	text-align: center;
}

.vv-booking__done-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 999px;
	background: #f5f7fa;
	color: #0f1f34;
}

.vv-booking__done-icon svg {
	width: 28px;
	height: 28px;
}

.vv-booking__done h3 {
	margin: 20px 0 10px;
	color: #0f1f34;
	font-size: 27px;
}

.vv-booking__done p {
	margin: 0 auto;
	max-width: 520px;
	font-size: 15px;
	line-height: 1.75;
}

.vv-booking__done-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.vv-booking__done-actions a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	height: 52px;
	padding: 0 24px;
	border: 1px solid #0f1f34;
	border-radius: 2px;
	color: #0f1f34;
	font-size: 15px;
	text-decoration: none;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.vv-booking__done-actions a:hover {
	background: #0f1f34;
	color: #fff;
}

.vv-booking__done-actions a svg {
	width: 16px;
	height: 16px;
}

.vv-booking__done-actions .is-primary {
	background: #0f1f34;
	color: #fff;
}

.vv-booking__done-actions .is-primary:hover {
	background: #162c4a;
	border-color: #162c4a;
}

body.vv-booking-open {
	overflow: hidden;
}

@media (max-width: 900px) {
	.vv-booking {
		padding: 0;
	}

	.vv-booking__dialog {
		width: 100%;
		max-height: 100vh;
		height: 100%;
		border-radius: 0;
	}

	.vv-booking__content {
		display: flex;
		flex-direction: column;
		overflow-y: auto;
	}

	.vv-booking__panel,
	.vv-booking__aside {
		padding: 24px 22px 28px;
		overflow: visible;
	}

	.vv-booking__aside {
		border-left: 0;
		border-top: 1px solid #dbe3ee;
	}

	.vv-booking__hero {
		padding: 24px 22px 22px;
	}
}

/* Dé devant « Me laisser surprendre ».
   Le widget pxl_button de Serava n'expose pas d'icône sur le style btn-outline
   (contrôle conditionné, donc retiré au rendu) : on dessine le dé en masque
   SVG, il suit la couleur du texte au survol comme une vraie icône. */
.vv-btn-surprise .btn .pxl--btn-text::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	vertical-align: -3px;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='12' height='12' x='2' y='10' rx='2'/%3E%3Cpath d='m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6'/%3E%3Cpath d='M6 18h.01'/%3E%3Cpath d='M10 14h.01'/%3E%3Cpath d='M15 6h.01'/%3E%3Cpath d='M18 9h.01'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='12' height='12' x='2' y='10' rx='2'/%3E%3Cpath d='m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6'/%3E%3Cpath d='M6 18h.01'/%3E%3Cpath d='M10 14h.01'/%3E%3Cpath d='M15 6h.01'/%3E%3Cpath d='M18 9h.01'/%3E%3C/svg%3E") no-repeat center / contain;
}

.vv-btn-surprise .btn:hover .pxl--btn-text::before {
	animation: vv-roll 0.7s cubic-bezier(0.45, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
 * Rubrique repliee : les des se lancent depuis le hero, la rubrique ne se
 * deplie qu'au premier lancer pour afficher les propositions.
 * -------------------------------------------------------------------------- */
#surprises:not(.is-revealed) {
	display: none !important;
}
