/* Floating Bulk Order CTA */
.tk-floating-bulk-order {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #7b241c;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(123, 36, 28, 0.35);
    border: 2px solid #f1b21b;
}

.tk-floating-bulk-order:hover,
.tk-floating-bulk-order:focus {
    background: #f1b21b;
    color: #7b241c;
    text-decoration: none;
}

@media (max-width: 480px) {
    .tk-floating-bulk-order {
        right: 12px;
        bottom: 80px;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Hide legacy WhatsApp FAB on bulk-order page */
body.page-bulk-order .tk-fab.tk-fab-wa,
body.page-id-bulk-order .tk-fab.tk-fab-wa {
    display: none !important;
}

