/* Styles CSS pour Renov'Optique - Basé sur les captures d'écran */

/* Variables de couleurs */



:root {
    --primary-blue: #4299e1;
    --primary-blue-hover: #3182ce;
    --primary-blue-light: #90cdf4;
    --secondary-gray: #718096;
    --secondary-gray-hover: #4a5568;
    --dark-blue: #1e293b;
    --light-gray: #e2e8f0;
    --lighter-gray: #f7fafc;
    --danger-red: #e53e3e;
    --success-green: #38a169;
    --stripe-green: #00c57d;
    --stripe-blue: #0a85ea;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #e2e8f0;
}

.risks ul, .benefits ul {
  list-style-type: none;
  margin-top: 1rem;
}

.risks li, .benefits li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.risks li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
}

.benefits li::before {
  content: '✅';
  position: absolute;
  left: 0;
}


.container {
    
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--dark-blue);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: var(--dark-blue);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-gray);
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background-color: #D3D3D3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark-blue);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-blue-hover);
}

.btn-secondary {
    background-color: var(--secondary-gray);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-gray-hover);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Risques Section */
.risques {
    background-color: var(--lighter-gray);
}

.risques-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.risques-box {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.risques-box h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 0.5rem;
}

.risques-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-blue);
}

.risques-box ul {
    list-style: none;
}

.risques-box li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.risques-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-blue);
}

/* Comparaison Section */
.comparaison {
    background-color: white;
}

.table-responsive {
    overflow-x: auto;
    
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--dark-blue);
}

.comparison-table th {
    background-color: var(--dark-blue);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: 1px solid var(--dark-blue);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--lighter-gray);
}

/* Services Section */
.services {
    background-color: var(--lighter-gray);
}

.services-container {
   
    display: flex;
  flex-wrap: wrap;
  gap: 20px; /* espace entre les cartes */
  justify-content: space-between;
  
}

.service-card {
    
    
  flex: 1 1 calc(25% - 20px); /* 4 cartes par ligne avec espace */
  background-color: #D3D3D3;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-content {
  margin-top: 10px;
  flex-grow: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}


.service-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-options {
    margin-bottom: 1.5rem;
}

.option {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.option input[type="radio"] {
    margin-right: 0.5rem;
}

.option label {
    cursor: pointer;
}

/* Info Box */
.info-box {
    background-color: #f08d8d;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-blue);
}

.info-content h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.info-content h3::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

/* Réservation Box */
.reservation-box {
    background-color: #D3D3D3;
    border-radius: var(--border-radius);
    
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--box-shadow);
}

.reservation-box h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.ville-selection {
    margin-bottom: 1.5rem;
}

.ville-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ville-selection select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background-color: white;
}

.total {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.error-message {
    color: var(--danger-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

/* Zone d'Intervention Section */
.zone-intervention {
    background-color: white;
}

.zones-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.zone {
    background-color: var(--lighter-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.zone h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.zone-price {
    color: var(--secondary-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.zone ul {
    list-style: none;
}

.zone li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.zone li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* Témoignages Section */
.temoignages {
    background-color: var(--lighter-gray);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

.rating {
    color: #f59e0b;
    font-size: 1.2rem;
}

.star {
    margin-right: 2px;
}

/* Contact Section */
.contact {
    background-color: var(--dark-blue);
    color: rgb(0, 0, 0);
    
}

.contact .section-title, .contact .section-subtitle {
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form, .contact-info {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.contact-form h3, .contact-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-form p, .contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0rem;
}

.form-group {
    background-color: #e0e0e0;
     border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.form-group label {
    background-color: #cecece;
    border-radius: var(--border-radius);
    display: block;
    margin-bottom:0,5rem;
   
    font-weight: 500;
    
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgb(255, 255, 255);
    border-radius: var(--border-radius);
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.hidden {
    display: none;
}

.success-message {
    background-color: var(--success-green);
    color: rgb(7, 7, 7);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    display: none;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--primary-blue-light);
    transition: var(--transition);
}

.info-item a:hover {
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4, .footer-contact h4, .footer-service h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact p, .footer-service p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Confirmation Page */
.confirmation-section {
    padding: 4rem 0;
    background-color: var(--lighter-gray);
    min-height: calc(100vh - 200px);
}

.recap-box {
    background-color: #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.recap-box h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.recap-box h3::before {
    content: '\f07a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.recap-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recap-item:last-child {
    border-bottom: none;
}

.recap-total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    background-color: #CECECE;
    border-radius: var(--border-radius);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: grid;
    
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
    
}

.checkbox-option {
    display: flex;
    align-items: center;
}

.form-field {
  color: #000 !important;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.form-hint {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    margin-bottom: 0.5rem;
}

.payment-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

/* Stripe Modal */
.stripe-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.stripe-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.stripe-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.stripe-element {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.stripe-errors {
    color: var(--danger-red);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.stripe-submit {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .payment-buttons {
        grid-template-columns: 1fr;
    }
}    
@media (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 20px); /* 2 par ligne */
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 1 1 100%; /* 1 par ligne */
  }
} 




/* Styles spécifiques pour la page de confirmation */
.confirmation-page {
    background-color: #f7fafc;
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.confirmation-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.confirmation-icon i {
    font-size: 4rem;
    color: var(--success-green);
}

.confirmation-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.confirmation-message {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-gray);
}

.confirmation-details {
    margin-bottom: 2rem;
}

.confirmation-details h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 600;
}

.confirmation-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Styles pour les boutons de paiement */
.payment-button-blue {
    background-color: #6b9eee;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.payment-button-blue:hover {
    background-color: #5a8de0;
}

.payment-button-gray {
    background-color: #8892a0;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.payment-button-gray:hover {
    background-color: #767f8e;
}

/* Styles pour les champs de formulaire */
.form-field {
    background-color:#ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 2px;
}

.form-field:focus {
    outline: none;
    border-color: #6b9eee;
    box-shadow: 0 0 0 3px rgba(107, 158, 238, 0.1);
}

/* Styles pour les cases à cocher des jours */

.day-checkbox-container {
     
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 colonnes */
    gap: 10px;
    margin-top: 10px;
}

.day-checkbox {
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    border-radius: 6px;
    border: 2px solid #cecece;
    font-weight: 500;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
} 



.day-checkbox input[type="checkbox"] {
    margin-right: 12px;
}

.day-checkbox:hover {
  background-color: #c6c7c9;
}

.day-checkbox.selected {
    background-color: #e6f0ff;
    border-color: #6b9eee;
}

/* Styles pour le sélecteur d'heure */
.time-select {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238892a0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.time-select:focus {
    outline: none;
    border-color: #6b9eee;
    box-shadow: 0 0 0 3px rgba(107, 158, 238, 0.1);
}

/* Styles pour le récapitulatif */
.recap-container {
    background-color: #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.recap-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recap-header-icon {
    color: #4a5568;
    margin-right: 10px;
    font-size: 20px;
}

.recap-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recap-item:last-child {
    border-bottom: none;
}

.recap-total {
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.ville-item {
    display: flex;
    align-items: center;
}

.ville-icon {
    color: #4a5568;
    margin-right: 8px;
}

/* Styles pour les boutons de paiement */
.payment-button-stripe {
    background-color: #6b9eee;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.payment-button-stripe:hover {
    background-color: #5a8de0;
}

.payment-button-onsite {
    background-color: #8892a0;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.payment-button-onsite:hover {
    background-color: #767f8e;
}

/* Styles pour la page Stripe */
.stripe-checkout-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stripe-checkout-summary {
    flex: 1;
    padding: 30px;
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
}

.stripe-checkout-payment {
    flex: 1;
    padding: 30px;
}

.stripe-checkout-header {
    margin-bottom: 20px;
}

.stripe-checkout-total {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stripe-checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.stripe-checkout-form {
    margin-top: 20px;
}

.stripe-checkout-field {
    margin-bottom: 20px;
}

.stripe-checkout-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.stripe-checkout-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.stripe-checkout-button {
    background-color: #00c57d;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.stripe-checkout-button:hover {
    background-color: #00b371;
}

.stripe-checkout-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.stripe-checkout-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e2e8f0;
}

.stripe-checkout-divider span {
    position: relative;
    background-color: white;
    padding: 0 10px;
    color: #8892a0;
}

.stripe-checkout-cards {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.stripe-checkout-cards img {
    height: 24px;
    margin-left: 8px;
}

.stripe-checkout-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #8892a0;
}

.stripe-checkout-footer a {
    color: #6b9eee;
    text-decoration: none;
}

.stripe-checkout-footer a:hover {
    text-decoration: underline;
}
#license {
  text-transform: uppercase;
  color: black; /* Assure la visibilité du texte sur fond blanc */
}