.main-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.app-checkbox-appearance{
    appearance: auto!important;
}

/* Section Récapitulatif */
.summary-box {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); /* Couleur style Stripe/Indigo */
    color: white;
    padding: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Formulaire */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #4b5563;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
}

.form-control:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Badge de sécurité */
.security-badge {
    display: inline-flex;
    align-items: center;
    background-color: #ecfdf5;
    color: #059669;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Alerte Stripe */
.stripe-alert {
    background-color: #f0f9ff;
    border-left: 4px solid #0ea5e9;
    color: #0c4a6e;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 10px;
}

/* Bouton */
.btn-stripe {
    background-color: #635bff; /* Bleu Stripe */
    color: white;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    width: 100%;
}

.btn-stripe:hover {
    background-color: #5851dc;
    transform: translateY(-1px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .order-summary-mobile {
        order: -1;
    }
    .summary-box {
        padding: 1.5rem;
    }
    .total-price {
        font-size: 2rem;
    }
}