.reservation-banner {
    background: #8B1E2D; /* à adapter à leur charte */
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 50px;
    z-index: 999;
}

.reservation-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reservation-text {
    font-size: 16px;
}

.reservation-btn {
    background: #ffffff;
    color: #8B1E2D;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.reservation-btn:hover {
    background: #f3f3f3;
}

/* Mobile */
@media (max-width: 768px) {
    .reservation-content {
        flex-direction: column;
        gap: 10px;
    }

    .reservation-btn {
        width: 100%;
        max-width: 320px;
    }
}