/* Icône d'information pour les offres */
.audi-price-info-icon {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.audi-price-info-icon:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.audi-price-info-icon:hover circle {
  stroke: #333;
  stroke-width: 2;
}

.audi-price-info-icon:hover text {
  fill: #333;
  font-weight: 700;
}

.audi-price-info-icon:active {
  transform: translateY(0);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Modal pour les mentions légales des offres */
.audi-offer-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.audi-offer-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.audi-offer-modal-content {
  background-color: #2d3748;
  color: #ffffff;
  margin: auto;
  padding: 0;
  border-radius: 4px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

.audi-offer-modal-header {
  background-color: #1a202c;
  padding: 20px 24px;
  border-bottom: 1px solid #4a5568;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.audi-offer-modal-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.3px;
}

.audi-offer-modal-close {
  color: #cbd5e0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.audi-offer-modal-close:hover,
.audi-offer-modal-close:focus {
  color: #ffffff;
}

.audi-offer-modal-body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
  font-size: 14px;
  line-height: 1.7;
  color: #e2e8f0;
}

.audi-offer-modal-body p {
  margin: 0;
  text-align: justify;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .audi-offer-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .audi-offer-modal-header {
    padding: 16px 20px;
  }
  
  .audi-offer-modal-header h3 {
    font-size: 14px;
  }
  
  .audi-offer-modal-body {
    padding: 20px;
    font-size: 13px;
    max-height: calc(90vh - 70px);
  }
}
