/* Start custom CSS for html, class: .elementor-element-zsondhi */:root {
  --fv-primary: #E4262A;
  --fv-primary-dark: #C81F23;
  --fv-primary-hover: #D72025;
  --fv-primary-soft: #FFF3F3;
  --fv-primary-softer: #FFF8F8;

  --fv-text: #222326;
  --fv-text-secondary: #62656A;
  --fv-text-light: #8A8D91;

  --fv-border: #E1E3E6;
  --fv-border-dark: #CED1D5;

  --fv-background: #F7F8F9;
  --fv-white: #FFFFFF;

  --fv-success: #15804E;
  --fv-success-soft: #EFFAF4;

  --fv-danger: #B42318;
  --fv-danger-soft: #FFF2F0;

  --fv-radius-small: 10px;
  --fv-radius: 14px;
  --fv-radius-large: 22px;

  --fv-shadow:
    0 18px 55px rgba(20, 24, 30, 0.08);

  --fv-shadow-small:
    0 5px 20px rgba(20, 24, 30, 0.06);
}


/* =========================================================
   PAGE
   ========================================================= */

.fv-return-page {
  min-height: 100vh;
  padding: 42px 18px 70px;
  box-sizing: border-box;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(228, 38, 42, 0.08) 0,
      rgba(228, 38, 42, 0) 420px
    ),
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F7F8F9 100%
    );

  color: var(--fv-text);
  font-family: inherit;
}


.fv-return-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.fv-return-header {
  max-width: 760px;
  margin: 0 0 28px;
}


.fv-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 13px;
  padding: 7px 12px;

  border-radius: 100px;

  background: var(--fv-primary-soft);
  color: var(--fv-primary);

  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.09em;
}


.fv-return-header h1 {
  margin: 0 0 12px;

  color: var(--fv-text);

  font-size: clamp(34px, 5vw, 48px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
}


.fv-return-header p {
  max-width: 690px;
  margin: 0;

  color: var(--fv-text-secondary);

  font-size: 16px;
  line-height: 1.65;
}


/* =========================================================
   FORMULAIRE
   ========================================================= */

.fv-form {
  padding: clamp(24px, 5vw, 42px);

  border: 1px solid rgba(224, 226, 229, 0.9);
  border-radius: var(--fv-radius-large);

  background: var(--fv-white);

  box-shadow: var(--fv-shadow);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.fv-form-section {
  margin-bottom: 34px;
}


.fv-form-section:last-of-type {
  margin-bottom: 28px;
}


.fv-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;

  margin-bottom: 20px;
}


.fv-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--fv-primary);
  color: #FFFFFF;

  font-size: 13px;
  font-weight: 800;
}


.fv-section-title {
  margin: 1px 0 3px;

  color: var(--fv-text);

  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}


.fv-section-description {
  margin: 0;

  color: var(--fv-text-light);

  font-size: 13px;
  line-height: 1.5;
}


.fv-section-divider {
  height: 1px;

  margin: 0 0 32px;

  border: 0;

  background: #ECEDEF;
}


/* =========================================================
   GRILLES
   ========================================================= */

.fv-grid {
  display: grid;
  gap: 18px;
}


.fv-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =========================================================
   CHAMPS
   ========================================================= */

.fv-field {
  min-width: 0;
  margin-bottom: 19px;
}


.fv-grid .fv-field {
  margin-bottom: 0;
}


.fv-field > label {
  display: block;

  margin: 0 0 8px;

  color: #303236;

  font-size: 13.5px;
  font-weight: 750;
  line-height: 1.35;
}


.fv-required {
  color: var(--fv-primary);
}


.fv-field input:not([type="file"]),
.fv-field select,
.fv-field textarea {
  width: 100%;

  box-sizing: border-box;

  border: 1px solid var(--fv-border-dark);
  border-radius: var(--fv-radius-small);

  outline: none;

  background: #FFFFFF;
  color: var(--fv-text);

  font: inherit;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}


.fv-field input:not([type="file"]),
.fv-field select {
  min-height: 52px;
  padding: 0 14px;
}


.fv-field textarea {
  min-height: 125px;
  padding: 14px;

  line-height: 1.5;

  resize: vertical;
}


.fv-field input:hover:not(:disabled),
.fv-field select:hover:not(:disabled),
.fv-field textarea:hover {
  border-color: #B9BDC2;
}


.fv-field input:focus,
.fv-field select:focus,
.fv-field textarea:focus {
  border-color: var(--fv-primary);

  box-shadow:
    0 0 0 4px rgba(228, 38, 42, 0.10);
}


.fv-field select:disabled,
.fv-field input:disabled {
  border-color: #E2E4E6;

  background: #F4F5F6;

  color: #92969B;

  cursor: not-allowed;
}


.fv-field small {
  display: block;

  margin-top: 7px;

  color: var(--fv-text-light);

  font-size: 12px;
  line-height: 1.45;
}


.fv-field small.is-error {
  color: var(--fv-danger);
}


/* =========================================================
   SELECT + LOADER
   ========================================================= */

.fv-select-wrap {
  position: relative;
}


.fv-loader {
  position: absolute;

  top: 50%;
  right: 14px;

  width: 17px;
  height: 17px;

  margin-top: -8.5px;

  border: 2px solid #DADDE0;
  border-top-color: var(--fv-primary);
  border-radius: 50%;

  animation: fv-spin 0.65s linear infinite;

  pointer-events: none;
}


@keyframes fv-spin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   ETAT DU PRODUIT
   ========================================================= */

.fv-choice-card {
  margin: 0;
  padding: 20px;

  border: 1px solid var(--fv-border);
  border-radius: var(--fv-radius);

  background: #FAFAFB;
}


.fv-choice-card legend {
  padding: 0 7px;

  color: var(--fv-text);

  font-size: 14px;
  font-weight: 750;
}


.fv-radio-group {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;
}


.fv-radio {
  display: flex;
  align-items: flex-start;

  min-height: 92px;

  gap: 12px;

  padding: 16px;

  box-sizing: border-box;

  border: 1px solid #D6D9DD;
  border-radius: 12px;

  background: #FFFFFF;

  cursor: pointer;

  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.15s ease;
}


.fv-radio:hover {
  border-color: #B9BDC2;
  transform: translateY(-1px);
}


.fv-radio:has(input:checked) {
  border-color: var(--fv-primary);

  background: var(--fv-primary-softer);

  box-shadow:
    0 0 0 3px rgba(228, 38, 42, 0.09);
}


.fv-radio input {
  flex: 0 0 auto;

  width: 19px;
  height: 19px;

  margin: 2px 0 0;

  accent-color: var(--fv-primary);
}


.fv-radio > span {
  display: block;

  color: var(--fv-text);

  font-size: 14px;
  line-height: 1.45;
}


.fv-radio strong {
  display: block;

  margin-bottom: 4px;

  color: var(--fv-text);

  font-size: 14px;
  font-weight: 750;
}


.fv-radio small {
  display: block;

  margin: 0;

  color: var(--fv-text-light);

  font-size: 12.5px;
  line-height: 1.45;
}


/* =========================================================
   MESSAGE PRODUIT OUVERT
   ========================================================= */

.fv-block-message {
  margin-top: 15px;

  padding: 16px 18px;

  border: 1px solid #F0B4AE;
  border-radius: 12px;

  background: var(--fv-danger-soft);

  color: var(--fv-danger);
}


.fv-block-message strong {
  display: block;

  margin-bottom: 5px;

  font-size: 14px;
  font-weight: 800;
}


.fv-block-message p {
  margin: 0;

  font-size: 13.5px;
  line-height: 1.5;
}


/* =========================================================
   UPLOAD
   ========================================================= */

.fv-upload-wrapper {
  margin-top: 4px;
}


.fv-upload-box {
  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 260px;

  box-sizing: border-box;

  padding: 34px 26px;

  border: 2px dashed #C9CCD0;
  border-radius: 18px;

  background: #FBFBFC;

  cursor: pointer;

  text-align: center;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}


.fv-upload-box:hover,
.fv-upload-box.is-dragover {
  border-color: var(--fv-primary);

  background: var(--fv-primary-softer);

  box-shadow:
    0 0 0 4px rgba(228, 38, 42, 0.06);
}


.fv-upload-box:active {
  transform: scale(0.997);
}


.fv-upload-input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}


.fv-upload-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 66px;
  height: 66px;

  margin-bottom: 20px;

  border-radius: 50%;

  background: var(--fv-primary);

  color: #FFFFFF;

  font-size: 40px;
  font-weight: 300;
  line-height: 1;

  box-shadow:
    0 9px 22px rgba(228, 38, 42, 0.20);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.fv-upload-box:hover .fv-upload-icon {
  transform: scale(1.05);

  background: var(--fv-primary-dark);
}


.fv-upload-title {
  display: block;

  margin-bottom: 5px;

  color: #3D3F43;

  font-size: 17px;
  font-weight: 750;
  line-height: 1.4;
}


.fv-upload-description {
  max-width: 500px;

  margin: 0;

  color: var(--fv-text-secondary);

  font-size: 14px;
  line-height: 1.55;
}


.fv-upload-formats {
  margin-top: 11px !important;

  color: #7B7E83 !important;

  font-size: 12.5px !important;
}


/* Fichier sélectionné */

.fv-upload-box.has-file {
  border-style: solid;
  border-color: #9DD3B8;

  background: var(--fv-success-soft);
}


.fv-upload-box.has-file .fv-upload-icon {
  background: var(--fv-success);

  box-shadow:
    0 9px 22px rgba(21, 128, 78, 0.15);
}


.fv-upload-file {
  display: none;

  max-width: 100%;

  margin-top: 13px;

  padding: 9px 13px;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.85);

  color: var(--fv-success);

  font-size: 13px;
  font-weight: 750;

  word-break: break-word;
}


.fv-upload-box.has-file .fv-upload-file {
  display: block;
}


/* =========================================================
   CONSENTEMENT
   ========================================================= */

.fv-consent-box {
  margin-top: 26px;

  padding: 16px 17px;

  border: 1px solid var(--fv-border);
  border-radius: 12px;

  background: #FAFAFB;
}


.fv-consent {
  display: flex;
  align-items: flex-start;

  gap: 11px;

  margin: 0;

  cursor: pointer;
}


.fv-consent input {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  margin: 2px 0 0;

  accent-color: var(--fv-primary);
}


.fv-consent span {
  color: #55585D;

  font-size: 13px;
  line-height: 1.55;
}


/* =========================================================
   BOUTON ENVOI
   ========================================================= */

.fv-submit {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 56px;

  margin-top: 22px;

  border: 0;
  border-radius: 11px;

  background: var(--fv-primary);

  color: #FFFFFF;

  font-size: 15px;
  font-weight: 850;

  letter-spacing: 0.01em;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(228, 38, 42, 0.18);

  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}


.fv-submit:hover:not(:disabled) {
  transform: translateY(-1px);

  background: var(--fv-primary-dark);

  box-shadow:
    0 11px 25px rgba(228, 38, 42, 0.23);
}


.fv-submit:active:not(:disabled) {
  transform: translateY(0);
}


.fv-submit:disabled {
  background: #D8DADC;

  color: #8A8E92;

  box-shadow: none;

  cursor: not-allowed;
}


/* Cas spécifique : produit ouvert */

.fv-form.is-product-opened .fv-submit {
  background: #D8DADC;
  color: #8A8E92;

  box-shadow: none;

  cursor: not-allowed;
}


/* =========================================================
   STATUT
   ========================================================= */

.fv-form-status {
  margin: 16px 0 0;

  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;

  text-align: center;
}


.fv-form-status:empty {
  display: none;
}


.fv-form-status.is-error {
  color: var(--fv-danger);
}


.fv-form-status.is-success {
  color: var(--fv-success);
}


.fv-form-status.is-info {
  color: var(--fv-text-secondary);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .fv-return-page {
    padding: 24px 10px 45px;
  }


  .fv-grid-2,
  .fv-radio-group {
    grid-template-columns: 1fr;
  }


  .fv-grid {
    gap: 19px;
  }


  .fv-form {
    padding: 23px 18px;

    border-radius: 17px;
  }


  .fv-return-header {
    padding: 0 4px;
  }


  .fv-return-header h1 {
    font-size: 34px;
  }


  .fv-return-header p {
    font-size: 14px;
  }


  .fv-section-heading {
    gap: 10px;
  }


  .fv-section-number {
    width: 27px;
    height: 27px;

    font-size: 12px;
  }


  .fv-section-title {
    font-size: 16px;
  }


  .fv-radio {
    min-height: auto;
  }


  .fv-upload-box {
    min-height: 220px;

    padding: 28px 17px;

    border-radius: 14px;
  }


  .fv-upload-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 16px;

    font-size: 35px;
  }


  .fv-upload-title {
    font-size: 15px;
  }


  .fv-upload-description {
    font-size: 13px;
  }

}

/* =========================================================
   BLOC "AVANT DE COMMENCER"
   ========================================================= */

.fv-info-card {
  margin: 0 0 28px;

  padding: 22px 26px;

  border-left: 5px solid var(--fv-primary);
  border-radius: 16px;

  background: #FFF5F5;

  box-shadow:
    0 5px 18px rgba(20, 24, 30, 0.03);
}


.fv-info-card strong {
  display: block;

  margin-bottom: 7px;

  color: var(--fv-text);

  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}


.fv-info-card p {
  margin: 0;

  color: #675052;

  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   OPTIMISATIONS MOBILE SUPPLÉMENTAIRES
   ========================================================= */

@media (max-width: 720px) {

  /* Évite tout débordement horizontal */
  .fv-return-page,
  .fv-return-shell,
  .fv-form,
  .fv-form-section,
  .fv-field,
  .fv-select-wrap,
  .fv-upload-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }


  /* Formulaire un peu plus confortable sur petits écrans */
  .fv-form {
    padding: 22px 16px;
  }


  /* Champs suffisamment grands pour le tactile */
  .fv-field input:not([type="file"]),
  .fv-field select {
    min-height: 50px;

    font-size: 16px;
  }


  .fv-field textarea {
    font-size: 16px;
  }


  /* Important sur iPhone :
     évite le zoom automatique lors du clic dans un champ */
  .fv-field input,
  .fv-field select,
  .fv-field textarea {
    font-size: 16px;
  }


  /* Selects longs */
  .fv-field select {
    text-overflow: ellipsis;
  }


  /* Bloc produit ouvert */
  .fv-choice-card {
    padding: 15px;
  }


  .fv-radio {
    width: 100%;
    padding: 15px;
  }


  /* Zone upload */
  .fv-upload-box {
    width: 100%;
    min-height: 200px;

    padding: 25px 15px;
  }


  /* Nom de fichier long */
  .fv-upload-file {
    max-width: 100%;
    box-sizing: border-box;

    overflow-wrap: anywhere;
  }


  /* Bouton bien tactile */
  .fv-submit {
    min-height: 54px;

    font-size: 16px;
  }


  /* Bloc avant de commencer */
  .fv-info-card {
    padding: 18px 16px;

    border-radius: 13px;
  }


  .fv-info-card strong {
    font-size: 15px;
  }


  .fv-info-card p {
    font-size: 13px;
  }

}


/* Très petits téléphones */

@media (max-width: 380px) {

  .fv-return-page {
    padding-left: 8px;
    padding-right: 8px;
  }


  .fv-form {
    padding: 20px 14px;
  }


  .fv-return-header h1 {
    font-size: 30px;
  }


  .fv-section-heading {
    gap: 9px;
  }


  .fv-section-description {
    font-size: 12px;
  }


  .fv-upload-box {
    padding: 22px 12px;
  }

}/* End custom CSS */