/* Sticky Book Your Session Button — DESKTOP */
.block-bf47593b8424c4e6d91e0b84c,
.block-bf47593b8424c4e6d91e0b84c a,
.block-bf47593b8424c4e6d91e0b84c button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;

    /* Styling */
    background-color: #d4a5a5; /* blush pink */
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.2);
    transition: transform .2s ease, background-color .2s ease;
}

.block-bf47593b8424c4e6d91e0b84c:hover,
.block-bf47593b8424c4e6d91e0b84c a:hover,
.block-bf47593b8424c4e6d91e0b84c button:hover {
    background-color: #c38c8c; /* darker blush on hover */
    transform: scale(1.04);
}

/* MOBILE — center at bottom */
@media (max-width: 768px) {
    .block-bf47593b8424c4e6d91e0b84c,
    .block-bf47593b8424c4e6d91e0b84c a,
    .block-bf47593b8424c4e6d91e0b84c button {
        bottom: 15px !important;
        right: 50% !important;
        transform: translateX(50%);
        font-size: 14px;
        padding: 10px 18px;
    }
}