/* ================= Section Hero ================= */
.hero {
	position: relative;
	width: 100%;
	max-width: 100vw;
	min-height: 100vh;
	background: url("/img/reservation/club-vacances-valmorel.webp") center
	  center/cover no-repeat;
	color: var(--color-bg);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
  }
  .hero-bg {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .hero-img {
	display: none;
  }
  .hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 3rem 2rem 3rem;
	border-radius: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;

  }
  .hero-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 32px;
	background: var(--color-text);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
  }
  .hero-overlay > * {
	position: relative;
	z-index: 1;
	opacity: 1;
  }

  .herobadge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	background-color: var(--color-primary);
	color: var(--color-bg);
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(105, 81, 255, 0.05);
  }
  .hero h1 {
	font-family: "Sora", sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 45px;
	margin-bottom: 0.5rem;
  }
  .hero p {
	font-size: 20px;
	font-weight: 600;
	margin-top: 0.2rem;
	margin-bottom: 2rem;
	margin-left: 2rem;
	margin-right: 2rem;
  }
  .hero-actions {
	display: flex;
	gap: 2rem;
  }

  .hero-bg-effect {
	display: inline-block;
	position: relative;
	z-index: 0;
	padding-left: 0.25em;
	padding-right: 0.25em;
  }

  .hero-bg-effect::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 1.3em;
	background: var(--color-primary);
	border-radius: 16px;
	z-index: -1;
  }

  /* ============== Responsive ============== */

  @media (max-width: 900px) {
	.hero {
	   max-width: 100vw;
	min-height: 100vh;
	}
	 .herobadge {
	 width: 80%;
	}
	.hero-overlay {
	  padding: 4rem 1rem;
	}
	.hero h1 {
	  font-size: 28px;
	  line-height: 32px;
	}
	.hero p {
	  font-size: 16px;
	  margin-bottom: 1.5rem;
	}
	.hero-actions {
	  flex-direction: column;
	  gap: 1rem;
	}
	  .hero-bg-effect::after {
	bottom: -3px;
	height: 1.3em;

  }
  .hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 3rem 2rem 3rem;
	border-radius: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;

  }
  .hero-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 0px;
	background: var(--color-text);
	opacity: 0.5;
	z-index: 0;
	pointer-events: none;
  }
  .hero-overlay > * {
	position: relative;
	z-index: 1;
	opacity: 1;
  }
  }


  /* ================= Section all-included ================= */

  .all-included-section {
	padding: 1rem 0rem 1rem 0rem;
  }

  .all-included-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--color-primary);
	color: white;
	font-size: 16px;
	font-family: var(--font-text), sans-serif;
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	margin-bottom: 2rem;
  }

  .all-included-title {
	font-size: 34px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 1.1;
	color: #2a3342;
	margin-bottom: 3rem;
	word-wrap: break-word;
  }

  .all-included-title-highlight {
	color: var(--color-secondary);
  }

  .all-included-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
  }

  .all-included-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: box-shadow 0.3s ease;
  }


  .all-included-icon {
	width: 34px;
	height: 34px;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .all-included-icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
  }

  .all-included-card-text {
	color: #2a3342;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
  }

  .all-included-card-text--poppins {
	font-family: var(--font-text), sans-serif;
	line-height: 30px;
  }

  .all-included-card-text--sora {
	font-family: var(--font-title);
	line-height: 32px;
  }

  @media (max-width: 768px) {

	.all-included-section {
	  padding: 2rem 0;
	}

	.all-included-badge {
	  font-size: 14px;
	  margin-bottom: 1.5rem;
	}

	.all-included-title {
	  margin-bottom: 2rem;
	}

	.all-included-grid {
	  grid-template-columns: 1fr;
	  gap: 1.5rem;
	}

	.all-included-card {
	  padding: 1.5rem;
	}

	.all-included-card-text {
	  font-size: 18px;
	}
  }

  @media (max-width: 480px) {
	.all-included-card-text {
	  font-size: 16px;
	}

	.all-included-icon {
	  width: 56px;
	  height: 56px;
	}
  }

  /* ================= Section restauration - hebergement ================= */

  .restauration-hebergement-section {
	background: var(--color-primary);
	padding: 0rem;
	overflow: hidden;
	margin-bottom: 0 !important;
  }

  .restauration-hebergement-wrapper {
	background: var(--color-primary);
	padding: 3rem 1rem 6rem;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
  }

  .restauration-hebergement-badge {
	background: #cee0fd;
	color: #2a3342;
	font-size: 16px;
	font-family: "Sora", sans-serif;
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	display: inline-block;
	margin-bottom: 2rem;
	margin-top: 4rem;
	text-align: center;
  }

  .restauration-hebergement-title {
	color: white;
	font-size: 40px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 44px;
	word-wrap: break-word;
	text-align: center;
	margin: 0 0 3rem 0;
	max-width: 892px;
  }

  .restauration-hebergement-section {
	width: 100%;
	margin-bottom: 4rem;
  }

  .restauration-hebergement-section-title {
	color: white;
	font-size: 30px;
	font-family: var(--font-title);
	font-weight: 500;
	line-height: 38px;
	word-wrap: break-word;
	margin: 0 0 2rem 4rem;
  }

  .restauration-hebergement-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	margin-left: 4rem;
	margin-right: 4rem;
  }

  .restauration-hebergement-card {
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 3.5rem 3.25rem;
	min-height: auto;
	display: flex;
	flex-direction: column;
  }

  .restauration-hebergement-card-title {
	color: var(--color-secondary);
	font-size: 24px;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 32px;
	word-wrap: break-word;
	margin: 0 0 1rem 0;
  }

  .restauration-hebergement-card-subtitle {
	color: #404f65;
	font-size: 16px;
	font-family: var(--font-title);
	font-weight: 600;
	line-height: 28px;
	word-wrap: break-word;
	margin: 0 0 1rem 0;
  }

  .restauration-hebergement-card-list {
	color: #404f65;
	font-size: 14px;
	font-family: var(--font-text), sans-serif;
	font-weight: 500;
	line-height: 22px;
	word-wrap: break-word;
	margin: 0;
	padding: 0;
	list-style: none;
  }

  .restauration-hebergement-card-list li {
	position: relative;
	padding-left: 0;
	margin-bottom: 0.5rem;
  }

  .restauration-hebergement-card-list li:last-child {
	margin-bottom: 0;
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.restauration-hebergement-title {
	  font-size: 32px;
	  line-height: 38px;
	  margin-bottom: 2.5rem;
	}

	.restauration-hebergement-section-title {
	  font-size: 26px;
	  line-height: 34px;
	}

	.restauration-hebergement-cards-grid {
	  gap: 1.5rem;
	}

	.restauration-hebergement-card {
	  padding: 2.5rem 2rem;
	  min-height: auto;
	}

	.restauration-hebergement-card-title {
	  font-size: 22px;
	  line-height: 30px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 16px;
	  line-height: 26px;
	}
  }

  @media (max-width: 768px) {
	.restauration-hebergement-wrapper {
	  padding: 2rem 1rem;
	}

	.restauration-hebergement-badge {
	  font-size: 14px;
	  line-height: 20px;
	  margin-bottom: 1.5rem;
	}

	.restauration-hebergement-title {
	  font-size: 26px;
	  line-height: 32px;
	  margin-bottom: 2rem;
	}

	.restauration-hebergement-section {
	  margin-bottom: 3rem;
	}

	.restauration-hebergement-section-title {
	  font-size: 22px;
	  line-height: 30px;
	  margin-bottom: 1.5rem;
	}

	.restauration-hebergement-cards-grid {
	  grid-template-columns: 1fr;
	  gap: 1.5rem;
	  margin-left: 0;
	  margin-right: 0;
	}


	.restauration-hebergement-card {
	  padding: 2rem 1.5rem;
	}

	.restauration-hebergement-card-title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 15px;
	  line-height: 24px;
	}
  }

  @media (max-width: 480px) {
	.restauration-hebergement-wrapper {
	  padding: 1.5rem 0.75rem;
	  overflow-x: hidden;
	  max-width: 100vw;
	  box-sizing: border-box;
	}

	.restauration-hebergement-title {
	  font-size: 22px;
	  line-height: 28px;
	}

	.restauration-hebergement-section-title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.restauration-hebergement-cards-grid {
	  margin-left: 0;
	  margin-right: 0;
	}

	.restauration-hebergement-card {
	  padding: 1.5rem 1.25rem;
	  width: 100%;
	  max-width: 100vw;
	  box-sizing: border-box;
	}

	.restauration-hebergement-card-title {
	  font-size: 18px;
	  line-height: 26px;
	}

	.restauration-hebergement-card-subtitle,
	.restauration-hebergement-card-list {
	  font-size: 14px;
	  line-height: 22px;
	}
  }

  /* ================= Section Chiffres ================= */

  .chiffre-container {
	background-color: var(--color-accent);
	margin-top: 0 !important;
  }

  .chiffre-section {
	padding: 4rem 0;
	width: 100%;
  }

  .chiffre-header {
	margin-bottom: 3rem;
  }

  .chiffre-badge {
	display: inline-block;
	background: var(--color-primary);
	color: white;
	font-size: 16px;
	font-family: var(--font-text), sans-serif;
	font-weight: 500;
	line-height: 24px;
	padding: 2px 8px;
	border-radius: 36px;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	margin-bottom: 1.5rem;
  }

  .chiffre-title {
	font-size: 40px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 44px;
	word-wrap: break-word;
  }

  .chiffre-title-highlight {
	color: var(--color-secondary);
  }

  .chiffre-title-normal {
	color: #2a3342;
  }

  .chiffre-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	max-width: 1140px;
	padding-top: 2rem;
	margin-left: auto;
	margin-right: auto;
  }

  .chiffre-card {
	position: relative;
	background: white;
	border-radius: 16px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 2.5rem 2rem 1rem;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .chiffre-icon {
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	width: 54px;
	height: 54px;
	background: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 8px rgba(214, 39, 57, 0.3);
  }

  .chiffre-icon img {
	width: 34px;
	height: 34px;
  }

  .chiffre-card-text {
	color: #2a3342;
	font-size: 18px;
	font-family: var(--font-title);
	font-weight: 400;
	line-height: 32px;
	text-align: center;
	word-wrap: break-word;
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.chiffre-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 4rem;
	}

	.chiffre-title {
	  font-size: 32px;
	  line-height: 38px;
	}

	.chiffre-card-text {
	  font-size: 20px;
	  line-height: 28px;
	}
  }

  @media (max-width: 768px) {
	.chiffre-section {
	  padding: 3rem 0;
	}

	.chiffre-grid {
	  grid-template-columns: 1fr;
	  gap: 3rem;
	  max-width: 400px;
	  margin: 0 auto;
	}

	.chiffre-title {
	  font-size: 28px;
	  line-height: 34px;
	}

	.chiffre-badge {
	  font-size: 14px;
	}

	.chiffre-card {
	  padding: 3rem 1.5rem 1.5rem;
	  min-height: 100px;
	}

	.chiffre-card-text {
	  font-size: 18px;
	  line-height: 26px;
	}
  }

  @media (max-width: 480px) {
	.chiffre-title {
	  font-size: 24px;
	  line-height: 30px;
	}

	.chiffre-card-text {
	  font-size: 16px;
	  line-height: 24px;
	}

	.chiffre-icon {
	  width: 56px;
	  height: 56px;
	  top: -28px;
	}
  }

  /* ================= Section Reservation ================= */

  .reservation-wrapper {
	padding: 3rem 0;
  }

  .reservation-badge {
	display: inline-block;
	background-color: var(--color-primary);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 1.5rem;
  }

  .reservation-title {
	font-family: var(--font-title);
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-text);
	margin: 0 0 1rem 0;
  }

  .reservation-title-highlight {
	color: var(--color-secondary);
  }

  .reservation-date {
	color: #404f65;
	font-size: 20px;
	font-family: var(--font-text), sans-serif;
	font-weight: 500;
	line-height: 30px;
	margin: 0 0 3rem 0;
  }

  .reservation-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
  }

  .reservation-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
  }

  .reservation-column-title {
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
  }

  .reservation-column-title--spacer {
	margin-top: 2rem;
  }

  .reservation-option {
	margin-bottom: 1rem;
  }

  .reservation-radio {
	position: absolute;
	opacity: 0;
  }

  .reservation-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	position: relative;
	padding-left: 2rem;


  }

  .reservation-label::before {
	content: "";
	position: absolute;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #d5dae1;
	border-radius: 50%;
	background-color: white;

  }

  .reservation-radio:checked + .reservation-label::before {
	border-color: var(--color-primary);
  }

  .reservation-radio:checked + .reservation-label::after {
	content: "";
	position: absolute;
	left: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-primary);
  }

  .reservation-label-text {
	display: inline-block;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
  }

  .reservation-info-btn {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d5dae1;
	background-color: white;
	color: var(--color-text);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.2s;
  }

  .reservation-info-btn:hover {
	background-color: var(--color-accent);
	border-color: var(--color-primary);
  }

  .reservation-advantages {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: flex-start;
  }

  .reservation-section-title {
	color: var(--color-secondary);
	font-family: var(--font-title);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 1rem 0;
  }

  .reservation-advantage-item {
	background-color: #fff5f5;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	display: inline-block;

  }

  .reservation-advantage-item:first-of-type {
	background-color: var(--color-success);
  }

  .reservation-dates-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
  }

  .reservation-checkbox-wrapper {
	display: flex;
	align-items: center;
	cursor: pointer;
  }

  .reservation-checkbox {
	width: 16px;
	height: 18px;
	margin-right: 0.75rem;
	cursor: pointer;
	accent-color: var(--color-primary);
  }

  .reservation-date-label {
	display: inline-block;
	background-color: #f8f9fa;
	padding: 0.75rem 1rem;
	border-radius: 20px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	transition: all 0.2s;
  }
  .reservation-date-label1 {
	display: inline-block;
	background-color: var(--color-success);
	padding: 0.75rem 1rem;
	border-radius: 20px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	transition: all 0.2s;
  }

  .reservation-checkbox:checked ~ .reservation-date-label {
	background-color: var(--color-accent);
  }

  .reservation-participants-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
  }

  .reservation-participant-row {
	display: flex;
	align-items: center;
	gap: 1rem;
  }

  .reservation-quantity {
	position: relative;
	width: 83px;
  }

  .reservation-quantity-input {
	width: 30%;
	height: 32px;
	padding: 10px 35px 10px 14px;
	background: white;
	border: 1px solid #d5dae1;
	border-radius: 8px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
	color: #2a3342;
	font-size: 18px;
	font-family: var(--font-text), sans-serif;
	font-weight: 500;
	line-height: 28px;
	text-align: left;
  }

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

  .reservation-quantity-input[type="number"] {
	appearance: textfield;
	-moz-appearance: textfield;
  }

  .reservation-quantity-arrows {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 2px;
  }

  .reservation-arrow-up,
  .reservation-arrow-down {
	width: 12px;
	height: 8px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	position: relative;
	padding: 0;
  }

  .reservation-arrow-up::after,
  .reservation-arrow-down::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
  }

  .reservation-arrow-up::after {
	border-bottom: 6px solid #2a3342;
  }

  .reservation-arrow-down::after {
	border-top: 6px solid #2a3342;
  }

  .reservation-participant-label {
	display: inline-block;
	background-color: var(--color-accent);
	padding: 0.75rem 1rem;
	border-radius: 20px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
  }

  .reservation-hebergement-options,
  .reservation-restauration-options {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
  }

  .reservation-radio-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	position: relative;
	padding-left: 2rem;
  }

  .reservation-radio-input {
	position: absolute;
	opacity: 0;
  }

  .reservation-radio-option::before {
	content: "";
	position: absolute;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #d5dae1;
	border-radius: 50%;
	background-color: white;
  }

  .reservation-radio-input:checked ~ .reservation-radio-option::before,
  .reservation-radio-input:checked
	+ .reservation-radio-label
	+ .reservation-info-btn::before {
	border-color: var(--color-primary);
  }

  .reservation-radio-option:has(.reservation-radio-input:checked)::before {
	border-color: var(--color-primary);
  }

  .reservation-radio-option:has(.reservation-radio-input:checked)::after {
	content: "";
	position: absolute;
	left: 7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--color-primary);
  }

  .reservation-radio-label {
	display: inline-block;
	background-color: var(--color-accent);
	padding: 0.75rem 1rem;
	border-radius: 20px;
	font-family: var(--font-text);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1200px) {
	.reservation-grid {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 2rem;
	}
  }

  @media (max-width: 580px) {
	.reservation-wrapper {
	  padding: 0rem 0;
	}
	  .reservation-grid {
	  grid-template-columns: repeat(2, 1fr);

	  }

	.reservation-title {
	  font-size: 32px;
	}

	.reservation-date {
	  font-size: 16px;
	}

	.reservation-grid {
	  grid-template-columns: 1fr;
	  gap: 2.5rem;
	}

	.reservation-column-title--spacer {
	  margin-top: 1.5rem;
	}
  }


  /* ================= Section RESERVATION RESULT ================= */

  /* Composant principal */
  .result-reservation {
	width: 100%;
	padding: 2rem 0;
  }

  /* Header */
  .result-reservation__header {
	margin-bottom: 0rem;
  }

  .result-reservation__title {
	font-size: 30px;
	font-weight: 400;
	line-height: 38px;
	color: var(--color-text);
	margin-left: 2rem;
	margin-bottom: 0;
  }

  .result-reservation__subtitle {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	margin-left: 2rem;
	margin-top: 0.5rem;
  }

  .result-reservation__highlight {
	color: var(--color-secondary);
  }

  .result-reservation__guarantee {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
	margin-top: 0.5rem;
	margin-left: 2rem;
  }

  .result-reservation__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	width: 100%;
  }

  .result-reservation__card {
	background: var(--color-bg);
	border-radius: 8px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding:10px;
  }

  .result-reservation__card:hover {
	transform: translateY(-4px);
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  }

  .result-reservation__image {
	width: 100%;
	height: auto;
	aspect-ratio: 299/281;
	object-fit: cover;
	border-radius: 10px;
	padding: 0;
  }

  .result-reservation__content {
	padding: 0 17px 17px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
  }

  .result-reservation__card-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-primary);
	padding-top: 0.5rem;
  }

  .result-reservation__availability {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: rgba(214, 39, 57, 0.8);
	margin: 0;
  }

  .result-reservation__pricing {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
  }

  .result-reservation__price-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
  }

  .result-reservation__price-line--total {
	font-weight: 700;
	margin-top: 0.25rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .result-reservation__button {
	width: 100%;
	max-width: 224px;
	margin: 1rem auto 0;
	padding: 16px 28px;
	background: rgba(214, 39, 57, 0.8);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	font-family: var(--font-text), sans-serif;
	cursor: pointer;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .result-reservation__button:hover {
	background: rgba(214, 39, 57, 1);
	transform: scale(1.02);
  }

  .result-reservation__button:active {
	transform: scale(0.98);
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.result-reservation__grid {
	  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	  gap: 1.25rem;
	}

	.result-reservation__title {
	  font-size: 26px;
	  line-height: 34px;
	}

	.result-reservation__subtitle {
	  font-size: 18px;
	  line-height: 28px;
	}
  }

  @media (max-width: 768px) {
	.result-reservation {
	  padding: 1.5rem 0;
	}

	.result-reservation__header {
	  margin-bottom: 2rem;
	}

	.result-reservation__title {
	  font-size: 22px;
	  line-height: 30px;
	}

	.result-reservation__subtitle {
	  font-size: 16px;
	  line-height: 24px;
	}

	.result-reservation__guarantee {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__grid {
	  grid-template-columns: 1fr;
	  gap: 1rem;
	}

	.result-reservation__card-title {
	  font-size: 18px;
	  line-height: 26px;
	}

	.result-reservation__availability,
	.result-reservation__price-line {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__button {
	  font-size: 16px;
	  padding: 14px 24px;
	}
  }

  @media (max-width: 480px) {
	.result-reservation__title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.result-reservation__subtitle {
	  font-size: 14px;
	  line-height: 22px;
	}

	.result-reservation__content {
	  padding: 0 12px 12px;
	}

	.result-reservation__image {
	  padding: 0;
	}
  }

  /* ================= Section carte doucy ================= */

  .carte-doucy-section {
	text-align: center;
	margin-bottom: 48px;
	margin: 4rem;
  }

  .carte-doucy-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	display: inline-block;
  }

  /*----------- Responsive Design ---------------*/
  @media (max-width: 900px) {
	.carte-doucy-section {
	  margin-bottom: 32px;
	}
	.carte-doucy-image {
	  border-radius: 10px;
	}
  }

  @media (max-width: 600px) {
	.carte-doucy-section {
	  margin-bottom: 20px;
	  padding-left: 0.5rem;
	  padding-right: 0.5rem;
	}
	.carte-doucy-image {
	  border-radius: 8px;
	  width: 120vw;
	  max-width: unset;
	  min-width: 100vw;
	  display: block;
	  margin-left: 50%;
	  transform: translateX(-50%);
	  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
	}
  }

  /* ================= Section RESERVATION RESULT ================= */

  /* Composant principal */
  .result-reservation {
	width: 100%;
	padding: 2rem 0;
  }

  /* Header */
  .result-reservation__header {
	margin-bottom: 0rem;
  }

  .result-reservation__title {
	font-size: 30px;
	font-weight: 400;
	line-height: 38px;
	color: var(--color-text);
	margin-left: 2rem;
	margin-bottom: 0;
  }

  .result-reservation__subtitle {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	margin-left: 2rem;
	margin-top: 0.5rem;
  }

  .result-reservation__highlight {
	color: var(--color-secondary);
  }

  .result-reservation__guarantee {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
	margin-top: 0.5rem;
	margin-left: 2rem;
  }

  .result-reservation__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	width: 100%;
  }

  .result-reservation__card {
	background: var(--color-bg);
	border-radius: 8px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .result-reservation__card:hover {
	transform: translateY(-4px);
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  }

  .result-reservation__image {
	width: 100%;
	height: auto;
	aspect-ratio: 299/281;
	object-fit: cover;
	border-radius: 10px;
	padding: 0;
  }

  .result-reservation__content {
	padding: 0 17px 17px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
  }

  .result-reservation__card-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-primary);
	margin: 0;
  }

  .result-reservation__availability {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: rgba(214, 39, 57, 0.8);
	margin: 0;
  }

  .result-reservation__pricing {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
  }

  .result-reservation__price-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
  }

  .result-reservation__price-line--total {
	font-weight: 700;
	margin-top: 0.25rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .result-reservation__button {
	width: 100%;
	max-width: 224px;
	margin: 1rem auto 0;
	padding: 16px 28px;
	background: rgba(214, 39, 57, 0.8);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	font-family: var(--font-text), sans-serif;
	cursor: pointer;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .result-reservation__button:hover {
	background: rgba(214, 39, 57, 1);
	transform: scale(1.02);
  }

  .result-reservation__button:active {
	transform: scale(0.98);
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.result-reservation__grid {
	  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	  gap: 1.25rem;
	}

	.result-reservation__title {
	  font-size: 26px;
	  line-height: 34px;
	}

	.result-reservation__subtitle {
	  font-size: 18px;
	  line-height: 28px;
	}
  }

  @media (max-width: 768px) {
	.result-reservation {
	  padding: 1.5rem 0;
	}

	.result-reservation__header {
	  margin-bottom: 2rem;
	}

	.result-reservation__title {
	  font-size: 22px;
	  line-height: 30px;
	}

	.result-reservation__subtitle {
	  font-size: 16px;
	  line-height: 24px;
	}

	.result-reservation__guarantee {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__grid {
	  grid-template-columns: 1fr;
	  gap: 1rem;
	}

	.result-reservation__card-title {
	  font-size: 18px;
	  line-height: 26px;
	}

	.result-reservation__availability,
	.result-reservation__price-line {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__button {
	  font-size: 16px;
	  padding: 14px 24px;
	}
  }

  @media (max-width: 480px) {
	.result-reservation__title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.result-reservation__subtitle {
	  font-size: 14px;
	  line-height: 22px;
	}

	.result-reservation__content {
	  padding: 0 12px 12px;
	}

	.result-reservation__image {
	  padding: 10px;
	}
  }

  /* ================= Section carte doucy ================= */

  .carte-doucy-section {
	text-align: center;
	margin-bottom: 48px;
	margin: 4rem;
  }

  .carte-doucy-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	display: inline-block;
  }

  /*----------- Responsive Design ---------------*/
  @media (max-width: 900px) {
	.carte-doucy-section {
	  margin-bottom: 32px;
	}
	.carte-doucy-image {
	  border-radius: 10px;
	}
  }

  @media (max-width: 600px) {
	.carte-doucy-section {
	  margin-bottom: 20px;
	  padding-left: 0.5rem;
	  padding-right: 0.5rem;
	}
	.carte-doucy-image {
	  border-radius: 8px;
	}
  }

  /* ================= Section RESERVATION RESULT ================= */

  /* Composant principal */
  .result-reservation {
	width: 100%;
	padding: 2rem 0;
  }

  /* Header */
  .result-reservation__header {
	margin-bottom: 0rem;
  }

  .result-reservation__title {
	font-size: 30px;
	font-weight: 400;
	line-height: 38px;
	color: var(--color-text);
	margin-left: 2rem;
	margin-bottom: 0;
  }

  .result-reservation__subtitle {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	margin-left: 2rem;
	margin-top: 0.5rem;
  }

  .result-reservation__highlight {
	color: var(--color-secondary);
  }

  .result-reservation__guarantee {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
	margin-top: 0.5rem;
	margin-left: 2rem;
  }

  .result-reservation__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	width: 100%;
  }

  .result-reservation__card {
	background: var(--color-bg);
	border-radius: 8px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .result-reservation__card:hover {
	transform: translateY(-4px);
	box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  }

  .result-reservation__image {
	width: 100%;
	height: auto;
	aspect-ratio: 299/281;
	object-fit: cover;
	border-radius: 10px;
	padding: 0;
  }

  .result-reservation__content {
	padding: 0 17px 17px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
  }

  .result-reservation__card-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-primary);
	margin: 0;
  }

  .result-reservation__availability {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: rgba(214, 39, 57, 0.8);
	margin: 0;
  }

  .result-reservation__pricing {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.5rem;
  }

  .result-reservation__price-line {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: #404f65;
  }

  .result-reservation__price-line--total {
	font-weight: 700;
	margin-top: 0.25rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .result-reservation__button {
	width: 100%;
	max-width: 224px;
	margin: 1rem auto 0;
	padding: 16px 28px;
	background: rgba(214, 39, 57, 0.8);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
	font-family: var(--font-text), sans-serif;
	cursor: pointer;
	box-shadow: 0px 1px 2px rgba(105, 81, 255, 0.05);
	transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .result-reservation__button:hover {
	background: rgba(214, 39, 57, 1);
	transform: scale(1.02);
  }

  .result-reservation__button:active {
	transform: scale(0.98);
  }

  /*----------- Responsive Design ---------------*/

  @media (max-width: 1024px) {
	.result-reservation__grid {
	  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	  gap: 1.25rem;
	}

	.result-reservation__title {
	  font-size: 26px;
	  line-height: 34px;
	}

	.result-reservation__subtitle {
	  font-size: 18px;
	  line-height: 28px;
	}
  }

  @media (max-width: 768px) {
	.result-reservation {
	  padding: 1.5rem 0;
	}

	.result-reservation__header {
	  margin-bottom: 2rem;
	}

	.result-reservation__title {
	  font-size: 22px;
	  line-height: 30px;
	}

	.result-reservation__subtitle {
	  font-size: 16px;
	  line-height: 24px;
	}

	.result-reservation__guarantee {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__grid {
	  grid-template-columns: 1fr;
	  gap: 1rem;
	}

	.result-reservation__card-title {
	  font-size: 18px;
	  line-height: 26px;
	}

	.result-reservation__availability,
	.result-reservation__price-line {
	  font-size: 14px;
	  line-height: 20px;
	}

	.result-reservation__button {
	  font-size: 16px;
	  padding: 14px 24px;
	}
  }

  @media (max-width: 480px) {
	.result-reservation__title {
	  font-size: 20px;
	  line-height: 28px;
	}

	.result-reservation__subtitle {
	  font-size: 14px;
	  line-height: 22px;
	}

	.result-reservation__content {
	  padding: 0 12px 12px;
	}

	.result-reservation__image {
	  padding: 0;
	}
  }

  /* ================= Section carte doucy ================= */

  .carte-doucy-section {
	text-align: center;
	margin-bottom: 48px;
	margin: 4rem;
  }

  .carte-doucy-image {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	display: inline-block;
  }

  /*----------- Responsive Design ---------------*/
  @media (max-width: 900px) {
	.carte-doucy-section {
	  margin-bottom: 32px;
	}
	.carte-doucy-image {
	  border-radius: 10px;
	}
  }

  @media (max-width: 600px) {
	.carte-doucy-section {
	  margin-bottom: 20px;
	  padding-left: 0.5rem;
	  padding-right: 0.5rem;
	}
	.carte-doucy-image {
	  border-radius: 8px;
	}
  }