/* Styles pour la section QR Code */
.qr-code-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 198, 135, 0.2);
  text-align: center;
}

.qr-code-section h3 {
  color: #e5c687;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.qr-code-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.qr-code-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 10px;
}

.qr-code-text {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .qr-code-section {
    margin-top: 1.5rem;
    padding: 1rem;
  }
  
  .qr-code-image {
    max-width: 150px;
  }
  
  .qr-code-section h3 {
    font-size: 1.3rem;
  }
}
