/**
 * ============================================
 * FILE: assets/css/floating-buttons-without-enquiry-button.css
 * Floating Action Buttons (WITHOUT Order Now Button)
 * ============================================
 */

/* ============================================
 * ACCESSIBILITY TOGGLE BUTTON
 * ============================================ */
.accessibility-float-btn {
    position: fixed !important;
    bottom: 170px !important;
    right: 25px !important;
    background: #10b981 !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.accessibility-float-btn:hover {
    transform: scale(1.15) rotate(10deg) !important;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.7) !important;
}

.accessibility-float-btn:focus {
    outline: 3px solid #f59e0b !important;
    outline-offset: 3px !important;
}

/* ============================================
 * SHARE PAGE BUTTON
 * ============================================ */
.share-page-btn {
    position: fixed !important;
    bottom: 110px !important;
    right: 25px !important;
    background: #f59e0b !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5) !important;
    z-index: 999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.share-page-btn:hover {
    transform: scale(1.15) rotate(-10deg) !important;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.7) !important;
}

.share-page-btn:focus {
    outline: 3px solid #2563eb !important;
    outline-offset: 3px !important;
}

/* ============================================
 * WHATSAPP FLOAT BUTTON
 * ============================================ */
.whatsapp-float {
    position: fixed !important;
    bottom: 50px !important;
    right: 25px !important;
    background: #25d366 !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important;
    z-index: 999 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7) !important;
}

.whatsapp-float:focus {
    outline: 3px solid #ffffff !important;
    outline-offset: 3px !important;
}

/* ============================================
 * BACK TO TOP BUTTON
 * ============================================ */
.back-to-top {
    position: fixed !important;
    bottom: 230px !important;
    right: 25px !important;
    background: #2563eb !important;
    color: white !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5) !important;
    z-index: 998 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.back-to-top.show {
    display: flex !important;
}

.back-to-top:hover {
    transform: scale(1.15) translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.7) !important;
}

.back-to-top:focus {
    outline: 3px solid #10b981 !important;
    outline-offset: 3px !important;
}

/* ============================================
 * RESPONSIVE STYLES
 * ============================================ */
@media (max-width: 768px) {
    .accessibility-float-btn {
        bottom: 150px !important;
        right: 15px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .share-page-btn {
        bottom: 90px !important;
        right: 15px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .whatsapp-float {
        bottom: 30px !important;
        right: 15px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    .back-to-top {
        bottom: 210px !important;
        right: 15px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
    
    /* Force icon sizes */
    .accessibility-float-btn i,
    .share-page-btn i,
    .whatsapp-float i,
    .back-to-top i {
        font-size: 14px !important;
    }
}

/* Ensure buttons don't overlap with footer */
@media (max-width: 480px) {
    .accessibility-float-btn,
    .share-page-btn,
    .whatsapp-float,
    .back-to-top {
        right: 12px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
}