#fc-order-widget {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

/* Show text by default */
#fc-order-widget span {
    display: inline;
}

/* Hide text on smaller screens (mobile) */
@media (max-width: 768px) {
    #fc-order-widget span {
        display: none;
    }

    #fc-order-widget {
        padding: 12px;
        width: 45px;
        height: 45px;
        justify-content: center;
    }

    #fc-order-widget i {
        font-size: 22px;
    }
}

#fc-order-widget a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

#fc-order-widget:hover {
    background: #00b3a6;
    transform: translateY(-50%) scale(1.1);
}

/* Icon size */
#fc-order-widget i {
    font-size: 18px;
}

/* Animation for sliding in */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}
