/**
 * Sticky "Prenota ora" button for tour single pages (mobile only)
 */

#seafarer-child-mobile-book-btn {
    display: none;
}

@media (max-width: 1024px) {
    #seafarer-child-mobile-book-btn {
        display: block;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 9999;
        padding: 16px 24px;
        background-color: #c79d61;
        color: #fff;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        border: none;
        border-radius: 4px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        cursor: pointer;
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    #seafarer-child-mobile-book-btn:hover,
    #seafarer-child-mobile-book-btn:focus {
        color: #fff;
        background-color: #b58a4e;
        text-decoration: none;
    }

    #seafarer-child-mobile-book-btn.is-hidden {
        opacity: 0;
        transform: translateY(120%);
        pointer-events: none;
    }
}
