.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-item {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: center;
}

.product-item img {
    max-width: 100%;
    height: auto;
}


.product-item img:hover {
    transform: scale(1.2); /* agrandissement de 20% */
}

/*button {*/
/*    background-color: #4CAF50;*/
/*    border: none;*/
/*    color: white;*/
/*    padding: 10px 20px;*/
/*    text-align: center;*/
/*    text-decoration: none;*/
/*    display: inline-block;*/
/*    font-size: 16px;*/
/*    margin: 4px 2px;*/
/*    cursor: pointer;*/
/*}*/

.adulte {
    display: inline-block;
    padding: 10px 20px;
    color: red;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.adulte:hover {
    color: red;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
}

.adulte:hover::before {
    content: attr(data-text);
}

.adulte:hover::after {
    content: none;
}

.adulte::after {
    content: attr(data-price);
}

.enfant {
    display: inline-block;
    padding: 10px 20px;
    color: blue;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.enfant:hover {
    color: blue;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
}

.enfant:hover::before {
    content: attr(data-text);
}

.enfant:hover::after {
    content: none;
}

.enfant::after {
    content: attr(data-price);
}

a {
    text-decoration: none;
    color: black;
}

button {
    width: 100%;
    margin-top: 2%;
    background-color: rgb(91, 25, 89);
    border-radius: 10px;
    color: white;
}

button a {
    color: white;
}