/* ============================================
   CONSENT CHECKBOX - Compatible tous navigateurs
   ============================================ */

.consent-wrapper {
  margin: 16px 0;
  padding: 0;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.consent-input {
  /* Reset de base */
  margin: 0;
  padding: 0;
  
  /* Taille fixe pour compatibilité */
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  
  /* Positionnement */
  flex-shrink: 0;
  margin-top: 2px;
  
  /* Style de base */
  cursor: pointer;
  
  /* Apparence native pour compatibilité maximale */
  appearance: auto;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

.consent-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.consent-link {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.consent-link:hover {
  color: #004499;
}

.consent-link:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* États de focus pour accessibilité */
.consent-input:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .consent-text {
    font-size: 13px;
  }
  
  .consent-input {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
  }
}
