.floating-order-wrap {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
}

.floating-order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ff4d00; /* Match your Order Now button */
    padding: 12px;
    border-radius: 20px; /* Better than 5% for this size */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.delivery-icon {
    max-width: 60px; /* Scaled down slightly for better balance */
    height: auto;
    transition: transform 0.3s ease;
}

.order-text {
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Hover & Interaction */
.floating-order-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: #e64500;
    box-shadow: 0px 15px 25px rgba(255, 77, 0, 0.3);
}

.floating-order-btn:hover .delivery-icon {
    transform: rotate(-10deg); /* Playful lean on hover */
}

/* Hide on very small screens if it covers content, or adjust size */
@media (max-width: 576px) {
    .floating-order-wrap {
        right: 15px;
        bottom: 75px;
    }
    .delivery-icon {
        max-width: 50px;
    }
}