

/* Loader de démarrage */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #ffffff;
}

.loader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 30px;
    animation: pulse-loader 1.5s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

.loader-title {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fade-in-out 2s ease-in-out infinite;
}

.loader-subtitle {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #dc143c);
    border-radius: 2px;
    animation: progress 3s ease-in-out;
}

/* Animations du loader */
@keyframes pulse-loader {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fade-in-out {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Section Partenariats */
.pricing-section {
    padding: 50px 0;
    background: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.pricing-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
    animation: cardSlideUp 0.8s ease-out;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.plan-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.price .currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 5px;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
    align-self: flex-end;
    margin-bottom: 5px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 600;
    color: #FFD700;
}

.feature-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-top: 4px;
}

.cta-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
}

.premium {
    border: 3px solid #FFD700;
    position: relative;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
}

.premium::after {
    content: 'RECOMMANDÉ';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFFF00);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    border: 2px solid #FFD700;
    z-index: 10;
}

/* Section Contact */
.contact-section {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 60px 20px 100px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #FFD700;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: #FFD700;
}

/* Bouton flottant du panier */
.cart-floating-btn {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid #000;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.8);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc143c;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #fff;
}

/* MODALES OPTIMISÉES - Plus larges et adaptables */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.auth-modal {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    color: white;
    animation: modalSlideIn 0.4s ease-out;
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #ffd700;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.modal-step {
    padding: 30px 40px 40px;
    overflow-y: auto;
    flex: 1;
    animation: fadeIn 0.3s ease-in-out;
}

/* Formulaires dans les modales */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Boutons dans les modales */
/*.auth-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    border: 2px solid #ffd700;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}*/

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

.auth-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}



.full-width {
    width: 100%;
}

/* Résumé de commande */
.order-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.order-summary h4 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.order-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Options de durée */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.duration-option {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-option:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-3px);
}

.duration-option.selected {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.duration-label {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.duration-price {
    font-size: 14px;
    color: #ccc;
    font-weight: 600;
}

.duration-option.selected .duration-price {
    color: #000;
}

.custom-duration {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* Panier */
.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

.cart-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 16px;
}

.cart-item-duration {
    font-size: 14px;
    color: #ccc;
}

.cart-item-price {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
}

.remove-item-btn {
    background: #dc143c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

.cart-total {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.cart-total-label {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
}

.cart-total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Système de paiement */
.payment-section {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 30px;
    margin: 0;
    color: white;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 30px 0;
}

.payment-option {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-5px);
}

.payment-option.selected {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.1));
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffd700;
}

.payment-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.payment-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

.payment-details {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-details.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.bank-details {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.bank-detail-label {
    font-weight: 700;
    color: #ffd700;
    font-size: 14px;
}

.bank-detail-value {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 600;
}

.copy-btn {
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.copy-btn:hover {
    background: #ffed4a;
    transform: scale(1.05);
}

.reference-code {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid #ffd700;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.reference-code strong {
    color: #ffd700;
    font-size: 20px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.payment-instructions {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.payment-instructions h5 {
    color: #dc143c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}

.payment-instructions ul {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.payment-instructions li {
    margin-bottom: 10px;
}

.payment-summary {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.payment-summary h4 {
    color: #ffd700;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 15px;
}

.order-item:last-child {
    border-bottom: none;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    font-weight: 700;
    font-size: 18px;
    color: #ffd700;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes cardSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive - Tablettes */
@media (max-width: 1024px) {
    .auth-modal {
        max-width: 900px;
        margin: 10px;
    }
    
    .modal-header {
        padding: 25px 30px 15px;
    }
    
    .modal-step {
        padding: 25px 30px 35px;
    }
    
    .payment-options {
        gap: 20px;
    }
    
    .form-row {
        gap: 15px;
    }
}

/* Responsive - Mobiles */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .auth-modal {
        max-width: 100%;
        max-height: 98vh;
        margin: 0;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-step {
        padding: 20px 25px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .duration-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .duration-option {
        padding: 15px 10px;
    }
    
    .bank-detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
    }
    
    .bank-detail-value {
        font-size: 14px;
    }
    
    .copy-btn {
        margin-left: 0;
        margin-top: 8px;
    }
    
    .cart-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-price {
        margin-right: 0;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }
    
    .cart-item {
        position: relative;
        padding-right: 50px;
    }
    
    .cart-total-price {
        font-size: 2rem;
    }
    
    .order-price {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        margin: 20px auto;
        padding: 0 10px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-section {
        margin: 40px 10px 80px;
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .cart-floating-btn {
        right: 20px;
        bottom: 190px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .loader-title {
        font-size: 1.5rem;
    }

    .loader-logo {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
}

/* Responsive - Très petits écrans */
@media (max-width: 480px) {
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-step {
        padding: 15px 20px 25px;
    }
    
    .payment-section {
        padding: 20px;
    }
    
    .payment-option {
        padding: 20px 15px;
    }
    
    .payment-icon {
        font-size: 40px;
    }
    
    .payment-title {
        font-size: 18px;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .cart-total-price {
        font-size: 1.8rem;
    }
    
    .bank-detail-value {
        font-size: 12px;
        word-break: break-all;
    }
    
    .reference-code strong {
        font-size: 16px;
        word-break: break-all;
    }
}

/* Améliorations pour l'accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mode sombre optimisé */
@media (prefers-color-scheme: dark) {
    .auth-modal {
        background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
        border-color: #333;
    }
    
    .form-group input,
    .form-group textarea {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Optimisations pour les écrans haute résolution */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .loader-logo,
    .success-icon,
    .payment-icon {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
}

/* Améliorations focus pour l'accessibilité clavier */
.auth-btn:focus,
.close-btn:focus,
.payment-option:focus,
.duration-option:focus,
.remove-item-btn:focus,
.copy-btn:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #ffd700;
    outline-offset: 1px;
}

/* Styles pour l'impression */
@media print {
    .modal-overlay,
    .cart-floating-btn,
    .page-loader {
        display: none !important;
    }
    
    .auth-modal {
        box-shadow: none;
        border: 2px solid #000;
        background: white;
        color: black;
    }
}

/* Optimisations pour les performances */
.modal-overlay {
    will-change: opacity;
}

.auth-modal {
    will-change: transform;
}

.payment-option,
.duration-option,
.cart-item {
    will-change: transform;
}

/* Scrollbar personnalisée pour les modales */
.modal-step::-webkit-scrollbar {
    width: 8px;
}

.modal-step::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.modal-step::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 4px;
}

.modal-step::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ffed4a, #ffd700);
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

/* États de chargement */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Styles pour les messages d'erreur */
.error-message {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.5);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Styles pour les messages de succès */
.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 8px;
    padding: 12px 15px;
    color: #66bb6a;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Styles pour le modal de rappel */
        .callback-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            padding: 20px;
            box-sizing: border-box;
        }

        .callback-modal {
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border-radius: 20px;
            border: 2px solid #333;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
            position: relative;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            color: white;
            animation: modalSlideIn 0.4s ease-out;
            overflow: hidden;
        }

        .callback-modal-header {
            padding: 25px 30px 15px;
            border-bottom: 2px solid rgba(255, 215, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .callback-modal-header h3 {
            font-size: 1.6rem;
            margin: 0;
            color: #ffd700;
            font-weight: 700;
        }

        .callback-close-btn {
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .callback-close-btn:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: rotate(90deg);
        }

        .callback-modal-body {
            padding: 25px 30px 30px;
            overflow-y: auto;
            flex: 1;
        }

        .callback-intro {
            text-align: center;
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .callback-intro h4 {
            color: #ffd700;
            margin: 0 0 10px 0;
            font-size: 1.2rem;
        }

        .callback-intro p {
            color: #ccc;
            margin: 0;
            font-size: 14px;
        }

        .callback-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }

        .callback-form-group {
            margin-bottom: 15px;
        }

        .callback-form-group label {
            display: block;
            margin-bottom: 6px;
            color: #ffd700;
            font-weight: 600;
            font-size: 14px;
        }

        .callback-form-group input,
        .callback-form-group select,
        .callback-form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            font-family: inherit;
        }

        .callback-form-group input:focus,
        .callback-form-group select:focus,
        .callback-form-group textarea:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .callback-form-group input::placeholder,
        .callback-form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .callback-form-group select option {
            background: #1a1a1a;
            color: white;
            padding: 10px;
        }

        .callback-buttons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .callback-btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            border: 2px solid;
            flex: 1;
        }

        .callback-btn-cancel {
            background: transparent;
            color: #ccc;
            border-color: #666;
        }

        .callback-btn-cancel:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .callback-btn-submit {
            background: linear-gradient(135deg, #dc143c, #b71c1c);
            color: white;
            border-color: #dc143c;
        }

        .callback-btn-submit:hover {
            background: linear-gradient(135deg, #ff1744, #dc143c);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
        }

        .callback-btn-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .callback-success {
            text-align: center;
            padding: 40px 20px;
        }

        .callback-success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
            color: white;
        }

        .callback-success h4 {
            color: #28a745;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .callback-success p {
            color: #ccc;
            margin-bottom: 25px;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .callback-modal {
                max-width: 95%;
                margin: 10px;
            }
            
            .callback-modal-header {
                padding: 20px 25px 15px;
            }
            
            .callback-modal-body {
                padding: 20px 25px 25px;
            }
            
            .callback-form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .callback-buttons {
                flex-direction: column;
            }
        }

        /* Test button */
        .test-button {
            padding: 15px 30px;
            background: linear-gradient(135deg, #dc143c, #b71c1c);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin: 50px auto;
            display: block;
            transition: all 0.3s ease;
        }

        .test-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
        }
		
		/* Conteneur Stripe */
.stripe-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.stripe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Élément de carte Stripe */
#stripe-card-element {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: white;
}

#stripe-card-element:hover,
#stripe-card-element:focus {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Messages d'erreur Stripe */
.stripe-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px 15px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 6px;
    display: none;
}

.stripe-error.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Informations client Stripe */
.stripe-customer-info {
    margin: 15px 0;
}

.stripe-customer-info .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stripe-customer-info .form-group {
    margin-bottom: 15px;
}

.stripe-customer-info label {
    display: block;
    margin-bottom: 6px;
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.stripe-customer-info input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.stripe-customer-info input:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stripe-customer-info input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Résumé de paiement Stripe */
.stripe-payment-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.stripe-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.stripe-amount span {
    color: #ffd700;
    font-weight: 600;
}

.stripe-amount strong {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

/* Bouton de paiement Stripe */
#stripe-pay-button {
    background: linear-gradient(135dc, #28a745, #20c997);
    border-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#stripe-pay-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #34ce57, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

#stripe-pay-button:disabled {
    background: #666;
    border-color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

#stripe-pay-button.processing {
    pointer-events: none;
}

#stripe-pay-button.processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Indicateurs de sécurité */
.stripe-security-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    font-size: 12px;
    color: #28a745;
}

.stripe-security-info i {
    color: #28a745;
    font-size: 16px;
}

/* Logos des cartes acceptées */
.accepted-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    opacity: 0.7;
}

.card-icon {
    width: 32px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.card-icon:hover {
    opacity: 1;
}

/* Style pour les différents types de cartes */
.card-icon.visa {
    background-color: #1a1f71;
    border-radius: 4px;
}

.card-icon.mastercard {
    background-color: #eb001b;
    border-radius: 4px;
}

.card-icon.amex {
    background-color: #006fcf;
    border-radius: 4px;
}

/* Messages de succès Stripe */
.stripe-success {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid rgba(40, 167, 69, 0.5);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: #28a745;
    margin: 20px 0;
}

.stripe-success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

/* Responsive pour Stripe */
@media (max-width: 768px) {
    .stripe-customer-info .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stripe-container {
        padding: 20px;
    }
    
    .stripe-amount {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .accepted-cards {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .card-icon {
        width: 28px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .stripe-container {
        padding: 15px;
    }
    
    #stripe-pay-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .stripe-payment-summary {
        padding: 15px;
    }
    
    .stripe-amount strong {
        font-size: 20px;
    }
}

/* Animation pour le loader de traitement */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Amélioration de l'accessibilité */
#stripe-card-element:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.stripe-error[role="alert"] {
    font-weight: 600;
}

/* Styles pour les états de validation */
.stripe-form .field-valid {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.stripe-form .field-invalid {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
}

.paypal-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.paypal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.paypal-amount-summary {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    width: 100%;
    max-width: 300px;
}

.paypal-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
}

#paypal-button-container {
    min-height: 50px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.paypal-security {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

/* Centrer spécifiquement les boutons PayPal */
#paypal-button-container > div {
    width: 100%;
    max-width: 350px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .paypal-container {
        padding: 15px;
    }
    
    .paypal-amount-summary {
        max-width: 100%;
    }
    
    #paypal-button-container {
        max-width: 100%;
    }
}
/* Hero Section spécifique abonnement */
.abonnement-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(220,20,60,0.6)), 
                url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}



/* Section Présentation Association */
.association-presentation {
    background: linear-gradient(145deg, #1a1a1a, #000);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.presentation-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    line-height: 1.2;
}

.presentation-description {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Section Abonnement */
.subscription-section {
    background: #000000;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    margin: 0;
}

/* Conteneur pour l'abonnement unique */
.subscription-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.subscription-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    border: 3px solid #ffd700;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 215, 0, 0.3);
}

/* En-tête de la carte */
.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.subscription-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.subscription-price {
    font-size: 4rem;
    font-weight: 800;
    color: #ffd700;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.subscription-price .currency {
    font-size: 2rem;
    align-self: flex-start;
    margin-top: 8px;
}

.subscription-price .period {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    align-self: flex-end;
    margin-bottom: 8px;
}

.subscription-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
    margin-top: 15px;
}

/* Liste des fonctionnalités */
.card-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Bouton d'abonnement */
.card-footer {
    text-align: center;
}

.subscription-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.subscription-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4a 0%, #fff700 100%);
}

/* Section Contact */
.contact-section {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 80px 20px 100px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffd700;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffd700;
}

/* Section donation dans le modal */
.donation-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.donation-option {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-option:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.donation-option.selected {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.donation-label {
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 5px;
}

.donation-amount {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
}

.donation-option.selected .donation-amount {
    color: #000;
}

.custom-donation-input {
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.total-summary {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
}

.total-row.total-final {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    color: #ffd700;
}

.donation-row {
    color: #28a745;
}


