@charset "UTF-8";
/**
 * @file main.scss
 * @description Point d'entrée SCSS principal
 */
/**
 * @file _tokens.scss
 * @description Variables de design (couleurs, typo, espacements, breakpoints)
 */
/**
 * @file _reset.scss
 * @description Modern CSS reset (2026)
 * Inspiré de Andy Bell, Josh Comeau et les pratiques actuelles.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-height: 100svh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

a {
  color: inherit;
  text-decoration-skip-ink: auto;
}

table {
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

body {
  font-family: "Roboto", Arial, Helvetica, Nimbus Sans, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #323232;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1rem;
}

p:not(:last-child) {
  margin-bottom: 1rem;
}
p a {
  text-decoration: underline;
}
p a:hover {
  text-decoration: none;
}

.fs-9 {
  font-size: 0.5625rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-13 {
  font-size: 0.81rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-15 {
  font-size: 0.9375rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-21 {
  font-size: 1.3125rem;
}

.fs-22 {
  font-size: 1.375rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-27 {
  font-size: 1.6875rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-31 {
  font-size: 1.9375rem;
}

.fs-33 {
  font-size: 2.0625rem;
}

.fs-35 {
  font-size: 2.25rem;
}

.text-primary {
  color: #F48C34;
}

.text-secondary {
  color: #72C6F0;
}

.text-dark-secondary {
  color: #146DD5;
}

.text-black {
  color: #323232;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #646464;
}

.text-dark-gray {
  color: #2F3335;
}

.text-medium-gray {
  color: #9B9B9C;
}

.text-light-gray {
  color: #CDCDCD;
}

.text-dark-blue {
  color: #122E5C;
}

.bg-primary {
  background-color: #F48C34;
  color: #ffffff;
}

.bg-secondary {
  background-color: #72C6F0;
  color: #ffffff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-bold {
  font-weight: 700;
}

.text-non-bold {
  font-weight: 400;
}

#main-content {
  padding-block: 2rem;
  margin-top: 4.5rem;
}
@media (min-width: 768px) {
  #main-content {
    padding-block: 4rem;
  }
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

.v-grid {
  display: grid;
  gap: 1rem;
}
.v-grid--md {
  display: grid;
  gap: 2rem;
}

.h-flex {
  display: flex;
  gap: 1rem;
}

.article {
  background: #ffffff;
}
.article__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #122E5C;
  margin-bottom: 1rem;
}
.article__image {
  max-height: 30vh;
  min-width: clamp(100px, 50vw, 400px);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  margin-inline: auto;
}
.article__body {
  font-size: 0.875rem;
  color: #323232;
}
.article__body p {
  margin: 0;
}
.article h3, .article__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #122E5C;
  margin: 0;
}

a.logo {
  font-size: 1rem;
  color: #323232;
  text-decoration: none;
}

nav ul {
  list-style: none;
  padding: 0;
}
nav ul a {
  text-decoration: none;
}

ul {
  list-style: "* ";
  padding-left: 1rem;
}
ul li {
  margin-bottom: 0.5rem;
}

.partner-offer {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.partner-offer p.partner-offer__label {
  margin-bottom: 0.5rem;
}
.partner-offer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.detail-list {
  display: grid;
  margin: 0;
}
.detail-list .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid #F2F2F2;
}
.detail-list .detail-row dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.button {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.5em 1.5em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease;
}
.button--text {
  background: #72C6F0;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 80vw;
}
@media (min-width: 768px) {
  .button--text {
    min-width: unset;
    padding-inline: 3em;
  }
}
.button--h-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: auto 1fr;
}
.button--h-grid img {
  transform: scale(1.3);
}
.button:hover {
  background-color: rgb(50.0076923077, 172.1307692308, 233.1923076923);
}
.button--primary {
  background-color: #F48C34;
}
.button--primary:hover {
  background-color: rgb(224.6280373832, 109.5476635514, 12.1719626168);
}
.button--white {
  background-color: #ffffff;
  color: #F48C34;
}
.button--white:hover {
  background-color: #2F3335;
  color: #ffffff;
}
.button--small {
  padding-block: 0.25em;
  font-size: 0.875rem;
}
.button--icon {
  padding: 0.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.button--icon svg, .button--icon img {
  display: block;
  min-width: 20px;
}
.button--icon:hover {
  background-color: rgb(235.62, 240.66, 243.18);
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  background: transparent;
  border: 2px solid #323232;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.button-card {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  background-color: #F2F2F2;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 0.81rem;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  color: #323232;
  width: clamp(120px, 40vw, 200px);
  min-height: 100px;
  transition: background-color 0.3s ease;
}
.button-card img {
  width: 40px;
  height: auto;
}
.button-card:hover:not(.disabled) {
  background-color: #72C6F0;
  color: #323232;
  font-weight: bold;
}
.button-card.disabled {
  cursor: not-allowed;
  color: #646464;
  background-color: #CDCDCD;
}
.button-card.disabled sup {
  color: #323232;
  font-weight: bold;
}

input[type=text], input[type=email], input[type=tel], textarea, input[type=password], input[type=date], input[type=number], select {
  padding: 1em 1.25em;
  background: #F2F2F2;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: #2F3335;
  width: clamp(120px, 100%, 450px);
}
input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, textarea::placeholder, input[type=password]::placeholder, input[type=date]::placeholder, input[type=number]::placeholder, select::placeholder {
  color: #aaa;
}

input[type=checkbox] {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
}

select {
  background-image: url("/assets/images/icon-chevron-select.svg");
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  padding-right: 2.5em;
  background-size: 20px;
  font-size: 0.875rem;
  appearance: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select:focus {
  border: 2px solid #F48C34;
}

form fieldset {
  border: 0;
  display: grid;
  gap: 1rem;
}

.credit-amount-display {
  font-size: 2.25rem;
  background-color: #72C6F0;
  padding: 0em 1em;
  border-radius: 0.5em;
  color: #ffffff;
  text-align: center;
  width: clamp(300px, 65vw, 450px);
  margin-inline: auto;
}

.input-dollar {
  position: relative;
  display: inline-block;
}
.input-dollar > span {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #2F3335;
}
.input-dollar input[type=number] {
  background-color: #F2F2F2;
  border: none;
  border-radius: 0.5rem;
  padding-block: 0.5rem;
  padding-inline: 1.5rem 0.5rem;
  font-size: 1rem;
}

.slider-amount {
  display: grid;
  gap: 2rem;
}
.slider-amount__track {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
}
.slider-amount__label {
  font-size: 1.125rem;
  font-weight: bold;
  white-space: nowrap;
}
.slider-amount__label:last-of-type {
  color: #9B9B9C;
}
.slider-amount__info {
  font-size: 0.6875rem;
  color: #9B9B9C;
  text-align: right;
}
.slider-amount input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.slider-amount input[type=range]:focus-visible {
  outline: 2px solid #45AB85;
  outline-offset: 4px;
}
.slider-amount input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: #45AB85;
  border-radius: 3px;
}
.slider-amount input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #45AB85;
  margin-top: -11px; /* centrage vertical sur la piste */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.slider-amount input[type=range]::-moz-range-track {
  height: 6px;
  background: #ddd;
  border-radius: 3px;
}
.slider-amount input[type=range]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #45AB85;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.slider-amount input[type=range]::-moz-range-progress {
  background: #45AB85;
  height: 6px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}