.reservation {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.reservation-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
}

.reservation-item > span {
    font-weight: 600;
    font-size: 16px;
}

.reservation-item > * {
    align-content: center;
}

#reservation-financement {
    display: none;
}

#reservation-financement.active {
    display: grid;
}

.reservation select {
    background: white;
}

.reservation option[disabled] {
    background: lightgrey !important;
}

.variation-select {
    display: none;
}

.variation-select.active {
    display: block;
}

.reservation-button[disabled] {
    cursor: not-allowed !important;
    border-color: grey !important;
    color: grey !important;
    background: transparent !important;
}

.reservation-button:hover {
    background: black;
    color: white;
}

.reservation-button {
    border: 2px solid black;
    border-radius: 100px;
    padding: 8px 16px;
    width: fit-content;
    transition: 200ms;
}



@media screen and (max-width: 767px) {
    .reservation-item {
        gap: 8px;
        grid-template-columns: 1fr;
    }
}