.votes-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.votes-section .row .image {
    flex: 1 1 40rem;
    padding: 1rem;
}

.votes-section .row .image img {
    width: 100%;
    border-radius: .5rem;
    border: 1rem solid var(--lightBlue);
}


.votes-section .row .content1 {
    flex: 1 1 45rem;
}

.votes-section .row .content1 h3 {
    font-size: 3.5rem;
    color: #000;
}

.votes-section .row .content1 p {
    font-size: 1.5rem;
    color: #000;
    padding: 1rem 0;
    line-height: 2;
}

.votes-section .row .content1 .count-down {
    display: flex;
    padding: 1rem 0;
    gap: 1.5rem;
}

.votes-section .row .content1 .count-down .box {
    width: 9rem;
    text-align: center;
    border: .1rem solid var(--gradient);
}

.votes-section .row .content1 .count-down .box h3 {
    font-size: 5rem;
    color: black;
}

.votes-section .row .content1 .count-down .box span {
    font-size: 1.7rem;
    color: black;
    display: block;
    background: var(--gradient);
    padding: .5rem;
}

.votes-section .quantity {
    display: flex;
    align-items: center;
    /* Assure un alignement vertical centré */
    padding: 1rem 0;
    gap: 10px;
    /* Ajoute un petit espace entre le span et l'input */
}

.votes-section .quantity span {
    font-size: 2rem;
    /* Taille de police pour le texte */
}

.votes-section .quantity input {
    font-size: 2rem;
    /* Assure que la taille de police est cohérente */
    padding: 0.5rem;
    /* Ajuste le padding pour une meilleure apparence */
    text-align: center;
    /* Garde le texte centré */
    background: rgba(0, 0, 0, 0.1);
    /* Légère transparence pour l'arrière-plan */
    /* -webkit-appearance: none; Désactiver le style par défaut sur iOS */
    margin: 0;
    /* Réduire tout espace externe supplémentaire */
    width: 90px;
    /* Définir une largeur fixe pour éviter des changements de taille */
}


.votes-section .price {
    font-weight: bolder;
    color: var(--lightBlue);
    font-size: 2rem;
}

.votes-section .price span {
    /* text-decoration: line-through; */
    color: var(--blue);
    font-size: 1.5rem;
}

.votes-section .details {
    padding: .5rem 0;
    display: flex;
}

.votes-section .details h3 {
    flex: 1;
    padding: 1rem;
    border: .1rem solid rgba(0, 0, 0, .1);
    color: #999;
    font-size: 1.3rem;
}

.votes-section .details h3 i {
    color: #333;
    padding-left: .5rem;
}

.votes-section .details a {
    color: #333;

}


.heading1 {
    text-align: center;
    background: var(--gradient);
    padding: 5rem;
}

.heading1 h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: #fff;
}

.heading1 p {
    color: #fff;
    padding-top: .7rem;
    font-size: 1.7rem;
}

.heading1 p a {
    color: #fff;
}

.heading1 p a:hover {
    color: #333;
}

select {
    width: 60%;
    padding: 1rem;
    border: 2px solid var(--lightBlue);
    /* Couleur de la bordure */
    border-radius: 0.5rem;
    font-size: 1.6rem;
    color: var(--blue);
    /* Couleur du texte sélectionné */
    background: #fff;
    /* Couleur de fond */
    transition: border 0.3s, transform 0.3s;
    /* Animation de transition */
}

.select-categories {
    width: 80%;
    padding: 1rem;
    border: 2px solid var(--lightBlue);
    /* Couleur de la bordure */
    border-radius: 0.5rem;
    font-size: 2rem;
    color: var(--blue);
    /* Couleur du texte sélectionné */
    background: #fff;
    /* Couleur de fond */
    transition: border 0.3s, transform 0.3s;
    /* Animation de transition */
}

/* Notifications Sections */

.notification-section {
    margin-top: 10px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.notification-section .form-group {
    margin-bottom: 15px;
}

.notification-section .form-group label {
    font-size: 1.8rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.notification-section .form-group input[type="checkbox"] {
    margin: 10px;
    transform: scale(1.5);
}

.notification-section .form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border 0.3s;
}

.notification-section .form-group input[type="email"]:focus {
    border-color: var(--lightBlue);
}

/* Free votes */
.free-vote {
    background-color: #f9f9f9;
    /* Light background color */
    border: 1px solid #ddd;
    /* Light border color */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    /* Padding inside the box */
    max-width: 400px;
    /* Maximum width of the box */
    margin: 20px auto;
    /* Center the box */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.free-vote .form-group {
    margin-bottom: 15px;
    /* Space between form groups */
}

.free-vote .form-group label {
    font-size: 1.7rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

#notification-email {
    color: var(--blue);
}

#notification-email::placeholder {
    color: var(--blue);
}

/* Style des champs de saisie */
.free-vote .styled-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--blue);
    border-radius: 15px;
    font-size: 1.6rem;
    color: var(--blue);
    background: #fff;
    transition: border 0.3s, transform 0.3s;
}

/* Changer la couleur du placeholder */
.free-vote .styled-input::placeholder {
    color: var(--blue);
    /* Remplacez var(--blue) par la couleur que vous souhaitez utiliser */
}

.free-vote .btn {
    display: block;
    /* Make button a block element */
    width: 100%;
    /* Full width button */
    padding: 10px;
    /* Space above button */
}

.free-vote .btn:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

.free-vote .instructions {
    margin-bottom: 20px;
    /* Space below the instructions */
    background-color: var(--purple);
    /* Background color */

    /* Padding inside the box */
    border-radius: 5px;
    /* Rounded corners */
    text-align: center;
    /* Center-align the text */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.inline-inputs {
    display: flex;
    align-items: center;
}

.inline-inputs .styled-input:first-child {
    width: 20%;
    /* Largeur spécifique du premier champ */
    margin-right: 10px;
    /* Espacement entre les deux champs */
}

.inline-inputs .styled-input:nth-child(2) {
    width: 80%;
    /* Largeur du deuxième champ */
    margin-right: 10px;
    /* Espacement entre les deux champs */
}

.image-score {
    display: flex;
    flex-direction: column;
    /* Disposition verticale pour l'image et le score */
    align-items: center;
    /* Centre horizontalement */
    gap: 20px;
    /* Ajoute de l'espace entre les éléments */
}

.total-score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--lightBlue);
    border-radius: 8px;
    padding: 5px 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.total-score:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
