/** Shopify CDN: Minification failed

Line 47:20 Unexpected "{"
Line 47:29 Expected ":"
Line 47:36 Unexpected "{"

**/


/* CSS from section stylesheet tags */
/* Variables de couleurs */
  :root {
    --color-primary: #54a085;
    --color-primary-light: #a5d6a7;
    --color-primary-dark: #2e7d32;
    --color-primary-bg: #e8f5e9;
    --color-primary-hover: #f0f9f4;
    
    --color-secondary: #4CAF50;
    
    --color-gradient: linear-gradient(270deg, #f2ea6c, #b9d9b6 50%, #75d8d8);
    
    --color-error: #e74c3c;
    --color-error-light: #fdf3f2;
    
    --color-text: #333333;
    --color-text-light: #455a64;
    --color-text-lighter: #78909c;
    --color-text-success: #2e7d32;
    
    --color-border: #e0e0e0;
    --color-border-light: #cfd8dc;
    
    --color-gray: #979797;
    --color-gray-light: #ccccd7;
    --color-gray-medium: #888888;
    --color-gray-dark: #555555;
    
    --color-background: #f9f9f9;
    --color-background-light: #f8f9fa;
    --color-background-lighter: #f5f5f5;
    --color-background-lightest: #f0f0f0;
    
    --color-white: #ffffff;
  }
  
  #shopify-section-{{ section.id }} {
    --section-stack-intro: 41.6667%;
    --section-stack-main: 58.3334%;
  }
  
  /* Styles de base du formulaire */
  .bicycle-form {
    background-color: var(--color-background);
    border-radius: 30px;
    padding: 70px 30px 60px 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .form-content {
    background-color: var(--color-white);
    border-radius: 0.375rem;
    padding: 40px 40px 55px 40px;
    position: relative;
  }
  
  /* Styles de la barre de progression */
  .progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 85%;
    margin: 0 auto 15px auto;
  }
  
  .progress-container::before {
    content: none !important;
  }
  
  .progress-bar-segment {
    flex: 1;
    height: 3px;
    background-color: var(--color-gray-light);
    margin: 0 5px;
    transition: background-color 0.3s ease, height 0.3s ease;
  }
  
  /* Styles des étapes de progression */
  .progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    color: var(--color-gray);
  }
  
  .progress-step.active {
    background-color: var(--color-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    border-width: 2px;
  }
  
  /* Styles des champs de formulaire */
  .form-question {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
  }
  
  .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
  }
  
  select.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.2);
  }
  
  .form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
    outline: none;
  }
  
  .form-input.error {
    border-color: var(--color-error);
    background-color: var(--color-error-light);
  }
  
  .form-input.valid {
    border-color: var(--color-primary);
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
  }
  
  .input-container {
    position: relative;
  }
  
  .error-container {
    color: var(--color-error);
    font-size: 14px;
    margin-top: 5px;
    display: none;
    font-weight: 500;
    padding-left: 5px;
    border-left: 3px solid var(--color-error);
    animation: fadeIn 0.3s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .error-container:not(:empty) {
    display: block !important;
  }
  
  /* Style spécifique pour le conteneur d'erreur du champ de fichier */
  .file-input-container .error-container {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
  }
  
  .error-message {
    color: var(--color-error);
    font-size: 14px;
    margin-top: 5px;
    display: none;
  }
  
  .error-message.visible {
    display: block;
  }
  
  /* Styles pour l'en-tête du formulaire */
  .bicycle-form-header {
    text-align: center;
  }
  
  .bicycle-form-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-text);
  }
  
  .bicycle-form-description {
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 0;
    color: var(--color-text-light);
  }
  
  /* Ajout de styles pour les titres d'étape */
  .step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--color-text);
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
  }
  
  .step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gradient);
    border-radius: 2px;
  }
  
  /* Styles des boutons de navigation */
  .form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    width: 100%;
  }
  
  .next-step, .prev-step, .submit-form {
    border: none;
    border-radius: 10px;
    color: var(--color-text);
    background: var(--color-gradient) !important;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    min-width: 150px;
  }
  
  .next-step:hover, .prev-step:hover, .submit-form:hover {
    background-color: #45a049;
  }
  
  .prev-step {
    margin-right: 10px;
  }
  
  .next-step::after {
    margin-left: 8px;
  }
  
  .prev-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .prev-step .icon {
    transition: transform 0.2s ease-in-out;
  }

  .prev-step:hover .icon {
    transform: translateX(-4px);
  }
  
  /* Styles de mise en page */
  .form-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
  
  .form-col {
    flex: 1;
  }
  
  .bicycle-form__main {
    width: 100%;
    max-width: 100%;
  }
  
  .form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Styles pour l'image */
  .image-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-background-lighter);
    transition: all 0.3s ease;
  }
  
  .form-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  
  .bicycle-image-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    background-color: var(--color-background-lightest);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .bicycle-image-placeholder::after {
    content: '🚲';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
  }
  
  /* Styles pour le champ d'upload de fichier */
  .file-input-container {
    position: relative;
    width: 100%;
  }
  
  .file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
  }
  
  .file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 120px;
    padding: 15px;
    background: var(--color-background-light);
    border: 2px dashed var(--color-border-light);
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .file-input-label:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-hover);
  }
  
  .file-input-label .upload-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }
  
  .file-input-label .upload-text {
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--color-text-light);
  }
  
  .file-input-label .upload-hint {
    font-size: 12px;
    color: var(--color-text-lighter);
    margin-top: 5px;
    font-weight: normal;
    transition: all 0.3s ease;
  }
  
  .file-input-label.has-file {
    background-color: var(--color-primary-bg);
    border-style: solid;
    border-color: var(--color-primary-light);
  }
  
  .file-input-label.has-file .upload-icon,
  .file-input-label.has-file .upload-text,
  .file-input-label.has-file .upload-hint {
    display: none;
  }
  
  .file-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 15px;
    color: var(--color-text-success);
    font-weight: 500;
    text-align: center;
    word-break: break-word;
    background-color: transparent;
  }
  
  .file-input-label:not(.has-file) .file-name {
    display: none;
  }
  
  .file-input-label.error {
    border-color: var(--color-error);
    background-color: var(--color-error-light);
    box-shadow: 0 0 0 1px var(--color-error);
  }
  
  /* Style pour le bouton de suppression de fichier */
  .file-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
  }
  
  .file-input-label:not(.has-file) ~ .file-remove {
    display: none;
  }
  
  .file-remove:hover {
    transform: scale(1.1);
    color: var(--color-gray-dark);
  }
  
  /* Styles responsive */
  @media (max-width: 767px) {
    .form-content {
      padding: 20px;
    }
    
    .form-row {
      flex-direction: column;
      gap: 20px;
    }
    .form-col {
      width: 100%;
    }
    
    .form-content {
      padding: 20px 15px 30px 15px;
    }
    
    .progress-container {
      width: 100%;
      overflow-x: hidden; /* Empêcher le scroll horizontal */
      padding: 0 10px 5px 10px;
      margin-bottom: 0;
      justify-content: space-between; /* Répartir équitablement les étapes */
    }
    
    .progress-step {
      width: 22px; /* Réduire la taille pour qu'ils tiennent tous */
      height: 22px;
      font-size: 10px; /* Réduire la taille de la police */
      margin: 0 2px; /* Réduire les marges */
    }
    
    .progress-bar-segment {
      min-width: 10px; /* Réduire la largeur minimale */
      max-width: none; /* Permettre aux segments de s'adapter */
      flex: 1; /* Répartir équitablement l'espace disponible */
      margin: 0 2px;
    }
    
    /* Correction du bug de mise en page sur mobile */
    .form-step {
      width: 100%;
      overflow-x: hidden;
    }
    
    .form-step img {
      max-width: 100%;
      height: auto;
      max-height: 250px;
      object-fit: contain;
    }
    
    .step-title {
      font-size: 20px;
      margin-bottom: 30px;
      text-align: center;
      width: 100%; /* S'assurer que le titre prend toute la largeur */
      display: block; /* Transformer en bloc pour le centrage */
      padding-bottom: 8px; /* Ajuster le padding pour le soulignement */
    }
    
    .step-title::after {
      left: 50%; /* Centrer la ligne de soulignement */
      transform: translateX(-50%); /* Ajustement pour le centrage parfait */
      width: 80%; /* Réduire la largeur de la ligne pour qu'elle soit plus courte que le texte */
    }
    
    /* Ajustement des boutons de navigation sur mobile */
    .form-navigation {
      flex-direction: row;
      gap: 10px;
      justify-content: space-between;
    }
    
    .next-step, .prev-step, .submit-form {
      min-width: auto;
      padding: 10px 15px;
      font-size: 14px;
    }
    
    /* Ajustement du conteneur de téléchargement de fichiers */
    .file-input-label {
      height: 100px;
    }
    
    .file-input-label .upload-text {
      font-size: 14px;
      text-align: center;
    }
    
    .file-input-label .upload-hint {
      font-size: 11px;
      text-align: center;
    }
    
    /* Ajustement des exemples d'images */
    .bicycle-image-container {
      max-width: 100%;
      overflow: hidden;
    }
    
    .bicycle-image {
      max-width: 100%;
      height: auto;
    }
    
    /* Styles pour l'en-tête */
    .bicycle-form-title {
      font-size: 32px;
      margin-bottom: 15px;
    }
    
    .bicycle-form-description {
      font-size: 16px;
    }
    
    /* Styles pour le formulaire */
    .bicycle-form {
      padding: 30px 15px;
      border-radius: 15px;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
    }
    
    .section-stack--center {
      padding: 0;
    }
    
    .bicycle-form__main {
      width: 100%;
      max-width: 100%;
      padding: 0;
    }
    
    .form-content {
      padding: 20px 15px 30px 15px;
      border-radius: 8px;
    }
  }
  
  /* Ajout du style CSS pour l'avertissement de validation en temps réel */
  .validation-warning {
    border-color: #f0ad4e !important;
    background-color: rgba(240, 173, 78, 0.05) !important;
  }
  
  .validation-warning:focus {
    box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.25) !important;
  }
  
  /* Styles pour l'indicateur de chargement */
  .loading-indicator {
    display: none;
    text-align: center;
    margin-top: 15px;
  }
  
  .loading-indicator.active {
    display: block;
  }
  
  .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(var(--color-primary-rgb), 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s ease-in-out infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* Styles pour le message de confirmation */
  .success-message {
    display: none;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px 30px;
    margin: 30px auto;
    text-align: center;
    max-width: 600px;
    transition: all 0.3s ease;
    border: none;
  }
  
  .success-message.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Styles pour le message d'erreur */
  .form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  /* Styles pour l'indicateur de chargement dans le bouton */
  .button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
  }
  
  /* Styles pour le message d'erreur */
  .error-message {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
  }
  
  .error-message.active {
    display: block;
    animation: fadeIn 0.5s;
  }
  
  /* Styles pour le bouton avec spinner */
  .form-submit-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
    display: none;
  }
  
  .form-navigation button:hover {
    opacity: 0.9;
  }

  .next-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .next-step .icon {
    transition: transform 0.2s ease-in-out;
  }

  .next-step:hover .icon {
    transform: translateX(4px);
  }

  .form-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  .form-submit-button.loading::after {
    content: none; /* Masquer la flèche pendant le chargement */
  }
  
  /* Style du message de maintenance */
  .maintenance-message {
    background-color: var(--color-background);
    padding: 70px 30px 60px 30px;
    width: 100%;
    text-align: center;
    line-height: normal;
  }
  
  .maintenance-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .maintenance-message h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .maintenance-content {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text);
  }