/* 1. Force Theme Header Button to Stay Visible on Mobile if container allows */
@media (max-width: 1199px) {
    .header__btn,
    .header-btn,
    .tp-header-btn,
    .tp-btn-header {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* 2. Seamless Floating Action Button on Mobile/Tablet (Sleek & Medical-Themed) */
.medozo-mobile-float-btn-wrapper-3fda67e1 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    display: none; /* Hidden on desktop */
}

.medozo-mobile-float-btn-3fda67e1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #E2624D !important; /* Premium RedSana Coral color */
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(226, 98, 77, 0.4);
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.medozo-mobile-float-btn-3fda67e1:hover,
.medozo-mobile-float-btn-3fda67e1:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(226, 98, 77, 0.5);
    color: #ffffff !important;
}

/* Show floating action button ONLY on tablet and mobile viewports */
@media (max-width: 991px) {
    .medozo-mobile-float-btn-wrapper-3fda67e1 {
        display: block !important;
    }
}
