.whatsapp-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px !important;
}

.whatsapp-order-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-order-btn:active:not(:disabled) {
    transform: translateY(0);
}

.whatsapp-order-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.whatsapp-order-btn i {
    font-size: 16px;
}