/* Styles personnalisés supplémentaires */
.input-focus {
    outline: none;
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.transition-all {
    transition: all 0.3s ease;
}

.aspect-w-16 {
    position: relative;
    width: 100%;
}
.aspect-w-16::before {
    content: "";
    display: block;
    padding-top: calc(9 / 16 * 100%);
}
.aspect-h-9 > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Par défaut, le texte est caché */
.payment-text {
    display: none;
}

/* Affichage du texte sous l'icône au survol */
a:hover .payment-text {
    display: block;
}